1 //===- SelectionDAG.cpp - Implement the SelectionDAG data structures ------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This implements the SelectionDAG class.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "llvm/CodeGen/SelectionDAG.h"
14 #include "SDNodeDbgValue.h"
15 #include "llvm/ADT/APFloat.h"
16 #include "llvm/ADT/APInt.h"
17 #include "llvm/ADT/APSInt.h"
18 #include "llvm/ADT/ArrayRef.h"
19 #include "llvm/ADT/BitVector.h"
20 #include "llvm/ADT/FoldingSet.h"
21 #include "llvm/ADT/None.h"
22 #include "llvm/ADT/STLExtras.h"
23 #include "llvm/ADT/SmallPtrSet.h"
24 #include "llvm/ADT/SmallVector.h"
25 #include "llvm/ADT/Triple.h"
26 #include "llvm/ADT/Twine.h"
27 #include "llvm/Analysis/MemoryLocation.h"
28 #include "llvm/Analysis/ValueTracking.h"
29 #include "llvm/CodeGen/Analysis.h"
30 #include "llvm/CodeGen/FunctionLoweringInfo.h"
31 #include "llvm/CodeGen/ISDOpcodes.h"
32 #include "llvm/CodeGen/MachineBasicBlock.h"
33 #include "llvm/CodeGen/MachineConstantPool.h"
34 #include "llvm/CodeGen/MachineFrameInfo.h"
35 #include "llvm/CodeGen/MachineFunction.h"
36 #include "llvm/CodeGen/MachineMemOperand.h"
37 #include "llvm/CodeGen/RuntimeLibcalls.h"
38 #include "llvm/CodeGen/SelectionDAGAddressAnalysis.h"
39 #include "llvm/CodeGen/SelectionDAGNodes.h"
40 #include "llvm/CodeGen/SelectionDAGTargetInfo.h"
41 #include "llvm/CodeGen/TargetFrameLowering.h"
42 #include "llvm/CodeGen/TargetLowering.h"
43 #include "llvm/CodeGen/TargetRegisterInfo.h"
44 #include "llvm/CodeGen/TargetSubtargetInfo.h"
45 #include "llvm/CodeGen/ValueTypes.h"
46 #include "llvm/IR/Constant.h"
47 #include "llvm/IR/Constants.h"
48 #include "llvm/IR/DataLayout.h"
49 #include "llvm/IR/DebugInfoMetadata.h"
50 #include "llvm/IR/DebugLoc.h"
51 #include "llvm/IR/DerivedTypes.h"
52 #include "llvm/IR/Function.h"
53 #include "llvm/IR/GlobalValue.h"
54 #include "llvm/IR/Metadata.h"
55 #include "llvm/IR/Type.h"
56 #include "llvm/Support/Casting.h"
57 #include "llvm/Support/CodeGen.h"
58 #include "llvm/Support/Compiler.h"
59 #include "llvm/Support/Debug.h"
60 #include "llvm/Support/ErrorHandling.h"
61 #include "llvm/Support/KnownBits.h"
62 #include "llvm/Support/MachineValueType.h"
63 #include "llvm/Support/ManagedStatic.h"
64 #include "llvm/Support/MathExtras.h"
65 #include "llvm/Support/Mutex.h"
66 #include "llvm/Support/raw_ostream.h"
67 #include "llvm/Target/TargetMachine.h"
68 #include "llvm/Target/TargetOptions.h"
69 #include "llvm/Transforms/Utils/SizeOpts.h"
70 #include <algorithm>
71 #include <cassert>
72 #include <cstdint>
73 #include <cstdlib>
74 #include <limits>
75 #include <set>
76 #include <string>
77 #include <utility>
78 #include <vector>
79 
80 using namespace llvm;
81 
82 /// makeVTList - Return an instance of the SDVTList struct initialized with the
83 /// specified members.
84 static SDVTList makeVTList(const EVT *VTs, unsigned NumVTs) {
85   SDVTList Res = {VTs, NumVTs};
86   return Res;
87 }
88 
89 // Default null implementations of the callbacks.
90 void SelectionDAG::DAGUpdateListener::NodeDeleted(SDNode*, SDNode*) {}
91 void SelectionDAG::DAGUpdateListener::NodeUpdated(SDNode*) {}
92 void SelectionDAG::DAGUpdateListener::NodeInserted(SDNode *) {}
93 
94 void SelectionDAG::DAGNodeDeletedListener::anchor() {}
95 
96 #define DEBUG_TYPE "selectiondag"
97 
98 static cl::opt<bool> EnableMemCpyDAGOpt("enable-memcpy-dag-opt",
99        cl::Hidden, cl::init(true),
100        cl::desc("Gang up loads and stores generated by inlining of memcpy"));
101 
102 static cl::opt<int> MaxLdStGlue("ldstmemcpy-glue-max",
103        cl::desc("Number limit for gluing ld/st of memcpy."),
104        cl::Hidden, cl::init(0));
105 
106 static void NewSDValueDbgMsg(SDValue V, StringRef Msg, SelectionDAG *G) {
107   LLVM_DEBUG(dbgs() << Msg; V.getNode()->dump(G););
108 }
109 
110 //===----------------------------------------------------------------------===//
111 //                              ConstantFPSDNode Class
112 //===----------------------------------------------------------------------===//
113 
114 /// isExactlyValue - We don't rely on operator== working on double values, as
115 /// it returns true for things that are clearly not equal, like -0.0 and 0.0.
116 /// As such, this method can be used to do an exact bit-for-bit comparison of
117 /// two floating point values.
118 bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
119   return getValueAPF().bitwiseIsEqual(V);
120 }
121 
122 bool ConstantFPSDNode::isValueValidForType(EVT VT,
123                                            const APFloat& Val) {
124   assert(VT.isFloatingPoint() && "Can only convert between FP types");
125 
126   // convert modifies in place, so make a copy.
127   APFloat Val2 = APFloat(Val);
128   bool losesInfo;
129   (void) Val2.convert(SelectionDAG::EVTToAPFloatSemantics(VT),
130                       APFloat::rmNearestTiesToEven,
131                       &losesInfo);
132   return !losesInfo;
133 }
134 
135 //===----------------------------------------------------------------------===//
136 //                              ISD Namespace
137 //===----------------------------------------------------------------------===//
138 
139 bool ISD::isConstantSplatVector(const SDNode *N, APInt &SplatVal) {
140   if (N->getOpcode() == ISD::SPLAT_VECTOR) {
141     unsigned EltSize =
142         N->getValueType(0).getVectorElementType().getSizeInBits();
143     if (auto *Op0 = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
144       SplatVal = Op0->getAPIntValue().truncOrSelf(EltSize);
145       return true;
146     }
147     if (auto *Op0 = dyn_cast<ConstantFPSDNode>(N->getOperand(0))) {
148       SplatVal = Op0->getValueAPF().bitcastToAPInt().truncOrSelf(EltSize);
149       return true;
150     }
151   }
152 
153   auto *BV = dyn_cast<BuildVectorSDNode>(N);
154   if (!BV)
155     return false;
156 
157   APInt SplatUndef;
158   unsigned SplatBitSize;
159   bool HasUndefs;
160   unsigned EltSize = N->getValueType(0).getVectorElementType().getSizeInBits();
161   return BV->isConstantSplat(SplatVal, SplatUndef, SplatBitSize, HasUndefs,
162                              EltSize) &&
163          EltSize == SplatBitSize;
164 }
165 
166 // FIXME: AllOnes and AllZeros duplicate a lot of code. Could these be
167 // specializations of the more general isConstantSplatVector()?
168 
169 bool ISD::isConstantSplatVectorAllOnes(const SDNode *N, bool BuildVectorOnly) {
170   // Look through a bit convert.
171   while (N->getOpcode() == ISD::BITCAST)
172     N = N->getOperand(0).getNode();
173 
174   if (!BuildVectorOnly && N->getOpcode() == ISD::SPLAT_VECTOR) {
175     APInt SplatVal;
176     return isConstantSplatVector(N, SplatVal) && SplatVal.isAllOnes();
177   }
178 
179   if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
180 
181   unsigned i = 0, e = N->getNumOperands();
182 
183   // Skip over all of the undef values.
184   while (i != e && N->getOperand(i).isUndef())
185     ++i;
186 
187   // Do not accept an all-undef vector.
188   if (i == e) return false;
189 
190   // Do not accept build_vectors that aren't all constants or which have non-~0
191   // elements. We have to be a bit careful here, as the type of the constant
192   // may not be the same as the type of the vector elements due to type
193   // legalization (the elements are promoted to a legal type for the target and
194   // a vector of a type may be legal when the base element type is not).
195   // We only want to check enough bits to cover the vector elements, because
196   // we care if the resultant vector is all ones, not whether the individual
197   // constants are.
198   SDValue NotZero = N->getOperand(i);
199   unsigned EltSize = N->getValueType(0).getScalarSizeInBits();
200   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(NotZero)) {
201     if (CN->getAPIntValue().countTrailingOnes() < EltSize)
202       return false;
203   } else if (ConstantFPSDNode *CFPN = dyn_cast<ConstantFPSDNode>(NotZero)) {
204     if (CFPN->getValueAPF().bitcastToAPInt().countTrailingOnes() < EltSize)
205       return false;
206   } else
207     return false;
208 
209   // Okay, we have at least one ~0 value, check to see if the rest match or are
210   // undefs. Even with the above element type twiddling, this should be OK, as
211   // the same type legalization should have applied to all the elements.
212   for (++i; i != e; ++i)
213     if (N->getOperand(i) != NotZero && !N->getOperand(i).isUndef())
214       return false;
215   return true;
216 }
217 
218 bool ISD::isConstantSplatVectorAllZeros(const SDNode *N, bool BuildVectorOnly) {
219   // Look through a bit convert.
220   while (N->getOpcode() == ISD::BITCAST)
221     N = N->getOperand(0).getNode();
222 
223   if (!BuildVectorOnly && N->getOpcode() == ISD::SPLAT_VECTOR) {
224     APInt SplatVal;
225     return isConstantSplatVector(N, SplatVal) && SplatVal.isZero();
226   }
227 
228   if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
229 
230   bool IsAllUndef = true;
231   for (const SDValue &Op : N->op_values()) {
232     if (Op.isUndef())
233       continue;
234     IsAllUndef = false;
235     // Do not accept build_vectors that aren't all constants or which have non-0
236     // elements. We have to be a bit careful here, as the type of the constant
237     // may not be the same as the type of the vector elements due to type
238     // legalization (the elements are promoted to a legal type for the target
239     // and a vector of a type may be legal when the base element type is not).
240     // We only want to check enough bits to cover the vector elements, because
241     // we care if the resultant vector is all zeros, not whether the individual
242     // constants are.
243     unsigned EltSize = N->getValueType(0).getScalarSizeInBits();
244     if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Op)) {
245       if (CN->getAPIntValue().countTrailingZeros() < EltSize)
246         return false;
247     } else if (ConstantFPSDNode *CFPN = dyn_cast<ConstantFPSDNode>(Op)) {
248       if (CFPN->getValueAPF().bitcastToAPInt().countTrailingZeros() < EltSize)
249         return false;
250     } else
251       return false;
252   }
253 
254   // Do not accept an all-undef vector.
255   if (IsAllUndef)
256     return false;
257   return true;
258 }
259 
260 bool ISD::isBuildVectorAllOnes(const SDNode *N) {
261   return isConstantSplatVectorAllOnes(N, /*BuildVectorOnly*/ true);
262 }
263 
264 bool ISD::isBuildVectorAllZeros(const SDNode *N) {
265   return isConstantSplatVectorAllZeros(N, /*BuildVectorOnly*/ true);
266 }
267 
268 bool ISD::isBuildVectorOfConstantSDNodes(const SDNode *N) {
269   if (N->getOpcode() != ISD::BUILD_VECTOR)
270     return false;
271 
272   for (const SDValue &Op : N->op_values()) {
273     if (Op.isUndef())
274       continue;
275     if (!isa<ConstantSDNode>(Op))
276       return false;
277   }
278   return true;
279 }
280 
281 bool ISD::isBuildVectorOfConstantFPSDNodes(const SDNode *N) {
282   if (N->getOpcode() != ISD::BUILD_VECTOR)
283     return false;
284 
285   for (const SDValue &Op : N->op_values()) {
286     if (Op.isUndef())
287       continue;
288     if (!isa<ConstantFPSDNode>(Op))
289       return false;
290   }
291   return true;
292 }
293 
294 bool ISD::allOperandsUndef(const SDNode *N) {
295   // Return false if the node has no operands.
296   // This is "logically inconsistent" with the definition of "all" but
297   // is probably the desired behavior.
298   if (N->getNumOperands() == 0)
299     return false;
300   return all_of(N->op_values(), [](SDValue Op) { return Op.isUndef(); });
301 }
302 
303 bool ISD::matchUnaryPredicate(SDValue Op,
304                               std::function<bool(ConstantSDNode *)> Match,
305                               bool AllowUndefs) {
306   // FIXME: Add support for scalar UNDEF cases?
307   if (auto *Cst = dyn_cast<ConstantSDNode>(Op))
308     return Match(Cst);
309 
310   // FIXME: Add support for vector UNDEF cases?
311   if (ISD::BUILD_VECTOR != Op.getOpcode() &&
312       ISD::SPLAT_VECTOR != Op.getOpcode())
313     return false;
314 
315   EVT SVT = Op.getValueType().getScalarType();
316   for (unsigned i = 0, e = Op.getNumOperands(); i != e; ++i) {
317     if (AllowUndefs && Op.getOperand(i).isUndef()) {
318       if (!Match(nullptr))
319         return false;
320       continue;
321     }
322 
323     auto *Cst = dyn_cast<ConstantSDNode>(Op.getOperand(i));
324     if (!Cst || Cst->getValueType(0) != SVT || !Match(Cst))
325       return false;
326   }
327   return true;
328 }
329 
330 bool ISD::matchBinaryPredicate(
331     SDValue LHS, SDValue RHS,
332     std::function<bool(ConstantSDNode *, ConstantSDNode *)> Match,
333     bool AllowUndefs, bool AllowTypeMismatch) {
334   if (!AllowTypeMismatch && LHS.getValueType() != RHS.getValueType())
335     return false;
336 
337   // TODO: Add support for scalar UNDEF cases?
338   if (auto *LHSCst = dyn_cast<ConstantSDNode>(LHS))
339     if (auto *RHSCst = dyn_cast<ConstantSDNode>(RHS))
340       return Match(LHSCst, RHSCst);
341 
342   // TODO: Add support for vector UNDEF cases?
343   if (LHS.getOpcode() != RHS.getOpcode() ||
344       (LHS.getOpcode() != ISD::BUILD_VECTOR &&
345        LHS.getOpcode() != ISD::SPLAT_VECTOR))
346     return false;
347 
348   EVT SVT = LHS.getValueType().getScalarType();
349   for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
350     SDValue LHSOp = LHS.getOperand(i);
351     SDValue RHSOp = RHS.getOperand(i);
352     bool LHSUndef = AllowUndefs && LHSOp.isUndef();
353     bool RHSUndef = AllowUndefs && RHSOp.isUndef();
354     auto *LHSCst = dyn_cast<ConstantSDNode>(LHSOp);
355     auto *RHSCst = dyn_cast<ConstantSDNode>(RHSOp);
356     if ((!LHSCst && !LHSUndef) || (!RHSCst && !RHSUndef))
357       return false;
358     if (!AllowTypeMismatch && (LHSOp.getValueType() != SVT ||
359                                LHSOp.getValueType() != RHSOp.getValueType()))
360       return false;
361     if (!Match(LHSCst, RHSCst))
362       return false;
363   }
364   return true;
365 }
366 
367 ISD::NodeType ISD::getVecReduceBaseOpcode(unsigned VecReduceOpcode) {
368   switch (VecReduceOpcode) {
369   default:
370     llvm_unreachable("Expected VECREDUCE opcode");
371   case ISD::VECREDUCE_FADD:
372   case ISD::VECREDUCE_SEQ_FADD:
373   case ISD::VP_REDUCE_FADD:
374   case ISD::VP_REDUCE_SEQ_FADD:
375     return ISD::FADD;
376   case ISD::VECREDUCE_FMUL:
377   case ISD::VECREDUCE_SEQ_FMUL:
378   case ISD::VP_REDUCE_FMUL:
379   case ISD::VP_REDUCE_SEQ_FMUL:
380     return ISD::FMUL;
381   case ISD::VECREDUCE_ADD:
382   case ISD::VP_REDUCE_ADD:
383     return ISD::ADD;
384   case ISD::VECREDUCE_MUL:
385   case ISD::VP_REDUCE_MUL:
386     return ISD::MUL;
387   case ISD::VECREDUCE_AND:
388   case ISD::VP_REDUCE_AND:
389     return ISD::AND;
390   case ISD::VECREDUCE_OR:
391   case ISD::VP_REDUCE_OR:
392     return ISD::OR;
393   case ISD::VECREDUCE_XOR:
394   case ISD::VP_REDUCE_XOR:
395     return ISD::XOR;
396   case ISD::VECREDUCE_SMAX:
397   case ISD::VP_REDUCE_SMAX:
398     return ISD::SMAX;
399   case ISD::VECREDUCE_SMIN:
400   case ISD::VP_REDUCE_SMIN:
401     return ISD::SMIN;
402   case ISD::VECREDUCE_UMAX:
403   case ISD::VP_REDUCE_UMAX:
404     return ISD::UMAX;
405   case ISD::VECREDUCE_UMIN:
406   case ISD::VP_REDUCE_UMIN:
407     return ISD::UMIN;
408   case ISD::VECREDUCE_FMAX:
409   case ISD::VP_REDUCE_FMAX:
410     return ISD::FMAXNUM;
411   case ISD::VECREDUCE_FMIN:
412   case ISD::VP_REDUCE_FMIN:
413     return ISD::FMINNUM;
414   }
415 }
416 
417 bool ISD::isVPOpcode(unsigned Opcode) {
418   switch (Opcode) {
419   default:
420     return false;
421 #define BEGIN_REGISTER_VP_SDNODE(VPSD, ...)                                    \
422   case ISD::VPSD:                                                              \
423     return true;
424 #include "llvm/IR/VPIntrinsics.def"
425   }
426 }
427 
428 bool ISD::isVPBinaryOp(unsigned Opcode) {
429   switch (Opcode) {
430   default:
431     break;
432 #define BEGIN_REGISTER_VP_SDNODE(VPSD, ...) case ISD::VPSD:
433 #define VP_PROPERTY_BINARYOP return true;
434 #define END_REGISTER_VP_SDNODE(VPSD) break;
435 #include "llvm/IR/VPIntrinsics.def"
436   }
437   return false;
438 }
439 
440 bool ISD::isVPReduction(unsigned Opcode) {
441   switch (Opcode) {
442   default:
443     break;
444 #define BEGIN_REGISTER_VP_SDNODE(VPSD, ...) case ISD::VPSD:
445 #define VP_PROPERTY_REDUCTION(STARTPOS, ...) return true;
446 #define END_REGISTER_VP_SDNODE(VPSD) break;
447 #include "llvm/IR/VPIntrinsics.def"
448   }
449   return false;
450 }
451 
452 /// The operand position of the vector mask.
453 Optional<unsigned> ISD::getVPMaskIdx(unsigned Opcode) {
454   switch (Opcode) {
455   default:
456     return None;
457 #define BEGIN_REGISTER_VP_SDNODE(VPSD, LEGALPOS, TDNAME, MASKPOS, ...)         \
458   case ISD::VPSD:                                                              \
459     return MASKPOS;
460 #include "llvm/IR/VPIntrinsics.def"
461   }
462 }
463 
464 /// The operand position of the explicit vector length parameter.
465 Optional<unsigned> ISD::getVPExplicitVectorLengthIdx(unsigned Opcode) {
466   switch (Opcode) {
467   default:
468     return None;
469 #define BEGIN_REGISTER_VP_SDNODE(VPSD, LEGALPOS, TDNAME, MASKPOS, EVLPOS)      \
470   case ISD::VPSD:                                                              \
471     return EVLPOS;
472 #include "llvm/IR/VPIntrinsics.def"
473   }
474 }
475 
476 ISD::NodeType ISD::getExtForLoadExtType(bool IsFP, ISD::LoadExtType ExtType) {
477   switch (ExtType) {
478   case ISD::EXTLOAD:
479     return IsFP ? ISD::FP_EXTEND : ISD::ANY_EXTEND;
480   case ISD::SEXTLOAD:
481     return ISD::SIGN_EXTEND;
482   case ISD::ZEXTLOAD:
483     return ISD::ZERO_EXTEND;
484   default:
485     break;
486   }
487 
488   llvm_unreachable("Invalid LoadExtType");
489 }
490 
491 ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
492   // To perform this operation, we just need to swap the L and G bits of the
493   // operation.
494   unsigned OldL = (Operation >> 2) & 1;
495   unsigned OldG = (Operation >> 1) & 1;
496   return ISD::CondCode((Operation & ~6) |  // Keep the N, U, E bits
497                        (OldL << 1) |       // New G bit
498                        (OldG << 2));       // New L bit.
499 }
500 
501 static ISD::CondCode getSetCCInverseImpl(ISD::CondCode Op, bool isIntegerLike) {
502   unsigned Operation = Op;
503   if (isIntegerLike)
504     Operation ^= 7;   // Flip L, G, E bits, but not U.
505   else
506     Operation ^= 15;  // Flip all of the condition bits.
507 
508   if (Operation > ISD::SETTRUE2)
509     Operation &= ~8;  // Don't let N and U bits get set.
510 
511   return ISD::CondCode(Operation);
512 }
513 
514 ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, EVT Type) {
515   return getSetCCInverseImpl(Op, Type.isInteger());
516 }
517 
518 ISD::CondCode ISD::GlobalISel::getSetCCInverse(ISD::CondCode Op,
519                                                bool isIntegerLike) {
520   return getSetCCInverseImpl(Op, isIntegerLike);
521 }
522 
523 /// For an integer comparison, return 1 if the comparison is a signed operation
524 /// and 2 if the result is an unsigned comparison. Return zero if the operation
525 /// does not depend on the sign of the input (setne and seteq).
526 static int isSignedOp(ISD::CondCode Opcode) {
527   switch (Opcode) {
528   default: llvm_unreachable("Illegal integer setcc operation!");
529   case ISD::SETEQ:
530   case ISD::SETNE: return 0;
531   case ISD::SETLT:
532   case ISD::SETLE:
533   case ISD::SETGT:
534   case ISD::SETGE: return 1;
535   case ISD::SETULT:
536   case ISD::SETULE:
537   case ISD::SETUGT:
538   case ISD::SETUGE: return 2;
539   }
540 }
541 
542 ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
543                                        EVT Type) {
544   bool IsInteger = Type.isInteger();
545   if (IsInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
546     // Cannot fold a signed integer setcc with an unsigned integer setcc.
547     return ISD::SETCC_INVALID;
548 
549   unsigned Op = Op1 | Op2;  // Combine all of the condition bits.
550 
551   // If the N and U bits get set, then the resultant comparison DOES suddenly
552   // care about orderedness, and it is true when ordered.
553   if (Op > ISD::SETTRUE2)
554     Op &= ~16;     // Clear the U bit if the N bit is set.
555 
556   // Canonicalize illegal integer setcc's.
557   if (IsInteger && Op == ISD::SETUNE)  // e.g. SETUGT | SETULT
558     Op = ISD::SETNE;
559 
560   return ISD::CondCode(Op);
561 }
562 
563 ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
564                                         EVT Type) {
565   bool IsInteger = Type.isInteger();
566   if (IsInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
567     // Cannot fold a signed setcc with an unsigned setcc.
568     return ISD::SETCC_INVALID;
569 
570   // Combine all of the condition bits.
571   ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
572 
573   // Canonicalize illegal integer setcc's.
574   if (IsInteger) {
575     switch (Result) {
576     default: break;
577     case ISD::SETUO : Result = ISD::SETFALSE; break;  // SETUGT & SETULT
578     case ISD::SETOEQ:                                 // SETEQ  & SETU[LG]E
579     case ISD::SETUEQ: Result = ISD::SETEQ   ; break;  // SETUGE & SETULE
580     case ISD::SETOLT: Result = ISD::SETULT  ; break;  // SETULT & SETNE
581     case ISD::SETOGT: Result = ISD::SETUGT  ; break;  // SETUGT & SETNE
582     }
583   }
584 
585   return Result;
586 }
587 
588 //===----------------------------------------------------------------------===//
589 //                           SDNode Profile Support
590 //===----------------------------------------------------------------------===//
591 
592 /// AddNodeIDOpcode - Add the node opcode to the NodeID data.
593 static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC)  {
594   ID.AddInteger(OpC);
595 }
596 
597 /// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
598 /// solely with their pointer.
599 static void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
600   ID.AddPointer(VTList.VTs);
601 }
602 
603 /// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
604 static void AddNodeIDOperands(FoldingSetNodeID &ID,
605                               ArrayRef<SDValue> Ops) {
606   for (auto& Op : Ops) {
607     ID.AddPointer(Op.getNode());
608     ID.AddInteger(Op.getResNo());
609   }
610 }
611 
612 /// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
613 static void AddNodeIDOperands(FoldingSetNodeID &ID,
614                               ArrayRef<SDUse> Ops) {
615   for (auto& Op : Ops) {
616     ID.AddPointer(Op.getNode());
617     ID.AddInteger(Op.getResNo());
618   }
619 }
620 
621 static void AddNodeIDNode(FoldingSetNodeID &ID, unsigned short OpC,
622                           SDVTList VTList, ArrayRef<SDValue> OpList) {
623   AddNodeIDOpcode(ID, OpC);
624   AddNodeIDValueTypes(ID, VTList);
625   AddNodeIDOperands(ID, OpList);
626 }
627 
628 /// If this is an SDNode with special info, add this info to the NodeID data.
629 static void AddNodeIDCustom(FoldingSetNodeID &ID, const SDNode *N) {
630   switch (N->getOpcode()) {
631   case ISD::TargetExternalSymbol:
632   case ISD::ExternalSymbol:
633   case ISD::MCSymbol:
634     llvm_unreachable("Should only be used on nodes with operands");
635   default: break;  // Normal nodes don't need extra info.
636   case ISD::TargetConstant:
637   case ISD::Constant: {
638     const ConstantSDNode *C = cast<ConstantSDNode>(N);
639     ID.AddPointer(C->getConstantIntValue());
640     ID.AddBoolean(C->isOpaque());
641     break;
642   }
643   case ISD::TargetConstantFP:
644   case ISD::ConstantFP:
645     ID.AddPointer(cast<ConstantFPSDNode>(N)->getConstantFPValue());
646     break;
647   case ISD::TargetGlobalAddress:
648   case ISD::GlobalAddress:
649   case ISD::TargetGlobalTLSAddress:
650   case ISD::GlobalTLSAddress: {
651     const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
652     ID.AddPointer(GA->getGlobal());
653     ID.AddInteger(GA->getOffset());
654     ID.AddInteger(GA->getTargetFlags());
655     break;
656   }
657   case ISD::BasicBlock:
658     ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
659     break;
660   case ISD::Register:
661     ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
662     break;
663   case ISD::RegisterMask:
664     ID.AddPointer(cast<RegisterMaskSDNode>(N)->getRegMask());
665     break;
666   case ISD::SRCVALUE:
667     ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
668     break;
669   case ISD::FrameIndex:
670   case ISD::TargetFrameIndex:
671     ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
672     break;
673   case ISD::LIFETIME_START:
674   case ISD::LIFETIME_END:
675     if (cast<LifetimeSDNode>(N)->hasOffset()) {
676       ID.AddInteger(cast<LifetimeSDNode>(N)->getSize());
677       ID.AddInteger(cast<LifetimeSDNode>(N)->getOffset());
678     }
679     break;
680   case ISD::PSEUDO_PROBE:
681     ID.AddInteger(cast<PseudoProbeSDNode>(N)->getGuid());
682     ID.AddInteger(cast<PseudoProbeSDNode>(N)->getIndex());
683     ID.AddInteger(cast<PseudoProbeSDNode>(N)->getAttributes());
684     break;
685   case ISD::JumpTable:
686   case ISD::TargetJumpTable:
687     ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
688     ID.AddInteger(cast<JumpTableSDNode>(N)->getTargetFlags());
689     break;
690   case ISD::ConstantPool:
691   case ISD::TargetConstantPool: {
692     const ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
693     ID.AddInteger(CP->getAlign().value());
694     ID.AddInteger(CP->getOffset());
695     if (CP->isMachineConstantPoolEntry())
696       CP->getMachineCPVal()->addSelectionDAGCSEId(ID);
697     else
698       ID.AddPointer(CP->getConstVal());
699     ID.AddInteger(CP->getTargetFlags());
700     break;
701   }
702   case ISD::TargetIndex: {
703     const TargetIndexSDNode *TI = cast<TargetIndexSDNode>(N);
704     ID.AddInteger(TI->getIndex());
705     ID.AddInteger(TI->getOffset());
706     ID.AddInteger(TI->getTargetFlags());
707     break;
708   }
709   case ISD::LOAD: {
710     const LoadSDNode *LD = cast<LoadSDNode>(N);
711     ID.AddInteger(LD->getMemoryVT().getRawBits());
712     ID.AddInteger(LD->getRawSubclassData());
713     ID.AddInteger(LD->getPointerInfo().getAddrSpace());
714     ID.AddInteger(LD->getMemOperand()->getFlags());
715     break;
716   }
717   case ISD::STORE: {
718     const StoreSDNode *ST = cast<StoreSDNode>(N);
719     ID.AddInteger(ST->getMemoryVT().getRawBits());
720     ID.AddInteger(ST->getRawSubclassData());
721     ID.AddInteger(ST->getPointerInfo().getAddrSpace());
722     ID.AddInteger(ST->getMemOperand()->getFlags());
723     break;
724   }
725   case ISD::VP_LOAD: {
726     const VPLoadSDNode *ELD = cast<VPLoadSDNode>(N);
727     ID.AddInteger(ELD->getMemoryVT().getRawBits());
728     ID.AddInteger(ELD->getRawSubclassData());
729     ID.AddInteger(ELD->getPointerInfo().getAddrSpace());
730     ID.AddInteger(ELD->getMemOperand()->getFlags());
731     break;
732   }
733   case ISD::VP_STORE: {
734     const VPStoreSDNode *EST = cast<VPStoreSDNode>(N);
735     ID.AddInteger(EST->getMemoryVT().getRawBits());
736     ID.AddInteger(EST->getRawSubclassData());
737     ID.AddInteger(EST->getPointerInfo().getAddrSpace());
738     ID.AddInteger(EST->getMemOperand()->getFlags());
739     break;
740   }
741   case ISD::EXPERIMENTAL_VP_STRIDED_LOAD: {
742     const VPStridedLoadSDNode *SLD = cast<VPStridedLoadSDNode>(N);
743     ID.AddInteger(SLD->getMemoryVT().getRawBits());
744     ID.AddInteger(SLD->getRawSubclassData());
745     ID.AddInteger(SLD->getPointerInfo().getAddrSpace());
746     break;
747   }
748   case ISD::EXPERIMENTAL_VP_STRIDED_STORE: {
749     const VPStridedStoreSDNode *SST = cast<VPStridedStoreSDNode>(N);
750     ID.AddInteger(SST->getMemoryVT().getRawBits());
751     ID.AddInteger(SST->getRawSubclassData());
752     ID.AddInteger(SST->getPointerInfo().getAddrSpace());
753     break;
754   }
755   case ISD::VP_GATHER: {
756     const VPGatherSDNode *EG = cast<VPGatherSDNode>(N);
757     ID.AddInteger(EG->getMemoryVT().getRawBits());
758     ID.AddInteger(EG->getRawSubclassData());
759     ID.AddInteger(EG->getPointerInfo().getAddrSpace());
760     ID.AddInteger(EG->getMemOperand()->getFlags());
761     break;
762   }
763   case ISD::VP_SCATTER: {
764     const VPScatterSDNode *ES = cast<VPScatterSDNode>(N);
765     ID.AddInteger(ES->getMemoryVT().getRawBits());
766     ID.AddInteger(ES->getRawSubclassData());
767     ID.AddInteger(ES->getPointerInfo().getAddrSpace());
768     ID.AddInteger(ES->getMemOperand()->getFlags());
769     break;
770   }
771   case ISD::MLOAD: {
772     const MaskedLoadSDNode *MLD = cast<MaskedLoadSDNode>(N);
773     ID.AddInteger(MLD->getMemoryVT().getRawBits());
774     ID.AddInteger(MLD->getRawSubclassData());
775     ID.AddInteger(MLD->getPointerInfo().getAddrSpace());
776     ID.AddInteger(MLD->getMemOperand()->getFlags());
777     break;
778   }
779   case ISD::MSTORE: {
780     const MaskedStoreSDNode *MST = cast<MaskedStoreSDNode>(N);
781     ID.AddInteger(MST->getMemoryVT().getRawBits());
782     ID.AddInteger(MST->getRawSubclassData());
783     ID.AddInteger(MST->getPointerInfo().getAddrSpace());
784     ID.AddInteger(MST->getMemOperand()->getFlags());
785     break;
786   }
787   case ISD::MGATHER: {
788     const MaskedGatherSDNode *MG = cast<MaskedGatherSDNode>(N);
789     ID.AddInteger(MG->getMemoryVT().getRawBits());
790     ID.AddInteger(MG->getRawSubclassData());
791     ID.AddInteger(MG->getPointerInfo().getAddrSpace());
792     ID.AddInteger(MG->getMemOperand()->getFlags());
793     break;
794   }
795   case ISD::MSCATTER: {
796     const MaskedScatterSDNode *MS = cast<MaskedScatterSDNode>(N);
797     ID.AddInteger(MS->getMemoryVT().getRawBits());
798     ID.AddInteger(MS->getRawSubclassData());
799     ID.AddInteger(MS->getPointerInfo().getAddrSpace());
800     ID.AddInteger(MS->getMemOperand()->getFlags());
801     break;
802   }
803   case ISD::ATOMIC_CMP_SWAP:
804   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS:
805   case ISD::ATOMIC_SWAP:
806   case ISD::ATOMIC_LOAD_ADD:
807   case ISD::ATOMIC_LOAD_SUB:
808   case ISD::ATOMIC_LOAD_AND:
809   case ISD::ATOMIC_LOAD_CLR:
810   case ISD::ATOMIC_LOAD_OR:
811   case ISD::ATOMIC_LOAD_XOR:
812   case ISD::ATOMIC_LOAD_NAND:
813   case ISD::ATOMIC_LOAD_MIN:
814   case ISD::ATOMIC_LOAD_MAX:
815   case ISD::ATOMIC_LOAD_UMIN:
816   case ISD::ATOMIC_LOAD_UMAX:
817   case ISD::ATOMIC_LOAD:
818   case ISD::ATOMIC_STORE: {
819     const AtomicSDNode *AT = cast<AtomicSDNode>(N);
820     ID.AddInteger(AT->getMemoryVT().getRawBits());
821     ID.AddInteger(AT->getRawSubclassData());
822     ID.AddInteger(AT->getPointerInfo().getAddrSpace());
823     ID.AddInteger(AT->getMemOperand()->getFlags());
824     break;
825   }
826   case ISD::PREFETCH: {
827     const MemSDNode *PF = cast<MemSDNode>(N);
828     ID.AddInteger(PF->getPointerInfo().getAddrSpace());
829     ID.AddInteger(PF->getMemOperand()->getFlags());
830     break;
831   }
832   case ISD::VECTOR_SHUFFLE: {
833     const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
834     for (unsigned i = 0, e = N->getValueType(0).getVectorNumElements();
835          i != e; ++i)
836       ID.AddInteger(SVN->getMaskElt(i));
837     break;
838   }
839   case ISD::TargetBlockAddress:
840   case ISD::BlockAddress: {
841     const BlockAddressSDNode *BA = cast<BlockAddressSDNode>(N);
842     ID.AddPointer(BA->getBlockAddress());
843     ID.AddInteger(BA->getOffset());
844     ID.AddInteger(BA->getTargetFlags());
845     break;
846   }
847   case ISD::AssertAlign:
848     ID.AddInteger(cast<AssertAlignSDNode>(N)->getAlign().value());
849     break;
850   } // end switch (N->getOpcode())
851 
852   // Target specific memory nodes could also have address spaces and flags
853   // to check.
854   if (N->isTargetMemoryOpcode()) {
855     const MemSDNode *MN = cast<MemSDNode>(N);
856     ID.AddInteger(MN->getPointerInfo().getAddrSpace());
857     ID.AddInteger(MN->getMemOperand()->getFlags());
858   }
859 }
860 
861 /// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
862 /// data.
863 static void AddNodeIDNode(FoldingSetNodeID &ID, const SDNode *N) {
864   AddNodeIDOpcode(ID, N->getOpcode());
865   // Add the return value info.
866   AddNodeIDValueTypes(ID, N->getVTList());
867   // Add the operand info.
868   AddNodeIDOperands(ID, N->ops());
869 
870   // Handle SDNode leafs with special info.
871   AddNodeIDCustom(ID, N);
872 }
873 
874 //===----------------------------------------------------------------------===//
875 //                              SelectionDAG Class
876 //===----------------------------------------------------------------------===//
877 
878 /// doNotCSE - Return true if CSE should not be performed for this node.
879 static bool doNotCSE(SDNode *N) {
880   if (N->getValueType(0) == MVT::Glue)
881     return true; // Never CSE anything that produces a flag.
882 
883   switch (N->getOpcode()) {
884   default: break;
885   case ISD::HANDLENODE:
886   case ISD::EH_LABEL:
887     return true;   // Never CSE these nodes.
888   }
889 
890   // Check that remaining values produced are not flags.
891   for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
892     if (N->getValueType(i) == MVT::Glue)
893       return true; // Never CSE anything that produces a flag.
894 
895   return false;
896 }
897 
898 /// RemoveDeadNodes - This method deletes all unreachable nodes in the
899 /// SelectionDAG.
900 void SelectionDAG::RemoveDeadNodes() {
901   // Create a dummy node (which is not added to allnodes), that adds a reference
902   // to the root node, preventing it from being deleted.
903   HandleSDNode Dummy(getRoot());
904 
905   SmallVector<SDNode*, 128> DeadNodes;
906 
907   // Add all obviously-dead nodes to the DeadNodes worklist.
908   for (SDNode &Node : allnodes())
909     if (Node.use_empty())
910       DeadNodes.push_back(&Node);
911 
912   RemoveDeadNodes(DeadNodes);
913 
914   // If the root changed (e.g. it was a dead load, update the root).
915   setRoot(Dummy.getValue());
916 }
917 
918 /// RemoveDeadNodes - This method deletes the unreachable nodes in the
919 /// given list, and any nodes that become unreachable as a result.
920 void SelectionDAG::RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes) {
921 
922   // Process the worklist, deleting the nodes and adding their uses to the
923   // worklist.
924   while (!DeadNodes.empty()) {
925     SDNode *N = DeadNodes.pop_back_val();
926     // Skip to next node if we've already managed to delete the node. This could
927     // happen if replacing a node causes a node previously added to the node to
928     // be deleted.
929     if (N->getOpcode() == ISD::DELETED_NODE)
930       continue;
931 
932     for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
933       DUL->NodeDeleted(N, nullptr);
934 
935     // Take the node out of the appropriate CSE map.
936     RemoveNodeFromCSEMaps(N);
937 
938     // Next, brutally remove the operand list.  This is safe to do, as there are
939     // no cycles in the graph.
940     for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ) {
941       SDUse &Use = *I++;
942       SDNode *Operand = Use.getNode();
943       Use.set(SDValue());
944 
945       // Now that we removed this operand, see if there are no uses of it left.
946       if (Operand->use_empty())
947         DeadNodes.push_back(Operand);
948     }
949 
950     DeallocateNode(N);
951   }
952 }
953 
954 void SelectionDAG::RemoveDeadNode(SDNode *N){
955   SmallVector<SDNode*, 16> DeadNodes(1, N);
956 
957   // Create a dummy node that adds a reference to the root node, preventing
958   // it from being deleted.  (This matters if the root is an operand of the
959   // dead node.)
960   HandleSDNode Dummy(getRoot());
961 
962   RemoveDeadNodes(DeadNodes);
963 }
964 
965 void SelectionDAG::DeleteNode(SDNode *N) {
966   // First take this out of the appropriate CSE map.
967   RemoveNodeFromCSEMaps(N);
968 
969   // Finally, remove uses due to operands of this node, remove from the
970   // AllNodes list, and delete the node.
971   DeleteNodeNotInCSEMaps(N);
972 }
973 
974 void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
975   assert(N->getIterator() != AllNodes.begin() &&
976          "Cannot delete the entry node!");
977   assert(N->use_empty() && "Cannot delete a node that is not dead!");
978 
979   // Drop all of the operands and decrement used node's use counts.
980   N->DropOperands();
981 
982   DeallocateNode(N);
983 }
984 
985 void SDDbgInfo::add(SDDbgValue *V, bool isParameter) {
986   assert(!(V->isVariadic() && isParameter));
987   if (isParameter)
988     ByvalParmDbgValues.push_back(V);
989   else
990     DbgValues.push_back(V);
991   for (const SDNode *Node : V->getSDNodes())
992     if (Node)
993       DbgValMap[Node].push_back(V);
994 }
995 
996 void SDDbgInfo::erase(const SDNode *Node) {
997   DbgValMapType::iterator I = DbgValMap.find(Node);
998   if (I == DbgValMap.end())
999     return;
1000   for (auto &Val: I->second)
1001     Val->setIsInvalidated();
1002   DbgValMap.erase(I);
1003 }
1004 
1005 void SelectionDAG::DeallocateNode(SDNode *N) {
1006   // If we have operands, deallocate them.
1007   removeOperands(N);
1008 
1009   NodeAllocator.Deallocate(AllNodes.remove(N));
1010 
1011   // Set the opcode to DELETED_NODE to help catch bugs when node
1012   // memory is reallocated.
1013   // FIXME: There are places in SDag that have grown a dependency on the opcode
1014   // value in the released node.
1015   __asan_unpoison_memory_region(&N->NodeType, sizeof(N->NodeType));
1016   N->NodeType = ISD::DELETED_NODE;
1017 
1018   // If any of the SDDbgValue nodes refer to this SDNode, invalidate
1019   // them and forget about that node.
1020   DbgInfo->erase(N);
1021 }
1022 
1023 #ifndef NDEBUG
1024 /// VerifySDNode - Check the given SDNode.  Aborts if it is invalid.
1025 static void VerifySDNode(SDNode *N) {
1026   switch (N->getOpcode()) {
1027   default:
1028     break;
1029   case ISD::BUILD_PAIR: {
1030     EVT VT = N->getValueType(0);
1031     assert(N->getNumValues() == 1 && "Too many results!");
1032     assert(!VT.isVector() && (VT.isInteger() || VT.isFloatingPoint()) &&
1033            "Wrong return type!");
1034     assert(N->getNumOperands() == 2 && "Wrong number of operands!");
1035     assert(N->getOperand(0).getValueType() == N->getOperand(1).getValueType() &&
1036            "Mismatched operand types!");
1037     assert(N->getOperand(0).getValueType().isInteger() == VT.isInteger() &&
1038            "Wrong operand type!");
1039     assert(VT.getSizeInBits() == 2 * N->getOperand(0).getValueSizeInBits() &&
1040            "Wrong return type size");
1041     break;
1042   }
1043   case ISD::BUILD_VECTOR: {
1044     assert(N->getNumValues() == 1 && "Too many results!");
1045     assert(N->getValueType(0).isVector() && "Wrong return type!");
1046     assert(N->getNumOperands() == N->getValueType(0).getVectorNumElements() &&
1047            "Wrong number of operands!");
1048     EVT EltVT = N->getValueType(0).getVectorElementType();
1049     for (const SDUse &Op : N->ops()) {
1050       assert((Op.getValueType() == EltVT ||
1051               (EltVT.isInteger() && Op.getValueType().isInteger() &&
1052                EltVT.bitsLE(Op.getValueType()))) &&
1053              "Wrong operand type!");
1054       assert(Op.getValueType() == N->getOperand(0).getValueType() &&
1055              "Operands must all have the same type");
1056     }
1057     break;
1058   }
1059   }
1060 }
1061 #endif // NDEBUG
1062 
1063 /// Insert a newly allocated node into the DAG.
1064 ///
1065 /// Handles insertion into the all nodes list and CSE map, as well as
1066 /// verification and other common operations when a new node is allocated.
1067 void SelectionDAG::InsertNode(SDNode *N) {
1068   AllNodes.push_back(N);
1069 #ifndef NDEBUG
1070   N->PersistentId = NextPersistentId++;
1071   VerifySDNode(N);
1072 #endif
1073   for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
1074     DUL->NodeInserted(N);
1075 }
1076 
1077 /// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
1078 /// correspond to it.  This is useful when we're about to delete or repurpose
1079 /// the node.  We don't want future request for structurally identical nodes
1080 /// to return N anymore.
1081 bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
1082   bool Erased = false;
1083   switch (N->getOpcode()) {
1084   case ISD::HANDLENODE: return false;  // noop.
1085   case ISD::CONDCODE:
1086     assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
1087            "Cond code doesn't exist!");
1088     Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != nullptr;
1089     CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = nullptr;
1090     break;
1091   case ISD::ExternalSymbol:
1092     Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
1093     break;
1094   case ISD::TargetExternalSymbol: {
1095     ExternalSymbolSDNode *ESN = cast<ExternalSymbolSDNode>(N);
1096     Erased = TargetExternalSymbols.erase(std::pair<std::string, unsigned>(
1097         ESN->getSymbol(), ESN->getTargetFlags()));
1098     break;
1099   }
1100   case ISD::MCSymbol: {
1101     auto *MCSN = cast<MCSymbolSDNode>(N);
1102     Erased = MCSymbols.erase(MCSN->getMCSymbol());
1103     break;
1104   }
1105   case ISD::VALUETYPE: {
1106     EVT VT = cast<VTSDNode>(N)->getVT();
1107     if (VT.isExtended()) {
1108       Erased = ExtendedValueTypeNodes.erase(VT);
1109     } else {
1110       Erased = ValueTypeNodes[VT.getSimpleVT().SimpleTy] != nullptr;
1111       ValueTypeNodes[VT.getSimpleVT().SimpleTy] = nullptr;
1112     }
1113     break;
1114   }
1115   default:
1116     // Remove it from the CSE Map.
1117     assert(N->getOpcode() != ISD::DELETED_NODE && "DELETED_NODE in CSEMap!");
1118     assert(N->getOpcode() != ISD::EntryToken && "EntryToken in CSEMap!");
1119     Erased = CSEMap.RemoveNode(N);
1120     break;
1121   }
1122 #ifndef NDEBUG
1123   // Verify that the node was actually in one of the CSE maps, unless it has a
1124   // flag result (which cannot be CSE'd) or is one of the special cases that are
1125   // not subject to CSE.
1126   if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Glue &&
1127       !N->isMachineOpcode() && !doNotCSE(N)) {
1128     N->dump(this);
1129     dbgs() << "\n";
1130     llvm_unreachable("Node is not in map!");
1131   }
1132 #endif
1133   return Erased;
1134 }
1135 
1136 /// AddModifiedNodeToCSEMaps - The specified node has been removed from the CSE
1137 /// maps and modified in place. Add it back to the CSE maps, unless an identical
1138 /// node already exists, in which case transfer all its users to the existing
1139 /// node. This transfer can potentially trigger recursive merging.
1140 void
1141 SelectionDAG::AddModifiedNodeToCSEMaps(SDNode *N) {
1142   // For node types that aren't CSE'd, just act as if no identical node
1143   // already exists.
1144   if (!doNotCSE(N)) {
1145     SDNode *Existing = CSEMap.GetOrInsertNode(N);
1146     if (Existing != N) {
1147       // If there was already an existing matching node, use ReplaceAllUsesWith
1148       // to replace the dead one with the existing one.  This can cause
1149       // recursive merging of other unrelated nodes down the line.
1150       ReplaceAllUsesWith(N, Existing);
1151 
1152       // N is now dead. Inform the listeners and delete it.
1153       for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
1154         DUL->NodeDeleted(N, Existing);
1155       DeleteNodeNotInCSEMaps(N);
1156       return;
1157     }
1158   }
1159 
1160   // If the node doesn't already exist, we updated it.  Inform listeners.
1161   for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
1162     DUL->NodeUpdated(N);
1163 }
1164 
1165 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
1166 /// were replaced with those specified.  If this node is never memoized,
1167 /// return null, otherwise return a pointer to the slot it would take.  If a
1168 /// node already exists with these operands, the slot will be non-null.
1169 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDValue Op,
1170                                            void *&InsertPos) {
1171   if (doNotCSE(N))
1172     return nullptr;
1173 
1174   SDValue Ops[] = { Op };
1175   FoldingSetNodeID ID;
1176   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops);
1177   AddNodeIDCustom(ID, N);
1178   SDNode *Node = FindNodeOrInsertPos(ID, SDLoc(N), InsertPos);
1179   if (Node)
1180     Node->intersectFlagsWith(N->getFlags());
1181   return Node;
1182 }
1183 
1184 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
1185 /// were replaced with those specified.  If this node is never memoized,
1186 /// return null, otherwise return a pointer to the slot it would take.  If a
1187 /// node already exists with these operands, the slot will be non-null.
1188 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
1189                                            SDValue Op1, SDValue Op2,
1190                                            void *&InsertPos) {
1191   if (doNotCSE(N))
1192     return nullptr;
1193 
1194   SDValue Ops[] = { Op1, Op2 };
1195   FoldingSetNodeID ID;
1196   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops);
1197   AddNodeIDCustom(ID, N);
1198   SDNode *Node = FindNodeOrInsertPos(ID, SDLoc(N), InsertPos);
1199   if (Node)
1200     Node->intersectFlagsWith(N->getFlags());
1201   return Node;
1202 }
1203 
1204 /// FindModifiedNodeSlot - Find a slot for the specified node if its operands
1205 /// were replaced with those specified.  If this node is never memoized,
1206 /// return null, otherwise return a pointer to the slot it would take.  If a
1207 /// node already exists with these operands, the slot will be non-null.
1208 SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, ArrayRef<SDValue> Ops,
1209                                            void *&InsertPos) {
1210   if (doNotCSE(N))
1211     return nullptr;
1212 
1213   FoldingSetNodeID ID;
1214   AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops);
1215   AddNodeIDCustom(ID, N);
1216   SDNode *Node = FindNodeOrInsertPos(ID, SDLoc(N), InsertPos);
1217   if (Node)
1218     Node->intersectFlagsWith(N->getFlags());
1219   return Node;
1220 }
1221 
1222 Align SelectionDAG::getEVTAlign(EVT VT) const {
1223   Type *Ty = VT == MVT::iPTR ?
1224                    PointerType::get(Type::getInt8Ty(*getContext()), 0) :
1225                    VT.getTypeForEVT(*getContext());
1226 
1227   return getDataLayout().getABITypeAlign(Ty);
1228 }
1229 
1230 // EntryNode could meaningfully have debug info if we can find it...
1231 SelectionDAG::SelectionDAG(const TargetMachine &tm, CodeGenOpt::Level OL)
1232     : TM(tm), OptLevel(OL),
1233       EntryNode(ISD::EntryToken, 0, DebugLoc(), getVTList(MVT::Other)),
1234       Root(getEntryNode()) {
1235   InsertNode(&EntryNode);
1236   DbgInfo = new SDDbgInfo();
1237 }
1238 
1239 void SelectionDAG::init(MachineFunction &NewMF,
1240                         OptimizationRemarkEmitter &NewORE,
1241                         Pass *PassPtr, const TargetLibraryInfo *LibraryInfo,
1242                         LegacyDivergenceAnalysis * Divergence,
1243                         ProfileSummaryInfo *PSIin,
1244                         BlockFrequencyInfo *BFIin) {
1245   MF = &NewMF;
1246   SDAGISelPass = PassPtr;
1247   ORE = &NewORE;
1248   TLI = getSubtarget().getTargetLowering();
1249   TSI = getSubtarget().getSelectionDAGInfo();
1250   LibInfo = LibraryInfo;
1251   Context = &MF->getFunction().getContext();
1252   DA = Divergence;
1253   PSI = PSIin;
1254   BFI = BFIin;
1255 }
1256 
1257 SelectionDAG::~SelectionDAG() {
1258   assert(!UpdateListeners && "Dangling registered DAGUpdateListeners");
1259   allnodes_clear();
1260   OperandRecycler.clear(OperandAllocator);
1261   delete DbgInfo;
1262 }
1263 
1264 bool SelectionDAG::shouldOptForSize() const {
1265   return MF->getFunction().hasOptSize() ||
1266       llvm::shouldOptimizeForSize(FLI->MBB->getBasicBlock(), PSI, BFI);
1267 }
1268 
1269 void SelectionDAG::allnodes_clear() {
1270   assert(&*AllNodes.begin() == &EntryNode);
1271   AllNodes.remove(AllNodes.begin());
1272   while (!AllNodes.empty())
1273     DeallocateNode(&AllNodes.front());
1274 #ifndef NDEBUG
1275   NextPersistentId = 0;
1276 #endif
1277 }
1278 
1279 SDNode *SelectionDAG::FindNodeOrInsertPos(const FoldingSetNodeID &ID,
1280                                           void *&InsertPos) {
1281   SDNode *N = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
1282   if (N) {
1283     switch (N->getOpcode()) {
1284     default: break;
1285     case ISD::Constant:
1286     case ISD::ConstantFP:
1287       llvm_unreachable("Querying for Constant and ConstantFP nodes requires "
1288                        "debug location.  Use another overload.");
1289     }
1290   }
1291   return N;
1292 }
1293 
1294 SDNode *SelectionDAG::FindNodeOrInsertPos(const FoldingSetNodeID &ID,
1295                                           const SDLoc &DL, void *&InsertPos) {
1296   SDNode *N = CSEMap.FindNodeOrInsertPos(ID, InsertPos);
1297   if (N) {
1298     switch (N->getOpcode()) {
1299     case ISD::Constant:
1300     case ISD::ConstantFP:
1301       // Erase debug location from the node if the node is used at several
1302       // different places. Do not propagate one location to all uses as it
1303       // will cause a worse single stepping debugging experience.
1304       if (N->getDebugLoc() != DL.getDebugLoc())
1305         N->setDebugLoc(DebugLoc());
1306       break;
1307     default:
1308       // When the node's point of use is located earlier in the instruction
1309       // sequence than its prior point of use, update its debug info to the
1310       // earlier location.
1311       if (DL.getIROrder() && DL.getIROrder() < N->getIROrder())
1312         N->setDebugLoc(DL.getDebugLoc());
1313       break;
1314     }
1315   }
1316   return N;
1317 }
1318 
1319 void SelectionDAG::clear() {
1320   allnodes_clear();
1321   OperandRecycler.clear(OperandAllocator);
1322   OperandAllocator.Reset();
1323   CSEMap.clear();
1324 
1325   ExtendedValueTypeNodes.clear();
1326   ExternalSymbols.clear();
1327   TargetExternalSymbols.clear();
1328   MCSymbols.clear();
1329   SDCallSiteDbgInfo.clear();
1330   std::fill(CondCodeNodes.begin(), CondCodeNodes.end(),
1331             static_cast<CondCodeSDNode*>(nullptr));
1332   std::fill(ValueTypeNodes.begin(), ValueTypeNodes.end(),
1333             static_cast<SDNode*>(nullptr));
1334 
1335   EntryNode.UseList = nullptr;
1336   InsertNode(&EntryNode);
1337   Root = getEntryNode();
1338   DbgInfo->clear();
1339 }
1340 
1341 SDValue SelectionDAG::getFPExtendOrRound(SDValue Op, const SDLoc &DL, EVT VT) {
1342   return VT.bitsGT(Op.getValueType())
1343              ? getNode(ISD::FP_EXTEND, DL, VT, Op)
1344              : getNode(ISD::FP_ROUND, DL, VT, Op, getIntPtrConstant(0, DL));
1345 }
1346 
1347 std::pair<SDValue, SDValue>
1348 SelectionDAG::getStrictFPExtendOrRound(SDValue Op, SDValue Chain,
1349                                        const SDLoc &DL, EVT VT) {
1350   assert(!VT.bitsEq(Op.getValueType()) &&
1351          "Strict no-op FP extend/round not allowed.");
1352   SDValue Res =
1353       VT.bitsGT(Op.getValueType())
1354           ? getNode(ISD::STRICT_FP_EXTEND, DL, {VT, MVT::Other}, {Chain, Op})
1355           : getNode(ISD::STRICT_FP_ROUND, DL, {VT, MVT::Other},
1356                     {Chain, Op, getIntPtrConstant(0, DL)});
1357 
1358   return std::pair<SDValue, SDValue>(Res, SDValue(Res.getNode(), 1));
1359 }
1360 
1361 SDValue SelectionDAG::getAnyExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT) {
1362   return VT.bitsGT(Op.getValueType()) ?
1363     getNode(ISD::ANY_EXTEND, DL, VT, Op) :
1364     getNode(ISD::TRUNCATE, DL, VT, Op);
1365 }
1366 
1367 SDValue SelectionDAG::getSExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT) {
1368   return VT.bitsGT(Op.getValueType()) ?
1369     getNode(ISD::SIGN_EXTEND, DL, VT, Op) :
1370     getNode(ISD::TRUNCATE, DL, VT, Op);
1371 }
1372 
1373 SDValue SelectionDAG::getZExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT) {
1374   return VT.bitsGT(Op.getValueType()) ?
1375     getNode(ISD::ZERO_EXTEND, DL, VT, Op) :
1376     getNode(ISD::TRUNCATE, DL, VT, Op);
1377 }
1378 
1379 SDValue SelectionDAG::getBoolExtOrTrunc(SDValue Op, const SDLoc &SL, EVT VT,
1380                                         EVT OpVT) {
1381   if (VT.bitsLE(Op.getValueType()))
1382     return getNode(ISD::TRUNCATE, SL, VT, Op);
1383 
1384   TargetLowering::BooleanContent BType = TLI->getBooleanContents(OpVT);
1385   return getNode(TLI->getExtendForContent(BType), SL, VT, Op);
1386 }
1387 
1388 SDValue SelectionDAG::getZeroExtendInReg(SDValue Op, const SDLoc &DL, EVT VT) {
1389   EVT OpVT = Op.getValueType();
1390   assert(VT.isInteger() && OpVT.isInteger() &&
1391          "Cannot getZeroExtendInReg FP types");
1392   assert(VT.isVector() == OpVT.isVector() &&
1393          "getZeroExtendInReg type should be vector iff the operand "
1394          "type is vector!");
1395   assert((!VT.isVector() ||
1396           VT.getVectorElementCount() == OpVT.getVectorElementCount()) &&
1397          "Vector element counts must match in getZeroExtendInReg");
1398   assert(VT.bitsLE(OpVT) && "Not extending!");
1399   if (OpVT == VT)
1400     return Op;
1401   APInt Imm = APInt::getLowBitsSet(OpVT.getScalarSizeInBits(),
1402                                    VT.getScalarSizeInBits());
1403   return getNode(ISD::AND, DL, OpVT, Op, getConstant(Imm, DL, OpVT));
1404 }
1405 
1406 SDValue SelectionDAG::getPtrExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT) {
1407   // Only unsigned pointer semantics are supported right now. In the future this
1408   // might delegate to TLI to check pointer signedness.
1409   return getZExtOrTrunc(Op, DL, VT);
1410 }
1411 
1412 SDValue SelectionDAG::getPtrExtendInReg(SDValue Op, const SDLoc &DL, EVT VT) {
1413   // Only unsigned pointer semantics are supported right now. In the future this
1414   // might delegate to TLI to check pointer signedness.
1415   return getZeroExtendInReg(Op, DL, VT);
1416 }
1417 
1418 /// getNOT - Create a bitwise NOT operation as (XOR Val, -1).
1419 SDValue SelectionDAG::getNOT(const SDLoc &DL, SDValue Val, EVT VT) {
1420   return getNode(ISD::XOR, DL, VT, Val, getAllOnesConstant(DL, VT));
1421 }
1422 
1423 SDValue SelectionDAG::getLogicalNOT(const SDLoc &DL, SDValue Val, EVT VT) {
1424   SDValue TrueValue = getBoolConstant(true, DL, VT, VT);
1425   return getNode(ISD::XOR, DL, VT, Val, TrueValue);
1426 }
1427 
1428 SDValue SelectionDAG::getVPLogicalNOT(const SDLoc &DL, SDValue Val,
1429                                       SDValue Mask, SDValue EVL, EVT VT) {
1430   SDValue TrueValue = getBoolConstant(true, DL, VT, VT);
1431   return getNode(ISD::VP_XOR, DL, VT, Val, TrueValue, Mask, EVL);
1432 }
1433 
1434 SDValue SelectionDAG::getBoolConstant(bool V, const SDLoc &DL, EVT VT,
1435                                       EVT OpVT) {
1436   if (!V)
1437     return getConstant(0, DL, VT);
1438 
1439   switch (TLI->getBooleanContents(OpVT)) {
1440   case TargetLowering::ZeroOrOneBooleanContent:
1441   case TargetLowering::UndefinedBooleanContent:
1442     return getConstant(1, DL, VT);
1443   case TargetLowering::ZeroOrNegativeOneBooleanContent:
1444     return getAllOnesConstant(DL, VT);
1445   }
1446   llvm_unreachable("Unexpected boolean content enum!");
1447 }
1448 
1449 SDValue SelectionDAG::getConstant(uint64_t Val, const SDLoc &DL, EVT VT,
1450                                   bool isT, bool isO) {
1451   EVT EltVT = VT.getScalarType();
1452   assert((EltVT.getSizeInBits() >= 64 ||
1453           (uint64_t)((int64_t)Val >> EltVT.getSizeInBits()) + 1 < 2) &&
1454          "getConstant with a uint64_t value that doesn't fit in the type!");
1455   return getConstant(APInt(EltVT.getSizeInBits(), Val), DL, VT, isT, isO);
1456 }
1457 
1458 SDValue SelectionDAG::getConstant(const APInt &Val, const SDLoc &DL, EVT VT,
1459                                   bool isT, bool isO) {
1460   return getConstant(*ConstantInt::get(*Context, Val), DL, VT, isT, isO);
1461 }
1462 
1463 SDValue SelectionDAG::getConstant(const ConstantInt &Val, const SDLoc &DL,
1464                                   EVT VT, bool isT, bool isO) {
1465   assert(VT.isInteger() && "Cannot create FP integer constant!");
1466 
1467   EVT EltVT = VT.getScalarType();
1468   const ConstantInt *Elt = &Val;
1469 
1470   // In some cases the vector type is legal but the element type is illegal and
1471   // needs to be promoted, for example v8i8 on ARM.  In this case, promote the
1472   // inserted value (the type does not need to match the vector element type).
1473   // Any extra bits introduced will be truncated away.
1474   if (VT.isVector() && TLI->getTypeAction(*getContext(), EltVT) ==
1475                            TargetLowering::TypePromoteInteger) {
1476     EltVT = TLI->getTypeToTransformTo(*getContext(), EltVT);
1477     APInt NewVal = Elt->getValue().zextOrTrunc(EltVT.getSizeInBits());
1478     Elt = ConstantInt::get(*getContext(), NewVal);
1479   }
1480   // In other cases the element type is illegal and needs to be expanded, for
1481   // example v2i64 on MIPS32. In this case, find the nearest legal type, split
1482   // the value into n parts and use a vector type with n-times the elements.
1483   // Then bitcast to the type requested.
1484   // Legalizing constants too early makes the DAGCombiner's job harder so we
1485   // only legalize if the DAG tells us we must produce legal types.
1486   else if (NewNodesMustHaveLegalTypes && VT.isVector() &&
1487            TLI->getTypeAction(*getContext(), EltVT) ==
1488                TargetLowering::TypeExpandInteger) {
1489     const APInt &NewVal = Elt->getValue();
1490     EVT ViaEltVT = TLI->getTypeToTransformTo(*getContext(), EltVT);
1491     unsigned ViaEltSizeInBits = ViaEltVT.getSizeInBits();
1492 
1493     // For scalable vectors, try to use a SPLAT_VECTOR_PARTS node.
1494     if (VT.isScalableVector()) {
1495       assert(EltVT.getSizeInBits() % ViaEltSizeInBits == 0 &&
1496              "Can only handle an even split!");
1497       unsigned Parts = EltVT.getSizeInBits() / ViaEltSizeInBits;
1498 
1499       SmallVector<SDValue, 2> ScalarParts;
1500       for (unsigned i = 0; i != Parts; ++i)
1501         ScalarParts.push_back(getConstant(
1502             NewVal.extractBits(ViaEltSizeInBits, i * ViaEltSizeInBits), DL,
1503             ViaEltVT, isT, isO));
1504 
1505       return getNode(ISD::SPLAT_VECTOR_PARTS, DL, VT, ScalarParts);
1506     }
1507 
1508     unsigned ViaVecNumElts = VT.getSizeInBits() / ViaEltSizeInBits;
1509     EVT ViaVecVT = EVT::getVectorVT(*getContext(), ViaEltVT, ViaVecNumElts);
1510 
1511     // Check the temporary vector is the correct size. If this fails then
1512     // getTypeToTransformTo() probably returned a type whose size (in bits)
1513     // isn't a power-of-2 factor of the requested type size.
1514     assert(ViaVecVT.getSizeInBits() == VT.getSizeInBits());
1515 
1516     SmallVector<SDValue, 2> EltParts;
1517     for (unsigned i = 0; i < ViaVecNumElts / VT.getVectorNumElements(); ++i)
1518       EltParts.push_back(getConstant(
1519           NewVal.extractBits(ViaEltSizeInBits, i * ViaEltSizeInBits), DL,
1520           ViaEltVT, isT, isO));
1521 
1522     // EltParts is currently in little endian order. If we actually want
1523     // big-endian order then reverse it now.
1524     if (getDataLayout().isBigEndian())
1525       std::reverse(EltParts.begin(), EltParts.end());
1526 
1527     // The elements must be reversed when the element order is different
1528     // to the endianness of the elements (because the BITCAST is itself a
1529     // vector shuffle in this situation). However, we do not need any code to
1530     // perform this reversal because getConstant() is producing a vector
1531     // splat.
1532     // This situation occurs in MIPS MSA.
1533 
1534     SmallVector<SDValue, 8> Ops;
1535     for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
1536       llvm::append_range(Ops, EltParts);
1537 
1538     SDValue V =
1539         getNode(ISD::BITCAST, DL, VT, getBuildVector(ViaVecVT, DL, Ops));
1540     return V;
1541   }
1542 
1543   assert(Elt->getBitWidth() == EltVT.getSizeInBits() &&
1544          "APInt size does not match type size!");
1545   unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
1546   FoldingSetNodeID ID;
1547   AddNodeIDNode(ID, Opc, getVTList(EltVT), None);
1548   ID.AddPointer(Elt);
1549   ID.AddBoolean(isO);
1550   void *IP = nullptr;
1551   SDNode *N = nullptr;
1552   if ((N = FindNodeOrInsertPos(ID, DL, IP)))
1553     if (!VT.isVector())
1554       return SDValue(N, 0);
1555 
1556   if (!N) {
1557     N = newSDNode<ConstantSDNode>(isT, isO, Elt, EltVT);
1558     CSEMap.InsertNode(N, IP);
1559     InsertNode(N);
1560     NewSDValueDbgMsg(SDValue(N, 0), "Creating constant: ", this);
1561   }
1562 
1563   SDValue Result(N, 0);
1564   if (VT.isScalableVector())
1565     Result = getSplatVector(VT, DL, Result);
1566   else if (VT.isVector())
1567     Result = getSplatBuildVector(VT, DL, Result);
1568 
1569   return Result;
1570 }
1571 
1572 SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, const SDLoc &DL,
1573                                         bool isTarget) {
1574   return getConstant(Val, DL, TLI->getPointerTy(getDataLayout()), isTarget);
1575 }
1576 
1577 SDValue SelectionDAG::getShiftAmountConstant(uint64_t Val, EVT VT,
1578                                              const SDLoc &DL, bool LegalTypes) {
1579   assert(VT.isInteger() && "Shift amount is not an integer type!");
1580   EVT ShiftVT = TLI->getShiftAmountTy(VT, getDataLayout(), LegalTypes);
1581   return getConstant(Val, DL, ShiftVT);
1582 }
1583 
1584 SDValue SelectionDAG::getVectorIdxConstant(uint64_t Val, const SDLoc &DL,
1585                                            bool isTarget) {
1586   return getConstant(Val, DL, TLI->getVectorIdxTy(getDataLayout()), isTarget);
1587 }
1588 
1589 SDValue SelectionDAG::getConstantFP(const APFloat &V, const SDLoc &DL, EVT VT,
1590                                     bool isTarget) {
1591   return getConstantFP(*ConstantFP::get(*getContext(), V), DL, VT, isTarget);
1592 }
1593 
1594 SDValue SelectionDAG::getConstantFP(const ConstantFP &V, const SDLoc &DL,
1595                                     EVT VT, bool isTarget) {
1596   assert(VT.isFloatingPoint() && "Cannot create integer FP constant!");
1597 
1598   EVT EltVT = VT.getScalarType();
1599 
1600   // Do the map lookup using the actual bit pattern for the floating point
1601   // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
1602   // we don't have issues with SNANs.
1603   unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
1604   FoldingSetNodeID ID;
1605   AddNodeIDNode(ID, Opc, getVTList(EltVT), None);
1606   ID.AddPointer(&V);
1607   void *IP = nullptr;
1608   SDNode *N = nullptr;
1609   if ((N = FindNodeOrInsertPos(ID, DL, IP)))
1610     if (!VT.isVector())
1611       return SDValue(N, 0);
1612 
1613   if (!N) {
1614     N = newSDNode<ConstantFPSDNode>(isTarget, &V, EltVT);
1615     CSEMap.InsertNode(N, IP);
1616     InsertNode(N);
1617   }
1618 
1619   SDValue Result(N, 0);
1620   if (VT.isScalableVector())
1621     Result = getSplatVector(VT, DL, Result);
1622   else if (VT.isVector())
1623     Result = getSplatBuildVector(VT, DL, Result);
1624   NewSDValueDbgMsg(Result, "Creating fp constant: ", this);
1625   return Result;
1626 }
1627 
1628 SDValue SelectionDAG::getConstantFP(double Val, const SDLoc &DL, EVT VT,
1629                                     bool isTarget) {
1630   EVT EltVT = VT.getScalarType();
1631   if (EltVT == MVT::f32)
1632     return getConstantFP(APFloat((float)Val), DL, VT, isTarget);
1633   if (EltVT == MVT::f64)
1634     return getConstantFP(APFloat(Val), DL, VT, isTarget);
1635   if (EltVT == MVT::f80 || EltVT == MVT::f128 || EltVT == MVT::ppcf128 ||
1636       EltVT == MVT::f16 || EltVT == MVT::bf16) {
1637     bool Ignored;
1638     APFloat APF = APFloat(Val);
1639     APF.convert(EVTToAPFloatSemantics(EltVT), APFloat::rmNearestTiesToEven,
1640                 &Ignored);
1641     return getConstantFP(APF, DL, VT, isTarget);
1642   }
1643   llvm_unreachable("Unsupported type in getConstantFP");
1644 }
1645 
1646 SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV, const SDLoc &DL,
1647                                        EVT VT, int64_t Offset, bool isTargetGA,
1648                                        unsigned TargetFlags) {
1649   assert((TargetFlags == 0 || isTargetGA) &&
1650          "Cannot set target flags on target-independent globals");
1651 
1652   // Truncate (with sign-extension) the offset value to the pointer size.
1653   unsigned BitWidth = getDataLayout().getPointerTypeSizeInBits(GV->getType());
1654   if (BitWidth < 64)
1655     Offset = SignExtend64(Offset, BitWidth);
1656 
1657   unsigned Opc;
1658   if (GV->isThreadLocal())
1659     Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
1660   else
1661     Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
1662 
1663   FoldingSetNodeID ID;
1664   AddNodeIDNode(ID, Opc, getVTList(VT), None);
1665   ID.AddPointer(GV);
1666   ID.AddInteger(Offset);
1667   ID.AddInteger(TargetFlags);
1668   void *IP = nullptr;
1669   if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP))
1670     return SDValue(E, 0);
1671 
1672   auto *N = newSDNode<GlobalAddressSDNode>(
1673       Opc, DL.getIROrder(), DL.getDebugLoc(), GV, VT, Offset, TargetFlags);
1674   CSEMap.InsertNode(N, IP);
1675     InsertNode(N);
1676   return SDValue(N, 0);
1677 }
1678 
1679 SDValue SelectionDAG::getFrameIndex(int FI, EVT VT, bool isTarget) {
1680   unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
1681   FoldingSetNodeID ID;
1682   AddNodeIDNode(ID, Opc, getVTList(VT), None);
1683   ID.AddInteger(FI);
1684   void *IP = nullptr;
1685   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1686     return SDValue(E, 0);
1687 
1688   auto *N = newSDNode<FrameIndexSDNode>(FI, VT, isTarget);
1689   CSEMap.InsertNode(N, IP);
1690   InsertNode(N);
1691   return SDValue(N, 0);
1692 }
1693 
1694 SDValue SelectionDAG::getJumpTable(int JTI, EVT VT, bool isTarget,
1695                                    unsigned TargetFlags) {
1696   assert((TargetFlags == 0 || isTarget) &&
1697          "Cannot set target flags on target-independent jump tables");
1698   unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
1699   FoldingSetNodeID ID;
1700   AddNodeIDNode(ID, Opc, getVTList(VT), None);
1701   ID.AddInteger(JTI);
1702   ID.AddInteger(TargetFlags);
1703   void *IP = nullptr;
1704   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1705     return SDValue(E, 0);
1706 
1707   auto *N = newSDNode<JumpTableSDNode>(JTI, VT, isTarget, TargetFlags);
1708   CSEMap.InsertNode(N, IP);
1709   InsertNode(N);
1710   return SDValue(N, 0);
1711 }
1712 
1713 SDValue SelectionDAG::getConstantPool(const Constant *C, EVT VT,
1714                                       MaybeAlign Alignment, int Offset,
1715                                       bool isTarget, unsigned TargetFlags) {
1716   assert((TargetFlags == 0 || isTarget) &&
1717          "Cannot set target flags on target-independent globals");
1718   if (!Alignment)
1719     Alignment = shouldOptForSize()
1720                     ? getDataLayout().getABITypeAlign(C->getType())
1721                     : getDataLayout().getPrefTypeAlign(C->getType());
1722   unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
1723   FoldingSetNodeID ID;
1724   AddNodeIDNode(ID, Opc, getVTList(VT), None);
1725   ID.AddInteger(Alignment->value());
1726   ID.AddInteger(Offset);
1727   ID.AddPointer(C);
1728   ID.AddInteger(TargetFlags);
1729   void *IP = nullptr;
1730   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1731     return SDValue(E, 0);
1732 
1733   auto *N = newSDNode<ConstantPoolSDNode>(isTarget, C, VT, Offset, *Alignment,
1734                                           TargetFlags);
1735   CSEMap.InsertNode(N, IP);
1736   InsertNode(N);
1737   SDValue V = SDValue(N, 0);
1738   NewSDValueDbgMsg(V, "Creating new constant pool: ", this);
1739   return V;
1740 }
1741 
1742 SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, EVT VT,
1743                                       MaybeAlign Alignment, int Offset,
1744                                       bool isTarget, unsigned TargetFlags) {
1745   assert((TargetFlags == 0 || isTarget) &&
1746          "Cannot set target flags on target-independent globals");
1747   if (!Alignment)
1748     Alignment = getDataLayout().getPrefTypeAlign(C->getType());
1749   unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
1750   FoldingSetNodeID ID;
1751   AddNodeIDNode(ID, Opc, getVTList(VT), None);
1752   ID.AddInteger(Alignment->value());
1753   ID.AddInteger(Offset);
1754   C->addSelectionDAGCSEId(ID);
1755   ID.AddInteger(TargetFlags);
1756   void *IP = nullptr;
1757   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1758     return SDValue(E, 0);
1759 
1760   auto *N = newSDNode<ConstantPoolSDNode>(isTarget, C, VT, Offset, *Alignment,
1761                                           TargetFlags);
1762   CSEMap.InsertNode(N, IP);
1763   InsertNode(N);
1764   return SDValue(N, 0);
1765 }
1766 
1767 SDValue SelectionDAG::getTargetIndex(int Index, EVT VT, int64_t Offset,
1768                                      unsigned TargetFlags) {
1769   FoldingSetNodeID ID;
1770   AddNodeIDNode(ID, ISD::TargetIndex, getVTList(VT), None);
1771   ID.AddInteger(Index);
1772   ID.AddInteger(Offset);
1773   ID.AddInteger(TargetFlags);
1774   void *IP = nullptr;
1775   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1776     return SDValue(E, 0);
1777 
1778   auto *N = newSDNode<TargetIndexSDNode>(Index, VT, Offset, TargetFlags);
1779   CSEMap.InsertNode(N, IP);
1780   InsertNode(N);
1781   return SDValue(N, 0);
1782 }
1783 
1784 SDValue SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
1785   FoldingSetNodeID ID;
1786   AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), None);
1787   ID.AddPointer(MBB);
1788   void *IP = nullptr;
1789   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
1790     return SDValue(E, 0);
1791 
1792   auto *N = newSDNode<BasicBlockSDNode>(MBB);
1793   CSEMap.InsertNode(N, IP);
1794   InsertNode(N);
1795   return SDValue(N, 0);
1796 }
1797 
1798 SDValue SelectionDAG::getValueType(EVT VT) {
1799   if (VT.isSimple() && (unsigned)VT.getSimpleVT().SimpleTy >=
1800       ValueTypeNodes.size())
1801     ValueTypeNodes.resize(VT.getSimpleVT().SimpleTy+1);
1802 
1803   SDNode *&N = VT.isExtended() ?
1804     ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT().SimpleTy];
1805 
1806   if (N) return SDValue(N, 0);
1807   N = newSDNode<VTSDNode>(VT);
1808   InsertNode(N);
1809   return SDValue(N, 0);
1810 }
1811 
1812 SDValue SelectionDAG::getExternalSymbol(const char *Sym, EVT VT) {
1813   SDNode *&N = ExternalSymbols[Sym];
1814   if (N) return SDValue(N, 0);
1815   N = newSDNode<ExternalSymbolSDNode>(false, Sym, 0, VT);
1816   InsertNode(N);
1817   return SDValue(N, 0);
1818 }
1819 
1820 SDValue SelectionDAG::getMCSymbol(MCSymbol *Sym, EVT VT) {
1821   SDNode *&N = MCSymbols[Sym];
1822   if (N)
1823     return SDValue(N, 0);
1824   N = newSDNode<MCSymbolSDNode>(Sym, VT);
1825   InsertNode(N);
1826   return SDValue(N, 0);
1827 }
1828 
1829 SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, EVT VT,
1830                                               unsigned TargetFlags) {
1831   SDNode *&N =
1832       TargetExternalSymbols[std::pair<std::string, unsigned>(Sym, TargetFlags)];
1833   if (N) return SDValue(N, 0);
1834   N = newSDNode<ExternalSymbolSDNode>(true, Sym, TargetFlags, VT);
1835   InsertNode(N);
1836   return SDValue(N, 0);
1837 }
1838 
1839 SDValue SelectionDAG::getCondCode(ISD::CondCode Cond) {
1840   if ((unsigned)Cond >= CondCodeNodes.size())
1841     CondCodeNodes.resize(Cond+1);
1842 
1843   if (!CondCodeNodes[Cond]) {
1844     auto *N = newSDNode<CondCodeSDNode>(Cond);
1845     CondCodeNodes[Cond] = N;
1846     InsertNode(N);
1847   }
1848 
1849   return SDValue(CondCodeNodes[Cond], 0);
1850 }
1851 
1852 SDValue SelectionDAG::getStepVector(const SDLoc &DL, EVT ResVT) {
1853   APInt One(ResVT.getScalarSizeInBits(), 1);
1854   return getStepVector(DL, ResVT, One);
1855 }
1856 
1857 SDValue SelectionDAG::getStepVector(const SDLoc &DL, EVT ResVT, APInt StepVal) {
1858   assert(ResVT.getScalarSizeInBits() == StepVal.getBitWidth());
1859   if (ResVT.isScalableVector())
1860     return getNode(
1861         ISD::STEP_VECTOR, DL, ResVT,
1862         getTargetConstant(StepVal, DL, ResVT.getVectorElementType()));
1863 
1864   SmallVector<SDValue, 16> OpsStepConstants;
1865   for (uint64_t i = 0; i < ResVT.getVectorNumElements(); i++)
1866     OpsStepConstants.push_back(
1867         getConstant(StepVal * i, DL, ResVT.getVectorElementType()));
1868   return getBuildVector(ResVT, DL, OpsStepConstants);
1869 }
1870 
1871 /// Swaps the values of N1 and N2. Swaps all indices in the shuffle mask M that
1872 /// point at N1 to point at N2 and indices that point at N2 to point at N1.
1873 static void commuteShuffle(SDValue &N1, SDValue &N2, MutableArrayRef<int> M) {
1874   std::swap(N1, N2);
1875   ShuffleVectorSDNode::commuteMask(M);
1876 }
1877 
1878 SDValue SelectionDAG::getVectorShuffle(EVT VT, const SDLoc &dl, SDValue N1,
1879                                        SDValue N2, ArrayRef<int> Mask) {
1880   assert(VT.getVectorNumElements() == Mask.size() &&
1881          "Must have the same number of vector elements as mask elements!");
1882   assert(VT == N1.getValueType() && VT == N2.getValueType() &&
1883          "Invalid VECTOR_SHUFFLE");
1884 
1885   // Canonicalize shuffle undef, undef -> undef
1886   if (N1.isUndef() && N2.isUndef())
1887     return getUNDEF(VT);
1888 
1889   // Validate that all indices in Mask are within the range of the elements
1890   // input to the shuffle.
1891   int NElts = Mask.size();
1892   assert(llvm::all_of(Mask,
1893                       [&](int M) { return M < (NElts * 2) && M >= -1; }) &&
1894          "Index out of range");
1895 
1896   // Copy the mask so we can do any needed cleanup.
1897   SmallVector<int, 8> MaskVec(Mask.begin(), Mask.end());
1898 
1899   // Canonicalize shuffle v, v -> v, undef
1900   if (N1 == N2) {
1901     N2 = getUNDEF(VT);
1902     for (int i = 0; i != NElts; ++i)
1903       if (MaskVec[i] >= NElts) MaskVec[i] -= NElts;
1904   }
1905 
1906   // Canonicalize shuffle undef, v -> v, undef.  Commute the shuffle mask.
1907   if (N1.isUndef())
1908     commuteShuffle(N1, N2, MaskVec);
1909 
1910   if (TLI->hasVectorBlend()) {
1911     // If shuffling a splat, try to blend the splat instead. We do this here so
1912     // that even when this arises during lowering we don't have to re-handle it.
1913     auto BlendSplat = [&](BuildVectorSDNode *BV, int Offset) {
1914       BitVector UndefElements;
1915       SDValue Splat = BV->getSplatValue(&UndefElements);
1916       if (!Splat)
1917         return;
1918 
1919       for (int i = 0; i < NElts; ++i) {
1920         if (MaskVec[i] < Offset || MaskVec[i] >= (Offset + NElts))
1921           continue;
1922 
1923         // If this input comes from undef, mark it as such.
1924         if (UndefElements[MaskVec[i] - Offset]) {
1925           MaskVec[i] = -1;
1926           continue;
1927         }
1928 
1929         // If we can blend a non-undef lane, use that instead.
1930         if (!UndefElements[i])
1931           MaskVec[i] = i + Offset;
1932       }
1933     };
1934     if (auto *N1BV = dyn_cast<BuildVectorSDNode>(N1))
1935       BlendSplat(N1BV, 0);
1936     if (auto *N2BV = dyn_cast<BuildVectorSDNode>(N2))
1937       BlendSplat(N2BV, NElts);
1938   }
1939 
1940   // Canonicalize all index into lhs, -> shuffle lhs, undef
1941   // Canonicalize all index into rhs, -> shuffle rhs, undef
1942   bool AllLHS = true, AllRHS = true;
1943   bool N2Undef = N2.isUndef();
1944   for (int i = 0; i != NElts; ++i) {
1945     if (MaskVec[i] >= NElts) {
1946       if (N2Undef)
1947         MaskVec[i] = -1;
1948       else
1949         AllLHS = false;
1950     } else if (MaskVec[i] >= 0) {
1951       AllRHS = false;
1952     }
1953   }
1954   if (AllLHS && AllRHS)
1955     return getUNDEF(VT);
1956   if (AllLHS && !N2Undef)
1957     N2 = getUNDEF(VT);
1958   if (AllRHS) {
1959     N1 = getUNDEF(VT);
1960     commuteShuffle(N1, N2, MaskVec);
1961   }
1962   // Reset our undef status after accounting for the mask.
1963   N2Undef = N2.isUndef();
1964   // Re-check whether both sides ended up undef.
1965   if (N1.isUndef() && N2Undef)
1966     return getUNDEF(VT);
1967 
1968   // If Identity shuffle return that node.
1969   bool Identity = true, AllSame = true;
1970   for (int i = 0; i != NElts; ++i) {
1971     if (MaskVec[i] >= 0 && MaskVec[i] != i) Identity = false;
1972     if (MaskVec[i] != MaskVec[0]) AllSame = false;
1973   }
1974   if (Identity && NElts)
1975     return N1;
1976 
1977   // Shuffling a constant splat doesn't change the result.
1978   if (N2Undef) {
1979     SDValue V = N1;
1980 
1981     // Look through any bitcasts. We check that these don't change the number
1982     // (and size) of elements and just changes their types.
1983     while (V.getOpcode() == ISD::BITCAST)
1984       V = V->getOperand(0);
1985 
1986     // A splat should always show up as a build vector node.
1987     if (auto *BV = dyn_cast<BuildVectorSDNode>(V)) {
1988       BitVector UndefElements;
1989       SDValue Splat = BV->getSplatValue(&UndefElements);
1990       // If this is a splat of an undef, shuffling it is also undef.
1991       if (Splat && Splat.isUndef())
1992         return getUNDEF(VT);
1993 
1994       bool SameNumElts =
1995           V.getValueType().getVectorNumElements() == VT.getVectorNumElements();
1996 
1997       // We only have a splat which can skip shuffles if there is a splatted
1998       // value and no undef lanes rearranged by the shuffle.
1999       if (Splat && UndefElements.none()) {
2000         // Splat of <x, x, ..., x>, return <x, x, ..., x>, provided that the
2001         // number of elements match or the value splatted is a zero constant.
2002         if (SameNumElts)
2003           return N1;
2004         if (auto *C = dyn_cast<ConstantSDNode>(Splat))
2005           if (C->isZero())
2006             return N1;
2007       }
2008 
2009       // If the shuffle itself creates a splat, build the vector directly.
2010       if (AllSame && SameNumElts) {
2011         EVT BuildVT = BV->getValueType(0);
2012         const SDValue &Splatted = BV->getOperand(MaskVec[0]);
2013         SDValue NewBV = getSplatBuildVector(BuildVT, dl, Splatted);
2014 
2015         // We may have jumped through bitcasts, so the type of the
2016         // BUILD_VECTOR may not match the type of the shuffle.
2017         if (BuildVT != VT)
2018           NewBV = getNode(ISD::BITCAST, dl, VT, NewBV);
2019         return NewBV;
2020       }
2021     }
2022   }
2023 
2024   FoldingSetNodeID ID;
2025   SDValue Ops[2] = { N1, N2 };
2026   AddNodeIDNode(ID, ISD::VECTOR_SHUFFLE, getVTList(VT), Ops);
2027   for (int i = 0; i != NElts; ++i)
2028     ID.AddInteger(MaskVec[i]);
2029 
2030   void* IP = nullptr;
2031   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP))
2032     return SDValue(E, 0);
2033 
2034   // Allocate the mask array for the node out of the BumpPtrAllocator, since
2035   // SDNode doesn't have access to it.  This memory will be "leaked" when
2036   // the node is deallocated, but recovered when the NodeAllocator is released.
2037   int *MaskAlloc = OperandAllocator.Allocate<int>(NElts);
2038   llvm::copy(MaskVec, MaskAlloc);
2039 
2040   auto *N = newSDNode<ShuffleVectorSDNode>(VT, dl.getIROrder(),
2041                                            dl.getDebugLoc(), MaskAlloc);
2042   createOperands(N, Ops);
2043 
2044   CSEMap.InsertNode(N, IP);
2045   InsertNode(N);
2046   SDValue V = SDValue(N, 0);
2047   NewSDValueDbgMsg(V, "Creating new node: ", this);
2048   return V;
2049 }
2050 
2051 SDValue SelectionDAG::getCommutedVectorShuffle(const ShuffleVectorSDNode &SV) {
2052   EVT VT = SV.getValueType(0);
2053   SmallVector<int, 8> MaskVec(SV.getMask().begin(), SV.getMask().end());
2054   ShuffleVectorSDNode::commuteMask(MaskVec);
2055 
2056   SDValue Op0 = SV.getOperand(0);
2057   SDValue Op1 = SV.getOperand(1);
2058   return getVectorShuffle(VT, SDLoc(&SV), Op1, Op0, MaskVec);
2059 }
2060 
2061 SDValue SelectionDAG::getRegister(unsigned RegNo, EVT VT) {
2062   FoldingSetNodeID ID;
2063   AddNodeIDNode(ID, ISD::Register, getVTList(VT), None);
2064   ID.AddInteger(RegNo);
2065   void *IP = nullptr;
2066   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
2067     return SDValue(E, 0);
2068 
2069   auto *N = newSDNode<RegisterSDNode>(RegNo, VT);
2070   N->SDNodeBits.IsDivergent = TLI->isSDNodeSourceOfDivergence(N, FLI, DA);
2071   CSEMap.InsertNode(N, IP);
2072   InsertNode(N);
2073   return SDValue(N, 0);
2074 }
2075 
2076 SDValue SelectionDAG::getRegisterMask(const uint32_t *RegMask) {
2077   FoldingSetNodeID ID;
2078   AddNodeIDNode(ID, ISD::RegisterMask, getVTList(MVT::Untyped), None);
2079   ID.AddPointer(RegMask);
2080   void *IP = nullptr;
2081   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
2082     return SDValue(E, 0);
2083 
2084   auto *N = newSDNode<RegisterMaskSDNode>(RegMask);
2085   CSEMap.InsertNode(N, IP);
2086   InsertNode(N);
2087   return SDValue(N, 0);
2088 }
2089 
2090 SDValue SelectionDAG::getEHLabel(const SDLoc &dl, SDValue Root,
2091                                  MCSymbol *Label) {
2092   return getLabelNode(ISD::EH_LABEL, dl, Root, Label);
2093 }
2094 
2095 SDValue SelectionDAG::getLabelNode(unsigned Opcode, const SDLoc &dl,
2096                                    SDValue Root, MCSymbol *Label) {
2097   FoldingSetNodeID ID;
2098   SDValue Ops[] = { Root };
2099   AddNodeIDNode(ID, Opcode, getVTList(MVT::Other), Ops);
2100   ID.AddPointer(Label);
2101   void *IP = nullptr;
2102   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
2103     return SDValue(E, 0);
2104 
2105   auto *N =
2106       newSDNode<LabelSDNode>(Opcode, dl.getIROrder(), dl.getDebugLoc(), Label);
2107   createOperands(N, Ops);
2108 
2109   CSEMap.InsertNode(N, IP);
2110   InsertNode(N);
2111   return SDValue(N, 0);
2112 }
2113 
2114 SDValue SelectionDAG::getBlockAddress(const BlockAddress *BA, EVT VT,
2115                                       int64_t Offset, bool isTarget,
2116                                       unsigned TargetFlags) {
2117   unsigned Opc = isTarget ? ISD::TargetBlockAddress : ISD::BlockAddress;
2118 
2119   FoldingSetNodeID ID;
2120   AddNodeIDNode(ID, Opc, getVTList(VT), None);
2121   ID.AddPointer(BA);
2122   ID.AddInteger(Offset);
2123   ID.AddInteger(TargetFlags);
2124   void *IP = nullptr;
2125   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
2126     return SDValue(E, 0);
2127 
2128   auto *N = newSDNode<BlockAddressSDNode>(Opc, VT, BA, Offset, TargetFlags);
2129   CSEMap.InsertNode(N, IP);
2130   InsertNode(N);
2131   return SDValue(N, 0);
2132 }
2133 
2134 SDValue SelectionDAG::getSrcValue(const Value *V) {
2135   FoldingSetNodeID ID;
2136   AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), None);
2137   ID.AddPointer(V);
2138 
2139   void *IP = nullptr;
2140   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
2141     return SDValue(E, 0);
2142 
2143   auto *N = newSDNode<SrcValueSDNode>(V);
2144   CSEMap.InsertNode(N, IP);
2145   InsertNode(N);
2146   return SDValue(N, 0);
2147 }
2148 
2149 SDValue SelectionDAG::getMDNode(const MDNode *MD) {
2150   FoldingSetNodeID ID;
2151   AddNodeIDNode(ID, ISD::MDNODE_SDNODE, getVTList(MVT::Other), None);
2152   ID.AddPointer(MD);
2153 
2154   void *IP = nullptr;
2155   if (SDNode *E = FindNodeOrInsertPos(ID, IP))
2156     return SDValue(E, 0);
2157 
2158   auto *N = newSDNode<MDNodeSDNode>(MD);
2159   CSEMap.InsertNode(N, IP);
2160   InsertNode(N);
2161   return SDValue(N, 0);
2162 }
2163 
2164 SDValue SelectionDAG::getBitcast(EVT VT, SDValue V) {
2165   if (VT == V.getValueType())
2166     return V;
2167 
2168   return getNode(ISD::BITCAST, SDLoc(V), VT, V);
2169 }
2170 
2171 SDValue SelectionDAG::getAddrSpaceCast(const SDLoc &dl, EVT VT, SDValue Ptr,
2172                                        unsigned SrcAS, unsigned DestAS) {
2173   SDValue Ops[] = {Ptr};
2174   FoldingSetNodeID ID;
2175   AddNodeIDNode(ID, ISD::ADDRSPACECAST, getVTList(VT), Ops);
2176   ID.AddInteger(SrcAS);
2177   ID.AddInteger(DestAS);
2178 
2179   void *IP = nullptr;
2180   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP))
2181     return SDValue(E, 0);
2182 
2183   auto *N = newSDNode<AddrSpaceCastSDNode>(dl.getIROrder(), dl.getDebugLoc(),
2184                                            VT, SrcAS, DestAS);
2185   createOperands(N, Ops);
2186 
2187   CSEMap.InsertNode(N, IP);
2188   InsertNode(N);
2189   return SDValue(N, 0);
2190 }
2191 
2192 SDValue SelectionDAG::getFreeze(SDValue V) {
2193   return getNode(ISD::FREEZE, SDLoc(V), V.getValueType(), V);
2194 }
2195 
2196 /// getShiftAmountOperand - Return the specified value casted to
2197 /// the target's desired shift amount type.
2198 SDValue SelectionDAG::getShiftAmountOperand(EVT LHSTy, SDValue Op) {
2199   EVT OpTy = Op.getValueType();
2200   EVT ShTy = TLI->getShiftAmountTy(LHSTy, getDataLayout());
2201   if (OpTy == ShTy || OpTy.isVector()) return Op;
2202 
2203   return getZExtOrTrunc(Op, SDLoc(Op), ShTy);
2204 }
2205 
2206 SDValue SelectionDAG::expandVAArg(SDNode *Node) {
2207   SDLoc dl(Node);
2208   const TargetLowering &TLI = getTargetLoweringInfo();
2209   const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
2210   EVT VT = Node->getValueType(0);
2211   SDValue Tmp1 = Node->getOperand(0);
2212   SDValue Tmp2 = Node->getOperand(1);
2213   const MaybeAlign MA(Node->getConstantOperandVal(3));
2214 
2215   SDValue VAListLoad = getLoad(TLI.getPointerTy(getDataLayout()), dl, Tmp1,
2216                                Tmp2, MachinePointerInfo(V));
2217   SDValue VAList = VAListLoad;
2218 
2219   if (MA && *MA > TLI.getMinStackArgumentAlignment()) {
2220     VAList = getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
2221                      getConstant(MA->value() - 1, dl, VAList.getValueType()));
2222 
2223     VAList =
2224         getNode(ISD::AND, dl, VAList.getValueType(), VAList,
2225                 getConstant(-(int64_t)MA->value(), dl, VAList.getValueType()));
2226   }
2227 
2228   // Increment the pointer, VAList, to the next vaarg
2229   Tmp1 = getNode(ISD::ADD, dl, VAList.getValueType(), VAList,
2230                  getConstant(getDataLayout().getTypeAllocSize(
2231                                                VT.getTypeForEVT(*getContext())),
2232                              dl, VAList.getValueType()));
2233   // Store the incremented VAList to the legalized pointer
2234   Tmp1 =
2235       getStore(VAListLoad.getValue(1), dl, Tmp1, Tmp2, MachinePointerInfo(V));
2236   // Load the actual argument out of the pointer VAList
2237   return getLoad(VT, dl, Tmp1, VAList, MachinePointerInfo());
2238 }
2239 
2240 SDValue SelectionDAG::expandVACopy(SDNode *Node) {
2241   SDLoc dl(Node);
2242   const TargetLowering &TLI = getTargetLoweringInfo();
2243   // This defaults to loading a pointer from the input and storing it to the
2244   // output, returning the chain.
2245   const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
2246   const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
2247   SDValue Tmp1 =
2248       getLoad(TLI.getPointerTy(getDataLayout()), dl, Node->getOperand(0),
2249               Node->getOperand(2), MachinePointerInfo(VS));
2250   return getStore(Tmp1.getValue(1), dl, Tmp1, Node->getOperand(1),
2251                   MachinePointerInfo(VD));
2252 }
2253 
2254 Align SelectionDAG::getReducedAlign(EVT VT, bool UseABI) {
2255   const DataLayout &DL = getDataLayout();
2256   Type *Ty = VT.getTypeForEVT(*getContext());
2257   Align RedAlign = UseABI ? DL.getABITypeAlign(Ty) : DL.getPrefTypeAlign(Ty);
2258 
2259   if (TLI->isTypeLegal(VT) || !VT.isVector())
2260     return RedAlign;
2261 
2262   const TargetFrameLowering *TFI = MF->getSubtarget().getFrameLowering();
2263   const Align StackAlign = TFI->getStackAlign();
2264 
2265   // See if we can choose a smaller ABI alignment in cases where it's an
2266   // illegal vector type that will get broken down.
2267   if (RedAlign > StackAlign) {
2268     EVT IntermediateVT;
2269     MVT RegisterVT;
2270     unsigned NumIntermediates;
2271     TLI->getVectorTypeBreakdown(*getContext(), VT, IntermediateVT,
2272                                 NumIntermediates, RegisterVT);
2273     Ty = IntermediateVT.getTypeForEVT(*getContext());
2274     Align RedAlign2 = UseABI ? DL.getABITypeAlign(Ty) : DL.getPrefTypeAlign(Ty);
2275     if (RedAlign2 < RedAlign)
2276       RedAlign = RedAlign2;
2277   }
2278 
2279   return RedAlign;
2280 }
2281 
2282 SDValue SelectionDAG::CreateStackTemporary(TypeSize Bytes, Align Alignment) {
2283   MachineFrameInfo &MFI = MF->getFrameInfo();
2284   const TargetFrameLowering *TFI = MF->getSubtarget().getFrameLowering();
2285   int StackID = 0;
2286   if (Bytes.isScalable())
2287     StackID = TFI->getStackIDForScalableVectors();
2288   // The stack id gives an indication of whether the object is scalable or
2289   // not, so it's safe to pass in the minimum size here.
2290   int FrameIdx = MFI.CreateStackObject(Bytes.getKnownMinSize(), Alignment,
2291                                        false, nullptr, StackID);
2292   return getFrameIndex(FrameIdx, TLI->getFrameIndexTy(getDataLayout()));
2293 }
2294 
2295 SDValue SelectionDAG::CreateStackTemporary(EVT VT, unsigned minAlign) {
2296   Type *Ty = VT.getTypeForEVT(*getContext());
2297   Align StackAlign =
2298       std::max(getDataLayout().getPrefTypeAlign(Ty), Align(minAlign));
2299   return CreateStackTemporary(VT.getStoreSize(), StackAlign);
2300 }
2301 
2302 SDValue SelectionDAG::CreateStackTemporary(EVT VT1, EVT VT2) {
2303   TypeSize VT1Size = VT1.getStoreSize();
2304   TypeSize VT2Size = VT2.getStoreSize();
2305   assert(VT1Size.isScalable() == VT2Size.isScalable() &&
2306          "Don't know how to choose the maximum size when creating a stack "
2307          "temporary");
2308   TypeSize Bytes =
2309       VT1Size.getKnownMinSize() > VT2Size.getKnownMinSize() ? VT1Size : VT2Size;
2310 
2311   Type *Ty1 = VT1.getTypeForEVT(*getContext());
2312   Type *Ty2 = VT2.getTypeForEVT(*getContext());
2313   const DataLayout &DL = getDataLayout();
2314   Align Align = std::max(DL.getPrefTypeAlign(Ty1), DL.getPrefTypeAlign(Ty2));
2315   return CreateStackTemporary(Bytes, Align);
2316 }
2317 
2318 SDValue SelectionDAG::FoldSetCC(EVT VT, SDValue N1, SDValue N2,
2319                                 ISD::CondCode Cond, const SDLoc &dl) {
2320   EVT OpVT = N1.getValueType();
2321 
2322   // These setcc operations always fold.
2323   switch (Cond) {
2324   default: break;
2325   case ISD::SETFALSE:
2326   case ISD::SETFALSE2: return getBoolConstant(false, dl, VT, OpVT);
2327   case ISD::SETTRUE:
2328   case ISD::SETTRUE2: return getBoolConstant(true, dl, VT, OpVT);
2329 
2330   case ISD::SETOEQ:
2331   case ISD::SETOGT:
2332   case ISD::SETOGE:
2333   case ISD::SETOLT:
2334   case ISD::SETOLE:
2335   case ISD::SETONE:
2336   case ISD::SETO:
2337   case ISD::SETUO:
2338   case ISD::SETUEQ:
2339   case ISD::SETUNE:
2340     assert(!OpVT.isInteger() && "Illegal setcc for integer!");
2341     break;
2342   }
2343 
2344   if (OpVT.isInteger()) {
2345     // For EQ and NE, we can always pick a value for the undef to make the
2346     // predicate pass or fail, so we can return undef.
2347     // Matches behavior in llvm::ConstantFoldCompareInstruction.
2348     // icmp eq/ne X, undef -> undef.
2349     if ((N1.isUndef() || N2.isUndef()) &&
2350         (Cond == ISD::SETEQ || Cond == ISD::SETNE))
2351       return getUNDEF(VT);
2352 
2353     // If both operands are undef, we can return undef for int comparison.
2354     // icmp undef, undef -> undef.
2355     if (N1.isUndef() && N2.isUndef())
2356       return getUNDEF(VT);
2357 
2358     // icmp X, X -> true/false
2359     // icmp X, undef -> true/false because undef could be X.
2360     if (N1 == N2)
2361       return getBoolConstant(ISD::isTrueWhenEqual(Cond), dl, VT, OpVT);
2362   }
2363 
2364   if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2)) {
2365     const APInt &C2 = N2C->getAPIntValue();
2366     if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1)) {
2367       const APInt &C1 = N1C->getAPIntValue();
2368 
2369       return getBoolConstant(ICmpInst::compare(C1, C2, getICmpCondCode(Cond)),
2370                              dl, VT, OpVT);
2371     }
2372   }
2373 
2374   auto *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
2375   auto *N2CFP = dyn_cast<ConstantFPSDNode>(N2);
2376 
2377   if (N1CFP && N2CFP) {
2378     APFloat::cmpResult R = N1CFP->getValueAPF().compare(N2CFP->getValueAPF());
2379     switch (Cond) {
2380     default: break;
2381     case ISD::SETEQ:  if (R==APFloat::cmpUnordered)
2382                         return getUNDEF(VT);
2383                       LLVM_FALLTHROUGH;
2384     case ISD::SETOEQ: return getBoolConstant(R==APFloat::cmpEqual, dl, VT,
2385                                              OpVT);
2386     case ISD::SETNE:  if (R==APFloat::cmpUnordered)
2387                         return getUNDEF(VT);
2388                       LLVM_FALLTHROUGH;
2389     case ISD::SETONE: return getBoolConstant(R==APFloat::cmpGreaterThan ||
2390                                              R==APFloat::cmpLessThan, dl, VT,
2391                                              OpVT);
2392     case ISD::SETLT:  if (R==APFloat::cmpUnordered)
2393                         return getUNDEF(VT);
2394                       LLVM_FALLTHROUGH;
2395     case ISD::SETOLT: return getBoolConstant(R==APFloat::cmpLessThan, dl, VT,
2396                                              OpVT);
2397     case ISD::SETGT:  if (R==APFloat::cmpUnordered)
2398                         return getUNDEF(VT);
2399                       LLVM_FALLTHROUGH;
2400     case ISD::SETOGT: return getBoolConstant(R==APFloat::cmpGreaterThan, dl,
2401                                              VT, OpVT);
2402     case ISD::SETLE:  if (R==APFloat::cmpUnordered)
2403                         return getUNDEF(VT);
2404                       LLVM_FALLTHROUGH;
2405     case ISD::SETOLE: return getBoolConstant(R==APFloat::cmpLessThan ||
2406                                              R==APFloat::cmpEqual, dl, VT,
2407                                              OpVT);
2408     case ISD::SETGE:  if (R==APFloat::cmpUnordered)
2409                         return getUNDEF(VT);
2410                       LLVM_FALLTHROUGH;
2411     case ISD::SETOGE: return getBoolConstant(R==APFloat::cmpGreaterThan ||
2412                                          R==APFloat::cmpEqual, dl, VT, OpVT);
2413     case ISD::SETO:   return getBoolConstant(R!=APFloat::cmpUnordered, dl, VT,
2414                                              OpVT);
2415     case ISD::SETUO:  return getBoolConstant(R==APFloat::cmpUnordered, dl, VT,
2416                                              OpVT);
2417     case ISD::SETUEQ: return getBoolConstant(R==APFloat::cmpUnordered ||
2418                                              R==APFloat::cmpEqual, dl, VT,
2419                                              OpVT);
2420     case ISD::SETUNE: return getBoolConstant(R!=APFloat::cmpEqual, dl, VT,
2421                                              OpVT);
2422     case ISD::SETULT: return getBoolConstant(R==APFloat::cmpUnordered ||
2423                                              R==APFloat::cmpLessThan, dl, VT,
2424                                              OpVT);
2425     case ISD::SETUGT: return getBoolConstant(R==APFloat::cmpGreaterThan ||
2426                                              R==APFloat::cmpUnordered, dl, VT,
2427                                              OpVT);
2428     case ISD::SETULE: return getBoolConstant(R!=APFloat::cmpGreaterThan, dl,
2429                                              VT, OpVT);
2430     case ISD::SETUGE: return getBoolConstant(R!=APFloat::cmpLessThan, dl, VT,
2431                                              OpVT);
2432     }
2433   } else if (N1CFP && OpVT.isSimple() && !N2.isUndef()) {
2434     // Ensure that the constant occurs on the RHS.
2435     ISD::CondCode SwappedCond = ISD::getSetCCSwappedOperands(Cond);
2436     if (!TLI->isCondCodeLegal(SwappedCond, OpVT.getSimpleVT()))
2437       return SDValue();
2438     return getSetCC(dl, VT, N2, N1, SwappedCond);
2439   } else if ((N2CFP && N2CFP->getValueAPF().isNaN()) ||
2440              (OpVT.isFloatingPoint() && (N1.isUndef() || N2.isUndef()))) {
2441     // If an operand is known to be a nan (or undef that could be a nan), we can
2442     // fold it.
2443     // Choosing NaN for the undef will always make unordered comparison succeed
2444     // and ordered comparison fails.
2445     // Matches behavior in llvm::ConstantFoldCompareInstruction.
2446     switch (ISD::getUnorderedFlavor(Cond)) {
2447     default:
2448       llvm_unreachable("Unknown flavor!");
2449     case 0: // Known false.
2450       return getBoolConstant(false, dl, VT, OpVT);
2451     case 1: // Known true.
2452       return getBoolConstant(true, dl, VT, OpVT);
2453     case 2: // Undefined.
2454       return getUNDEF(VT);
2455     }
2456   }
2457 
2458   // Could not fold it.
2459   return SDValue();
2460 }
2461 
2462 /// See if the specified operand can be simplified with the knowledge that only
2463 /// the bits specified by DemandedBits are used.
2464 /// TODO: really we should be making this into the DAG equivalent of
2465 /// SimplifyMultipleUseDemandedBits and not generate any new nodes.
2466 SDValue SelectionDAG::GetDemandedBits(SDValue V, const APInt &DemandedBits) {
2467   EVT VT = V.getValueType();
2468 
2469   if (VT.isScalableVector())
2470     return SDValue();
2471 
2472   APInt DemandedElts = VT.isVector()
2473                            ? APInt::getAllOnes(VT.getVectorNumElements())
2474                            : APInt(1, 1);
2475   return GetDemandedBits(V, DemandedBits, DemandedElts);
2476 }
2477 
2478 /// See if the specified operand can be simplified with the knowledge that only
2479 /// the bits specified by DemandedBits are used in the elements specified by
2480 /// DemandedElts.
2481 /// TODO: really we should be making this into the DAG equivalent of
2482 /// SimplifyMultipleUseDemandedBits and not generate any new nodes.
2483 SDValue SelectionDAG::GetDemandedBits(SDValue V, const APInt &DemandedBits,
2484                                       const APInt &DemandedElts) {
2485   switch (V.getOpcode()) {
2486   default:
2487     return TLI->SimplifyMultipleUseDemandedBits(V, DemandedBits, DemandedElts,
2488                                                 *this);
2489   case ISD::Constant: {
2490     const APInt &CVal = cast<ConstantSDNode>(V)->getAPIntValue();
2491     APInt NewVal = CVal & DemandedBits;
2492     if (NewVal != CVal)
2493       return getConstant(NewVal, SDLoc(V), V.getValueType());
2494     break;
2495   }
2496   case ISD::SRL:
2497     // Only look at single-use SRLs.
2498     if (!V.getNode()->hasOneUse())
2499       break;
2500     if (auto *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
2501       // See if we can recursively simplify the LHS.
2502       unsigned Amt = RHSC->getZExtValue();
2503 
2504       // Watch out for shift count overflow though.
2505       if (Amt >= DemandedBits.getBitWidth())
2506         break;
2507       APInt SrcDemandedBits = DemandedBits << Amt;
2508       if (SDValue SimplifyLHS =
2509               GetDemandedBits(V.getOperand(0), SrcDemandedBits))
2510         return getNode(ISD::SRL, SDLoc(V), V.getValueType(), SimplifyLHS,
2511                        V.getOperand(1));
2512     }
2513     break;
2514   }
2515   return SDValue();
2516 }
2517 
2518 /// SignBitIsZero - Return true if the sign bit of Op is known to be zero.  We
2519 /// use this predicate to simplify operations downstream.
2520 bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const {
2521   unsigned BitWidth = Op.getScalarValueSizeInBits();
2522   return MaskedValueIsZero(Op, APInt::getSignMask(BitWidth), Depth);
2523 }
2524 
2525 /// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero.  We use
2526 /// this predicate to simplify operations downstream.  Mask is known to be zero
2527 /// for bits that V cannot have.
2528 bool SelectionDAG::MaskedValueIsZero(SDValue V, const APInt &Mask,
2529                                      unsigned Depth) const {
2530   return Mask.isSubsetOf(computeKnownBits(V, Depth).Zero);
2531 }
2532 
2533 /// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero in
2534 /// DemandedElts.  We use this predicate to simplify operations downstream.
2535 /// Mask is known to be zero for bits that V cannot have.
2536 bool SelectionDAG::MaskedValueIsZero(SDValue V, const APInt &Mask,
2537                                      const APInt &DemandedElts,
2538                                      unsigned Depth) const {
2539   return Mask.isSubsetOf(computeKnownBits(V, DemandedElts, Depth).Zero);
2540 }
2541 
2542 /// MaskedValueIsAllOnes - Return true if '(Op & Mask) == Mask'.
2543 bool SelectionDAG::MaskedValueIsAllOnes(SDValue V, const APInt &Mask,
2544                                         unsigned Depth) const {
2545   return Mask.isSubsetOf(computeKnownBits(V, Depth).One);
2546 }
2547 
2548 /// isSplatValue - Return true if the vector V has the same value
2549 /// across all DemandedElts. For scalable vectors it does not make
2550 /// sense to specify which elements are demanded or undefined, therefore
2551 /// they are simply ignored.
2552 bool SelectionDAG::isSplatValue(SDValue V, const APInt &DemandedElts,
2553                                 APInt &UndefElts, unsigned Depth) const {
2554   unsigned Opcode = V.getOpcode();
2555   EVT VT = V.getValueType();
2556   assert(VT.isVector() && "Vector type expected");
2557 
2558   if (!VT.isScalableVector() && !DemandedElts)
2559     return false; // No demanded elts, better to assume we don't know anything.
2560 
2561   if (Depth >= MaxRecursionDepth)
2562     return false; // Limit search depth.
2563 
2564   // Deal with some common cases here that work for both fixed and scalable
2565   // vector types.
2566   switch (Opcode) {
2567   case ISD::SPLAT_VECTOR:
2568     UndefElts = V.getOperand(0).isUndef()
2569                     ? APInt::getAllOnes(DemandedElts.getBitWidth())
2570                     : APInt(DemandedElts.getBitWidth(), 0);
2571     return true;
2572   case ISD::ADD:
2573   case ISD::SUB:
2574   case ISD::AND:
2575   case ISD::XOR:
2576   case ISD::OR: {
2577     APInt UndefLHS, UndefRHS;
2578     SDValue LHS = V.getOperand(0);
2579     SDValue RHS = V.getOperand(1);
2580     if (isSplatValue(LHS, DemandedElts, UndefLHS, Depth + 1) &&
2581         isSplatValue(RHS, DemandedElts, UndefRHS, Depth + 1)) {
2582       UndefElts = UndefLHS | UndefRHS;
2583       return true;
2584     }
2585     return false;
2586   }
2587   case ISD::ABS:
2588   case ISD::TRUNCATE:
2589   case ISD::SIGN_EXTEND:
2590   case ISD::ZERO_EXTEND:
2591     return isSplatValue(V.getOperand(0), DemandedElts, UndefElts, Depth + 1);
2592   default:
2593     if (Opcode >= ISD::BUILTIN_OP_END || Opcode == ISD::INTRINSIC_WO_CHAIN ||
2594         Opcode == ISD::INTRINSIC_W_CHAIN || Opcode == ISD::INTRINSIC_VOID)
2595       return TLI->isSplatValueForTargetNode(V, DemandedElts, UndefElts, Depth);
2596     break;
2597 }
2598 
2599   // We don't support other cases than those above for scalable vectors at
2600   // the moment.
2601   if (VT.isScalableVector())
2602     return false;
2603 
2604   unsigned NumElts = VT.getVectorNumElements();
2605   assert(NumElts == DemandedElts.getBitWidth() && "Vector size mismatch");
2606   UndefElts = APInt::getZero(NumElts);
2607 
2608   switch (Opcode) {
2609   case ISD::BUILD_VECTOR: {
2610     SDValue Scl;
2611     for (unsigned i = 0; i != NumElts; ++i) {
2612       SDValue Op = V.getOperand(i);
2613       if (Op.isUndef()) {
2614         UndefElts.setBit(i);
2615         continue;
2616       }
2617       if (!DemandedElts[i])
2618         continue;
2619       if (Scl && Scl != Op)
2620         return false;
2621       Scl = Op;
2622     }
2623     return true;
2624   }
2625   case ISD::VECTOR_SHUFFLE: {
2626     // Check if this is a shuffle node doing a splat or a shuffle of a splat.
2627     APInt DemandedLHS = APInt::getNullValue(NumElts);
2628     APInt DemandedRHS = APInt::getNullValue(NumElts);
2629     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(V)->getMask();
2630     for (int i = 0; i != (int)NumElts; ++i) {
2631       int M = Mask[i];
2632       if (M < 0) {
2633         UndefElts.setBit(i);
2634         continue;
2635       }
2636       if (!DemandedElts[i])
2637         continue;
2638       if (M < (int)NumElts)
2639         DemandedLHS.setBit(M);
2640       else
2641         DemandedRHS.setBit(M - NumElts);
2642     }
2643 
2644     // If we aren't demanding either op, assume there's no splat.
2645     // If we are demanding both ops, assume there's no splat.
2646     if ((DemandedLHS.isZero() && DemandedRHS.isZero()) ||
2647         (!DemandedLHS.isZero() && !DemandedRHS.isZero()))
2648       return false;
2649 
2650     // See if the demanded elts of the source op is a splat or we only demand
2651     // one element, which should always be a splat.
2652     // TODO: Handle source ops splats with undefs.
2653     auto CheckSplatSrc = [&](SDValue Src, const APInt &SrcElts) {
2654       APInt SrcUndefs;
2655       return (SrcElts.countPopulation() == 1) ||
2656              (isSplatValue(Src, SrcElts, SrcUndefs, Depth + 1) &&
2657               (SrcElts & SrcUndefs).isZero());
2658     };
2659     if (!DemandedLHS.isZero())
2660       return CheckSplatSrc(V.getOperand(0), DemandedLHS);
2661     return CheckSplatSrc(V.getOperand(1), DemandedRHS);
2662   }
2663   case ISD::EXTRACT_SUBVECTOR: {
2664     // Offset the demanded elts by the subvector index.
2665     SDValue Src = V.getOperand(0);
2666     // We don't support scalable vectors at the moment.
2667     if (Src.getValueType().isScalableVector())
2668       return false;
2669     uint64_t Idx = V.getConstantOperandVal(1);
2670     unsigned NumSrcElts = Src.getValueType().getVectorNumElements();
2671     APInt UndefSrcElts;
2672     APInt DemandedSrcElts = DemandedElts.zextOrSelf(NumSrcElts).shl(Idx);
2673     if (isSplatValue(Src, DemandedSrcElts, UndefSrcElts, Depth + 1)) {
2674       UndefElts = UndefSrcElts.extractBits(NumElts, Idx);
2675       return true;
2676     }
2677     break;
2678   }
2679   case ISD::ANY_EXTEND_VECTOR_INREG:
2680   case ISD::SIGN_EXTEND_VECTOR_INREG:
2681   case ISD::ZERO_EXTEND_VECTOR_INREG: {
2682     // Widen the demanded elts by the src element count.
2683     SDValue Src = V.getOperand(0);
2684     // We don't support scalable vectors at the moment.
2685     if (Src.getValueType().isScalableVector())
2686       return false;
2687     unsigned NumSrcElts = Src.getValueType().getVectorNumElements();
2688     APInt UndefSrcElts;
2689     APInt DemandedSrcElts = DemandedElts.zextOrSelf(NumSrcElts);
2690     if (isSplatValue(Src, DemandedSrcElts, UndefSrcElts, Depth + 1)) {
2691       UndefElts = UndefSrcElts.truncOrSelf(NumElts);
2692       return true;
2693     }
2694     break;
2695   }
2696   case ISD::BITCAST: {
2697     SDValue Src = V.getOperand(0);
2698     EVT SrcVT = Src.getValueType();
2699     unsigned SrcBitWidth = SrcVT.getScalarSizeInBits();
2700     unsigned BitWidth = VT.getScalarSizeInBits();
2701 
2702     // Ignore bitcasts from unsupported types.
2703     // TODO: Add fp support?
2704     if (!SrcVT.isVector() || !SrcVT.isInteger() || !VT.isInteger())
2705       break;
2706 
2707     // Bitcast 'small element' vector to 'large element' vector.
2708     if ((BitWidth % SrcBitWidth) == 0) {
2709       // See if each sub element is a splat.
2710       unsigned Scale = BitWidth / SrcBitWidth;
2711       unsigned NumSrcElts = SrcVT.getVectorNumElements();
2712       APInt ScaledDemandedElts =
2713           APIntOps::ScaleBitMask(DemandedElts, NumSrcElts);
2714       for (unsigned I = 0; I != Scale; ++I) {
2715         APInt SubUndefElts;
2716         APInt SubDemandedElt = APInt::getOneBitSet(Scale, I);
2717         APInt SubDemandedElts = APInt::getSplat(NumSrcElts, SubDemandedElt);
2718         SubDemandedElts &= ScaledDemandedElts;
2719         if (!isSplatValue(Src, SubDemandedElts, SubUndefElts, Depth + 1))
2720           return false;
2721         // TODO: Add support for merging sub undef elements.
2722         if (SubDemandedElts.isSubsetOf(SubUndefElts))
2723           return false;
2724       }
2725       return true;
2726     }
2727     break;
2728   }
2729   }
2730 
2731   return false;
2732 }
2733 
2734 /// Helper wrapper to main isSplatValue function.
2735 bool SelectionDAG::isSplatValue(SDValue V, bool AllowUndefs) const {
2736   EVT VT = V.getValueType();
2737   assert(VT.isVector() && "Vector type expected");
2738 
2739   APInt UndefElts;
2740   APInt DemandedElts;
2741 
2742   // For now we don't support this with scalable vectors.
2743   if (!VT.isScalableVector())
2744     DemandedElts = APInt::getAllOnes(VT.getVectorNumElements());
2745   return isSplatValue(V, DemandedElts, UndefElts) &&
2746          (AllowUndefs || !UndefElts);
2747 }
2748 
2749 SDValue SelectionDAG::getSplatSourceVector(SDValue V, int &SplatIdx) {
2750   V = peekThroughExtractSubvectors(V);
2751 
2752   EVT VT = V.getValueType();
2753   unsigned Opcode = V.getOpcode();
2754   switch (Opcode) {
2755   default: {
2756     APInt UndefElts;
2757     APInt DemandedElts;
2758 
2759     if (!VT.isScalableVector())
2760       DemandedElts = APInt::getAllOnes(VT.getVectorNumElements());
2761 
2762     if (isSplatValue(V, DemandedElts, UndefElts)) {
2763       if (VT.isScalableVector()) {
2764         // DemandedElts and UndefElts are ignored for scalable vectors, since
2765         // the only supported cases are SPLAT_VECTOR nodes.
2766         SplatIdx = 0;
2767       } else {
2768         // Handle case where all demanded elements are UNDEF.
2769         if (DemandedElts.isSubsetOf(UndefElts)) {
2770           SplatIdx = 0;
2771           return getUNDEF(VT);
2772         }
2773         SplatIdx = (UndefElts & DemandedElts).countTrailingOnes();
2774       }
2775       return V;
2776     }
2777     break;
2778   }
2779   case ISD::SPLAT_VECTOR:
2780     SplatIdx = 0;
2781     return V;
2782   case ISD::VECTOR_SHUFFLE: {
2783     if (VT.isScalableVector())
2784       return SDValue();
2785 
2786     // Check if this is a shuffle node doing a splat.
2787     // TODO - remove this and rely purely on SelectionDAG::isSplatValue,
2788     // getTargetVShiftNode currently struggles without the splat source.
2789     auto *SVN = cast<ShuffleVectorSDNode>(V);
2790     if (!SVN->isSplat())
2791       break;
2792     int Idx = SVN->getSplatIndex();
2793     int NumElts = V.getValueType().getVectorNumElements();
2794     SplatIdx = Idx % NumElts;
2795     return V.getOperand(Idx / NumElts);
2796   }
2797   }
2798 
2799   return SDValue();
2800 }
2801 
2802 SDValue SelectionDAG::getSplatValue(SDValue V, bool LegalTypes) {
2803   int SplatIdx;
2804   if (SDValue SrcVector = getSplatSourceVector(V, SplatIdx)) {
2805     EVT SVT = SrcVector.getValueType().getScalarType();
2806     EVT LegalSVT = SVT;
2807     if (LegalTypes && !TLI->isTypeLegal(SVT)) {
2808       if (!SVT.isInteger())
2809         return SDValue();
2810       LegalSVT = TLI->getTypeToTransformTo(*getContext(), LegalSVT);
2811       if (LegalSVT.bitsLT(SVT))
2812         return SDValue();
2813     }
2814     return getNode(ISD::EXTRACT_VECTOR_ELT, SDLoc(V), LegalSVT, SrcVector,
2815                    getVectorIdxConstant(SplatIdx, SDLoc(V)));
2816   }
2817   return SDValue();
2818 }
2819 
2820 const APInt *
2821 SelectionDAG::getValidShiftAmountConstant(SDValue V,
2822                                           const APInt &DemandedElts) const {
2823   assert((V.getOpcode() == ISD::SHL || V.getOpcode() == ISD::SRL ||
2824           V.getOpcode() == ISD::SRA) &&
2825          "Unknown shift node");
2826   unsigned BitWidth = V.getScalarValueSizeInBits();
2827   if (ConstantSDNode *SA = isConstOrConstSplat(V.getOperand(1), DemandedElts)) {
2828     // Shifting more than the bitwidth is not valid.
2829     const APInt &ShAmt = SA->getAPIntValue();
2830     if (ShAmt.ult(BitWidth))
2831       return &ShAmt;
2832   }
2833   return nullptr;
2834 }
2835 
2836 const APInt *SelectionDAG::getValidMinimumShiftAmountConstant(
2837     SDValue V, const APInt &DemandedElts) const {
2838   assert((V.getOpcode() == ISD::SHL || V.getOpcode() == ISD::SRL ||
2839           V.getOpcode() == ISD::SRA) &&
2840          "Unknown shift node");
2841   if (const APInt *ValidAmt = getValidShiftAmountConstant(V, DemandedElts))
2842     return ValidAmt;
2843   unsigned BitWidth = V.getScalarValueSizeInBits();
2844   auto *BV = dyn_cast<BuildVectorSDNode>(V.getOperand(1));
2845   if (!BV)
2846     return nullptr;
2847   const APInt *MinShAmt = nullptr;
2848   for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
2849     if (!DemandedElts[i])
2850       continue;
2851     auto *SA = dyn_cast<ConstantSDNode>(BV->getOperand(i));
2852     if (!SA)
2853       return nullptr;
2854     // Shifting more than the bitwidth is not valid.
2855     const APInt &ShAmt = SA->getAPIntValue();
2856     if (ShAmt.uge(BitWidth))
2857       return nullptr;
2858     if (MinShAmt && MinShAmt->ule(ShAmt))
2859       continue;
2860     MinShAmt = &ShAmt;
2861   }
2862   return MinShAmt;
2863 }
2864 
2865 const APInt *SelectionDAG::getValidMaximumShiftAmountConstant(
2866     SDValue V, const APInt &DemandedElts) const {
2867   assert((V.getOpcode() == ISD::SHL || V.getOpcode() == ISD::SRL ||
2868           V.getOpcode() == ISD::SRA) &&
2869          "Unknown shift node");
2870   if (const APInt *ValidAmt = getValidShiftAmountConstant(V, DemandedElts))
2871     return ValidAmt;
2872   unsigned BitWidth = V.getScalarValueSizeInBits();
2873   auto *BV = dyn_cast<BuildVectorSDNode>(V.getOperand(1));
2874   if (!BV)
2875     return nullptr;
2876   const APInt *MaxShAmt = nullptr;
2877   for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
2878     if (!DemandedElts[i])
2879       continue;
2880     auto *SA = dyn_cast<ConstantSDNode>(BV->getOperand(i));
2881     if (!SA)
2882       return nullptr;
2883     // Shifting more than the bitwidth is not valid.
2884     const APInt &ShAmt = SA->getAPIntValue();
2885     if (ShAmt.uge(BitWidth))
2886       return nullptr;
2887     if (MaxShAmt && MaxShAmt->uge(ShAmt))
2888       continue;
2889     MaxShAmt = &ShAmt;
2890   }
2891   return MaxShAmt;
2892 }
2893 
2894 /// Determine which bits of Op are known to be either zero or one and return
2895 /// them in Known. For vectors, the known bits are those that are shared by
2896 /// every vector element.
2897 KnownBits SelectionDAG::computeKnownBits(SDValue Op, unsigned Depth) const {
2898   EVT VT = Op.getValueType();
2899 
2900   // TOOD: Until we have a plan for how to represent demanded elements for
2901   // scalable vectors, we can just bail out for now.
2902   if (Op.getValueType().isScalableVector()) {
2903     unsigned BitWidth = Op.getScalarValueSizeInBits();
2904     return KnownBits(BitWidth);
2905   }
2906 
2907   APInt DemandedElts = VT.isVector()
2908                            ? APInt::getAllOnes(VT.getVectorNumElements())
2909                            : APInt(1, 1);
2910   return computeKnownBits(Op, DemandedElts, Depth);
2911 }
2912 
2913 /// Determine which bits of Op are known to be either zero or one and return
2914 /// them in Known. The DemandedElts argument allows us to only collect the known
2915 /// bits that are shared by the requested vector elements.
2916 KnownBits SelectionDAG::computeKnownBits(SDValue Op, const APInt &DemandedElts,
2917                                          unsigned Depth) const {
2918   unsigned BitWidth = Op.getScalarValueSizeInBits();
2919 
2920   KnownBits Known(BitWidth);   // Don't know anything.
2921 
2922   // TOOD: Until we have a plan for how to represent demanded elements for
2923   // scalable vectors, we can just bail out for now.
2924   if (Op.getValueType().isScalableVector())
2925     return Known;
2926 
2927   if (auto *C = dyn_cast<ConstantSDNode>(Op)) {
2928     // We know all of the bits for a constant!
2929     return KnownBits::makeConstant(C->getAPIntValue());
2930   }
2931   if (auto *C = dyn_cast<ConstantFPSDNode>(Op)) {
2932     // We know all of the bits for a constant fp!
2933     return KnownBits::makeConstant(C->getValueAPF().bitcastToAPInt());
2934   }
2935 
2936   if (Depth >= MaxRecursionDepth)
2937     return Known;  // Limit search depth.
2938 
2939   KnownBits Known2;
2940   unsigned NumElts = DemandedElts.getBitWidth();
2941   assert((!Op.getValueType().isVector() ||
2942           NumElts == Op.getValueType().getVectorNumElements()) &&
2943          "Unexpected vector size");
2944 
2945   if (!DemandedElts)
2946     return Known;  // No demanded elts, better to assume we don't know anything.
2947 
2948   unsigned Opcode = Op.getOpcode();
2949   switch (Opcode) {
2950   case ISD::BUILD_VECTOR:
2951     // Collect the known bits that are shared by every demanded vector element.
2952     Known.Zero.setAllBits(); Known.One.setAllBits();
2953     for (unsigned i = 0, e = Op.getNumOperands(); i != e; ++i) {
2954       if (!DemandedElts[i])
2955         continue;
2956 
2957       SDValue SrcOp = Op.getOperand(i);
2958       Known2 = computeKnownBits(SrcOp, Depth + 1);
2959 
2960       // BUILD_VECTOR can implicitly truncate sources, we must handle this.
2961       if (SrcOp.getValueSizeInBits() != BitWidth) {
2962         assert(SrcOp.getValueSizeInBits() > BitWidth &&
2963                "Expected BUILD_VECTOR implicit truncation");
2964         Known2 = Known2.trunc(BitWidth);
2965       }
2966 
2967       // Known bits are the values that are shared by every demanded element.
2968       Known = KnownBits::commonBits(Known, Known2);
2969 
2970       // If we don't know any bits, early out.
2971       if (Known.isUnknown())
2972         break;
2973     }
2974     break;
2975   case ISD::VECTOR_SHUFFLE: {
2976     // Collect the known bits that are shared by every vector element referenced
2977     // by the shuffle.
2978     APInt DemandedLHS(NumElts, 0), DemandedRHS(NumElts, 0);
2979     Known.Zero.setAllBits(); Known.One.setAllBits();
2980     const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op);
2981     assert(NumElts == SVN->getMask().size() && "Unexpected vector size");
2982     for (unsigned i = 0; i != NumElts; ++i) {
2983       if (!DemandedElts[i])
2984         continue;
2985 
2986       int M = SVN->getMaskElt(i);
2987       if (M < 0) {
2988         // For UNDEF elements, we don't know anything about the common state of
2989         // the shuffle result.
2990         Known.resetAll();
2991         DemandedLHS.clearAllBits();
2992         DemandedRHS.clearAllBits();
2993         break;
2994       }
2995 
2996       if ((unsigned)M < NumElts)
2997         DemandedLHS.setBit((unsigned)M % NumElts);
2998       else
2999         DemandedRHS.setBit((unsigned)M % NumElts);
3000     }
3001     // Known bits are the values that are shared by every demanded element.
3002     if (!!DemandedLHS) {
3003       SDValue LHS = Op.getOperand(0);
3004       Known2 = computeKnownBits(LHS, DemandedLHS, Depth + 1);
3005       Known = KnownBits::commonBits(Known, Known2);
3006     }
3007     // If we don't know any bits, early out.
3008     if (Known.isUnknown())
3009       break;
3010     if (!!DemandedRHS) {
3011       SDValue RHS = Op.getOperand(1);
3012       Known2 = computeKnownBits(RHS, DemandedRHS, Depth + 1);
3013       Known = KnownBits::commonBits(Known, Known2);
3014     }
3015     break;
3016   }
3017   case ISD::CONCAT_VECTORS: {
3018     // Split DemandedElts and test each of the demanded subvectors.
3019     Known.Zero.setAllBits(); Known.One.setAllBits();
3020     EVT SubVectorVT = Op.getOperand(0).getValueType();
3021     unsigned NumSubVectorElts = SubVectorVT.getVectorNumElements();
3022     unsigned NumSubVectors = Op.getNumOperands();
3023     for (unsigned i = 0; i != NumSubVectors; ++i) {
3024       APInt DemandedSub =
3025           DemandedElts.extractBits(NumSubVectorElts, i * NumSubVectorElts);
3026       if (!!DemandedSub) {
3027         SDValue Sub = Op.getOperand(i);
3028         Known2 = computeKnownBits(Sub, DemandedSub, Depth + 1);
3029         Known = KnownBits::commonBits(Known, Known2);
3030       }
3031       // If we don't know any bits, early out.
3032       if (Known.isUnknown())
3033         break;
3034     }
3035     break;
3036   }
3037   case ISD::INSERT_SUBVECTOR: {
3038     // Demand any elements from the subvector and the remainder from the src its
3039     // inserted into.
3040     SDValue Src = Op.getOperand(0);
3041     SDValue Sub = Op.getOperand(1);
3042     uint64_t Idx = Op.getConstantOperandVal(2);
3043     unsigned NumSubElts = Sub.getValueType().getVectorNumElements();
3044     APInt DemandedSubElts = DemandedElts.extractBits(NumSubElts, Idx);
3045     APInt DemandedSrcElts = DemandedElts;
3046     DemandedSrcElts.insertBits(APInt::getZero(NumSubElts), Idx);
3047 
3048     Known.One.setAllBits();
3049     Known.Zero.setAllBits();
3050     if (!!DemandedSubElts) {
3051       Known = computeKnownBits(Sub, DemandedSubElts, Depth + 1);
3052       if (Known.isUnknown())
3053         break; // early-out.
3054     }
3055     if (!!DemandedSrcElts) {
3056       Known2 = computeKnownBits(Src, DemandedSrcElts, Depth + 1);
3057       Known = KnownBits::commonBits(Known, Known2);
3058     }
3059     break;
3060   }
3061   case ISD::EXTRACT_SUBVECTOR: {
3062     // Offset the demanded elts by the subvector index.
3063     SDValue Src = Op.getOperand(0);
3064     // Bail until we can represent demanded elements for scalable vectors.
3065     if (Src.getValueType().isScalableVector())
3066       break;
3067     uint64_t Idx = Op.getConstantOperandVal(1);
3068     unsigned NumSrcElts = Src.getValueType().getVectorNumElements();
3069     APInt DemandedSrcElts = DemandedElts.zextOrSelf(NumSrcElts).shl(Idx);
3070     Known = computeKnownBits(Src, DemandedSrcElts, Depth + 1);
3071     break;
3072   }
3073   case ISD::SCALAR_TO_VECTOR: {
3074     // We know about scalar_to_vector as much as we know about it source,
3075     // which becomes the first element of otherwise unknown vector.
3076     if (DemandedElts != 1)
3077       break;
3078 
3079     SDValue N0 = Op.getOperand(0);
3080     Known = computeKnownBits(N0, Depth + 1);
3081     if (N0.getValueSizeInBits() != BitWidth)
3082       Known = Known.trunc(BitWidth);
3083 
3084     break;
3085   }
3086   case ISD::BITCAST: {
3087     SDValue N0 = Op.getOperand(0);
3088     EVT SubVT = N0.getValueType();
3089     unsigned SubBitWidth = SubVT.getScalarSizeInBits();
3090 
3091     // Ignore bitcasts from unsupported types.
3092     if (!(SubVT.isInteger() || SubVT.isFloatingPoint()))
3093       break;
3094 
3095     // Fast handling of 'identity' bitcasts.
3096     if (BitWidth == SubBitWidth) {
3097       Known = computeKnownBits(N0, DemandedElts, Depth + 1);
3098       break;
3099     }
3100 
3101     bool IsLE = getDataLayout().isLittleEndian();
3102 
3103     // Bitcast 'small element' vector to 'large element' scalar/vector.
3104     if ((BitWidth % SubBitWidth) == 0) {
3105       assert(N0.getValueType().isVector() && "Expected bitcast from vector");
3106 
3107       // Collect known bits for the (larger) output by collecting the known
3108       // bits from each set of sub elements and shift these into place.
3109       // We need to separately call computeKnownBits for each set of
3110       // sub elements as the knownbits for each is likely to be different.
3111       unsigned SubScale = BitWidth / SubBitWidth;
3112       APInt SubDemandedElts(NumElts * SubScale, 0);
3113       for (unsigned i = 0; i != NumElts; ++i)
3114         if (DemandedElts[i])
3115           SubDemandedElts.setBit(i * SubScale);
3116 
3117       for (unsigned i = 0; i != SubScale; ++i) {
3118         Known2 = computeKnownBits(N0, SubDemandedElts.shl(i),
3119                          Depth + 1);
3120         unsigned Shifts = IsLE ? i : SubScale - 1 - i;
3121         Known.insertBits(Known2, SubBitWidth * Shifts);
3122       }
3123     }
3124 
3125     // Bitcast 'large element' scalar/vector to 'small element' vector.
3126     if ((SubBitWidth % BitWidth) == 0) {
3127       assert(Op.getValueType().isVector() && "Expected bitcast to vector");
3128 
3129       // Collect known bits for the (smaller) output by collecting the known
3130       // bits from the overlapping larger input elements and extracting the
3131       // sub sections we actually care about.
3132       unsigned SubScale = SubBitWidth / BitWidth;
3133       APInt SubDemandedElts =
3134           APIntOps::ScaleBitMask(DemandedElts, NumElts / SubScale);
3135       Known2 = computeKnownBits(N0, SubDemandedElts, Depth + 1);
3136 
3137       Known.Zero.setAllBits(); Known.One.setAllBits();
3138       for (unsigned i = 0; i != NumElts; ++i)
3139         if (DemandedElts[i]) {
3140           unsigned Shifts = IsLE ? i : NumElts - 1 - i;
3141           unsigned Offset = (Shifts % SubScale) * BitWidth;
3142           Known = KnownBits::commonBits(Known,
3143                                         Known2.extractBits(BitWidth, Offset));
3144           // If we don't know any bits, early out.
3145           if (Known.isUnknown())
3146             break;
3147         }
3148     }
3149     break;
3150   }
3151   case ISD::AND:
3152     Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3153     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3154 
3155     Known &= Known2;
3156     break;
3157   case ISD::OR:
3158     Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3159     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3160 
3161     Known |= Known2;
3162     break;
3163   case ISD::XOR:
3164     Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3165     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3166 
3167     Known ^= Known2;
3168     break;
3169   case ISD::MUL: {
3170     Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3171     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3172     bool SelfMultiply = Op.getOperand(0) == Op.getOperand(1);
3173     // TODO: SelfMultiply can be poison, but not undef.
3174     if (SelfMultiply)
3175       SelfMultiply &= isGuaranteedNotToBeUndefOrPoison(
3176           Op.getOperand(0), DemandedElts, false, Depth + 1);
3177     Known = KnownBits::mul(Known, Known2, SelfMultiply);
3178     break;
3179   }
3180   case ISD::MULHU: {
3181     Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3182     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3183     Known = KnownBits::mulhu(Known, Known2);
3184     break;
3185   }
3186   case ISD::MULHS: {
3187     Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3188     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3189     Known = KnownBits::mulhs(Known, Known2);
3190     break;
3191   }
3192   case ISD::UMUL_LOHI: {
3193     assert((Op.getResNo() == 0 || Op.getResNo() == 1) && "Unknown result");
3194     Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3195     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3196     bool SelfMultiply = Op.getOperand(0) == Op.getOperand(1);
3197     if (Op.getResNo() == 0)
3198       Known = KnownBits::mul(Known, Known2, SelfMultiply);
3199     else
3200       Known = KnownBits::mulhu(Known, Known2);
3201     break;
3202   }
3203   case ISD::SMUL_LOHI: {
3204     assert((Op.getResNo() == 0 || Op.getResNo() == 1) && "Unknown result");
3205     Known = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3206     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3207     bool SelfMultiply = Op.getOperand(0) == Op.getOperand(1);
3208     if (Op.getResNo() == 0)
3209       Known = KnownBits::mul(Known, Known2, SelfMultiply);
3210     else
3211       Known = KnownBits::mulhs(Known, Known2);
3212     break;
3213   }
3214   case ISD::UDIV: {
3215     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3216     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3217     Known = KnownBits::udiv(Known, Known2);
3218     break;
3219   }
3220   case ISD::AVGCEILU: {
3221     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3222     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3223     Known = Known.zext(BitWidth + 1);
3224     Known2 = Known2.zext(BitWidth + 1);
3225     KnownBits One = KnownBits::makeConstant(APInt(1, 1));
3226     Known = KnownBits::computeForAddCarry(Known, Known2, One);
3227     Known = Known.extractBits(BitWidth, 1);
3228     break;
3229   }
3230   case ISD::SELECT:
3231   case ISD::VSELECT:
3232     Known = computeKnownBits(Op.getOperand(2), DemandedElts, Depth+1);
3233     // If we don't know any bits, early out.
3234     if (Known.isUnknown())
3235       break;
3236     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth+1);
3237 
3238     // Only known if known in both the LHS and RHS.
3239     Known = KnownBits::commonBits(Known, Known2);
3240     break;
3241   case ISD::SELECT_CC:
3242     Known = computeKnownBits(Op.getOperand(3), DemandedElts, Depth+1);
3243     // If we don't know any bits, early out.
3244     if (Known.isUnknown())
3245       break;
3246     Known2 = computeKnownBits(Op.getOperand(2), DemandedElts, Depth+1);
3247 
3248     // Only known if known in both the LHS and RHS.
3249     Known = KnownBits::commonBits(Known, Known2);
3250     break;
3251   case ISD::SMULO:
3252   case ISD::UMULO:
3253     if (Op.getResNo() != 1)
3254       break;
3255     // The boolean result conforms to getBooleanContents.
3256     // If we know the result of a setcc has the top bits zero, use this info.
3257     // We know that we have an integer-based boolean since these operations
3258     // are only available for integer.
3259     if (TLI->getBooleanContents(Op.getValueType().isVector(), false) ==
3260             TargetLowering::ZeroOrOneBooleanContent &&
3261         BitWidth > 1)
3262       Known.Zero.setBitsFrom(1);
3263     break;
3264   case ISD::SETCC:
3265   case ISD::STRICT_FSETCC:
3266   case ISD::STRICT_FSETCCS: {
3267     unsigned OpNo = Op->isStrictFPOpcode() ? 1 : 0;
3268     // If we know the result of a setcc has the top bits zero, use this info.
3269     if (TLI->getBooleanContents(Op.getOperand(OpNo).getValueType()) ==
3270             TargetLowering::ZeroOrOneBooleanContent &&
3271         BitWidth > 1)
3272       Known.Zero.setBitsFrom(1);
3273     break;
3274   }
3275   case ISD::SHL:
3276     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3277     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3278     Known = KnownBits::shl(Known, Known2);
3279 
3280     // Minimum shift low bits are known zero.
3281     if (const APInt *ShMinAmt =
3282             getValidMinimumShiftAmountConstant(Op, DemandedElts))
3283       Known.Zero.setLowBits(ShMinAmt->getZExtValue());
3284     break;
3285   case ISD::SRL:
3286     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3287     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3288     Known = KnownBits::lshr(Known, Known2);
3289 
3290     // Minimum shift high bits are known zero.
3291     if (const APInt *ShMinAmt =
3292             getValidMinimumShiftAmountConstant(Op, DemandedElts))
3293       Known.Zero.setHighBits(ShMinAmt->getZExtValue());
3294     break;
3295   case ISD::SRA:
3296     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3297     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3298     Known = KnownBits::ashr(Known, Known2);
3299     // TODO: Add minimum shift high known sign bits.
3300     break;
3301   case ISD::FSHL:
3302   case ISD::FSHR:
3303     if (ConstantSDNode *C = isConstOrConstSplat(Op.getOperand(2), DemandedElts)) {
3304       unsigned Amt = C->getAPIntValue().urem(BitWidth);
3305 
3306       // For fshl, 0-shift returns the 1st arg.
3307       // For fshr, 0-shift returns the 2nd arg.
3308       if (Amt == 0) {
3309         Known = computeKnownBits(Op.getOperand(Opcode == ISD::FSHL ? 0 : 1),
3310                                  DemandedElts, Depth + 1);
3311         break;
3312       }
3313 
3314       // fshl: (X << (Z % BW)) | (Y >> (BW - (Z % BW)))
3315       // fshr: (X << (BW - (Z % BW))) | (Y >> (Z % BW))
3316       Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3317       Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3318       if (Opcode == ISD::FSHL) {
3319         Known.One <<= Amt;
3320         Known.Zero <<= Amt;
3321         Known2.One.lshrInPlace(BitWidth - Amt);
3322         Known2.Zero.lshrInPlace(BitWidth - Amt);
3323       } else {
3324         Known.One <<= BitWidth - Amt;
3325         Known.Zero <<= BitWidth - Amt;
3326         Known2.One.lshrInPlace(Amt);
3327         Known2.Zero.lshrInPlace(Amt);
3328       }
3329       Known.One |= Known2.One;
3330       Known.Zero |= Known2.Zero;
3331     }
3332     break;
3333   case ISD::SIGN_EXTEND_INREG: {
3334     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3335     EVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
3336     Known = Known.sextInReg(EVT.getScalarSizeInBits());
3337     break;
3338   }
3339   case ISD::CTTZ:
3340   case ISD::CTTZ_ZERO_UNDEF: {
3341     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3342     // If we have a known 1, its position is our upper bound.
3343     unsigned PossibleTZ = Known2.countMaxTrailingZeros();
3344     unsigned LowBits = Log2_32(PossibleTZ) + 1;
3345     Known.Zero.setBitsFrom(LowBits);
3346     break;
3347   }
3348   case ISD::CTLZ:
3349   case ISD::CTLZ_ZERO_UNDEF: {
3350     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3351     // If we have a known 1, its position is our upper bound.
3352     unsigned PossibleLZ = Known2.countMaxLeadingZeros();
3353     unsigned LowBits = Log2_32(PossibleLZ) + 1;
3354     Known.Zero.setBitsFrom(LowBits);
3355     break;
3356   }
3357   case ISD::CTPOP: {
3358     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3359     // If we know some of the bits are zero, they can't be one.
3360     unsigned PossibleOnes = Known2.countMaxPopulation();
3361     Known.Zero.setBitsFrom(Log2_32(PossibleOnes) + 1);
3362     break;
3363   }
3364   case ISD::PARITY: {
3365     // Parity returns 0 everywhere but the LSB.
3366     Known.Zero.setBitsFrom(1);
3367     break;
3368   }
3369   case ISD::LOAD: {
3370     LoadSDNode *LD = cast<LoadSDNode>(Op);
3371     const Constant *Cst = TLI->getTargetConstantFromLoad(LD);
3372     if (ISD::isNON_EXTLoad(LD) && Cst) {
3373       // Determine any common known bits from the loaded constant pool value.
3374       Type *CstTy = Cst->getType();
3375       if ((NumElts * BitWidth) == CstTy->getPrimitiveSizeInBits()) {
3376         // If its a vector splat, then we can (quickly) reuse the scalar path.
3377         // NOTE: We assume all elements match and none are UNDEF.
3378         if (CstTy->isVectorTy()) {
3379           if (const Constant *Splat = Cst->getSplatValue()) {
3380             Cst = Splat;
3381             CstTy = Cst->getType();
3382           }
3383         }
3384         // TODO - do we need to handle different bitwidths?
3385         if (CstTy->isVectorTy() && BitWidth == CstTy->getScalarSizeInBits()) {
3386           // Iterate across all vector elements finding common known bits.
3387           Known.One.setAllBits();
3388           Known.Zero.setAllBits();
3389           for (unsigned i = 0; i != NumElts; ++i) {
3390             if (!DemandedElts[i])
3391               continue;
3392             if (Constant *Elt = Cst->getAggregateElement(i)) {
3393               if (auto *CInt = dyn_cast<ConstantInt>(Elt)) {
3394                 const APInt &Value = CInt->getValue();
3395                 Known.One &= Value;
3396                 Known.Zero &= ~Value;
3397                 continue;
3398               }
3399               if (auto *CFP = dyn_cast<ConstantFP>(Elt)) {
3400                 APInt Value = CFP->getValueAPF().bitcastToAPInt();
3401                 Known.One &= Value;
3402                 Known.Zero &= ~Value;
3403                 continue;
3404               }
3405             }
3406             Known.One.clearAllBits();
3407             Known.Zero.clearAllBits();
3408             break;
3409           }
3410         } else if (BitWidth == CstTy->getPrimitiveSizeInBits()) {
3411           if (auto *CInt = dyn_cast<ConstantInt>(Cst)) {
3412             Known = KnownBits::makeConstant(CInt->getValue());
3413           } else if (auto *CFP = dyn_cast<ConstantFP>(Cst)) {
3414             Known =
3415                 KnownBits::makeConstant(CFP->getValueAPF().bitcastToAPInt());
3416           }
3417         }
3418       }
3419     } else if (ISD::isZEXTLoad(Op.getNode()) && Op.getResNo() == 0) {
3420       // If this is a ZEXTLoad and we are looking at the loaded value.
3421       EVT VT = LD->getMemoryVT();
3422       unsigned MemBits = VT.getScalarSizeInBits();
3423       Known.Zero.setBitsFrom(MemBits);
3424     } else if (const MDNode *Ranges = LD->getRanges()) {
3425       if (LD->getExtensionType() == ISD::NON_EXTLOAD)
3426         computeKnownBitsFromRangeMetadata(*Ranges, Known);
3427     }
3428     break;
3429   }
3430   case ISD::ZERO_EXTEND_VECTOR_INREG: {
3431     EVT InVT = Op.getOperand(0).getValueType();
3432     APInt InDemandedElts = DemandedElts.zextOrSelf(InVT.getVectorNumElements());
3433     Known = computeKnownBits(Op.getOperand(0), InDemandedElts, Depth + 1);
3434     Known = Known.zext(BitWidth);
3435     break;
3436   }
3437   case ISD::ZERO_EXTEND: {
3438     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3439     Known = Known.zext(BitWidth);
3440     break;
3441   }
3442   case ISD::SIGN_EXTEND_VECTOR_INREG: {
3443     EVT InVT = Op.getOperand(0).getValueType();
3444     APInt InDemandedElts = DemandedElts.zextOrSelf(InVT.getVectorNumElements());
3445     Known = computeKnownBits(Op.getOperand(0), InDemandedElts, Depth + 1);
3446     // If the sign bit is known to be zero or one, then sext will extend
3447     // it to the top bits, else it will just zext.
3448     Known = Known.sext(BitWidth);
3449     break;
3450   }
3451   case ISD::SIGN_EXTEND: {
3452     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3453     // If the sign bit is known to be zero or one, then sext will extend
3454     // it to the top bits, else it will just zext.
3455     Known = Known.sext(BitWidth);
3456     break;
3457   }
3458   case ISD::ANY_EXTEND_VECTOR_INREG: {
3459     EVT InVT = Op.getOperand(0).getValueType();
3460     APInt InDemandedElts = DemandedElts.zextOrSelf(InVT.getVectorNumElements());
3461     Known = computeKnownBits(Op.getOperand(0), InDemandedElts, Depth + 1);
3462     Known = Known.anyext(BitWidth);
3463     break;
3464   }
3465   case ISD::ANY_EXTEND: {
3466     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3467     Known = Known.anyext(BitWidth);
3468     break;
3469   }
3470   case ISD::TRUNCATE: {
3471     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3472     Known = Known.trunc(BitWidth);
3473     break;
3474   }
3475   case ISD::AssertZext: {
3476     EVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
3477     APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits());
3478     Known = computeKnownBits(Op.getOperand(0), Depth+1);
3479     Known.Zero |= (~InMask);
3480     Known.One  &= (~Known.Zero);
3481     break;
3482   }
3483   case ISD::AssertAlign: {
3484     unsigned LogOfAlign = Log2(cast<AssertAlignSDNode>(Op)->getAlign());
3485     assert(LogOfAlign != 0);
3486 
3487     // TODO: Should use maximum with source
3488     // If a node is guaranteed to be aligned, set low zero bits accordingly as
3489     // well as clearing one bits.
3490     Known.Zero.setLowBits(LogOfAlign);
3491     Known.One.clearLowBits(LogOfAlign);
3492     break;
3493   }
3494   case ISD::FGETSIGN:
3495     // All bits are zero except the low bit.
3496     Known.Zero.setBitsFrom(1);
3497     break;
3498   case ISD::USUBO:
3499   case ISD::SSUBO:
3500     if (Op.getResNo() == 1) {
3501       // If we know the result of a setcc has the top bits zero, use this info.
3502       if (TLI->getBooleanContents(Op.getOperand(0).getValueType()) ==
3503               TargetLowering::ZeroOrOneBooleanContent &&
3504           BitWidth > 1)
3505         Known.Zero.setBitsFrom(1);
3506       break;
3507     }
3508     LLVM_FALLTHROUGH;
3509   case ISD::SUB:
3510   case ISD::SUBC: {
3511     assert(Op.getResNo() == 0 &&
3512            "We only compute knownbits for the difference here.");
3513 
3514     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3515     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3516     Known = KnownBits::computeForAddSub(/* Add */ false, /* NSW */ false,
3517                                         Known, Known2);
3518     break;
3519   }
3520   case ISD::UADDO:
3521   case ISD::SADDO:
3522   case ISD::ADDCARRY:
3523     if (Op.getResNo() == 1) {
3524       // If we know the result of a setcc has the top bits zero, use this info.
3525       if (TLI->getBooleanContents(Op.getOperand(0).getValueType()) ==
3526               TargetLowering::ZeroOrOneBooleanContent &&
3527           BitWidth > 1)
3528         Known.Zero.setBitsFrom(1);
3529       break;
3530     }
3531     LLVM_FALLTHROUGH;
3532   case ISD::ADD:
3533   case ISD::ADDC:
3534   case ISD::ADDE: {
3535     assert(Op.getResNo() == 0 && "We only compute knownbits for the sum here.");
3536 
3537     // With ADDE and ADDCARRY, a carry bit may be added in.
3538     KnownBits Carry(1);
3539     if (Opcode == ISD::ADDE)
3540       // Can't track carry from glue, set carry to unknown.
3541       Carry.resetAll();
3542     else if (Opcode == ISD::ADDCARRY)
3543       // TODO: Compute known bits for the carry operand. Not sure if it is worth
3544       // the trouble (how often will we find a known carry bit). And I haven't
3545       // tested this very much yet, but something like this might work:
3546       //   Carry = computeKnownBits(Op.getOperand(2), DemandedElts, Depth + 1);
3547       //   Carry = Carry.zextOrTrunc(1, false);
3548       Carry.resetAll();
3549     else
3550       Carry.setAllZero();
3551 
3552     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3553     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3554     Known = KnownBits::computeForAddCarry(Known, Known2, Carry);
3555     break;
3556   }
3557   case ISD::SREM: {
3558     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3559     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3560     Known = KnownBits::srem(Known, Known2);
3561     break;
3562   }
3563   case ISD::UREM: {
3564     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3565     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3566     Known = KnownBits::urem(Known, Known2);
3567     break;
3568   }
3569   case ISD::EXTRACT_ELEMENT: {
3570     Known = computeKnownBits(Op.getOperand(0), Depth+1);
3571     const unsigned Index = Op.getConstantOperandVal(1);
3572     const unsigned EltBitWidth = Op.getValueSizeInBits();
3573 
3574     // Remove low part of known bits mask
3575     Known.Zero = Known.Zero.getHiBits(Known.getBitWidth() - Index * EltBitWidth);
3576     Known.One = Known.One.getHiBits(Known.getBitWidth() - Index * EltBitWidth);
3577 
3578     // Remove high part of known bit mask
3579     Known = Known.trunc(EltBitWidth);
3580     break;
3581   }
3582   case ISD::EXTRACT_VECTOR_ELT: {
3583     SDValue InVec = Op.getOperand(0);
3584     SDValue EltNo = Op.getOperand(1);
3585     EVT VecVT = InVec.getValueType();
3586     // computeKnownBits not yet implemented for scalable vectors.
3587     if (VecVT.isScalableVector())
3588       break;
3589     const unsigned EltBitWidth = VecVT.getScalarSizeInBits();
3590     const unsigned NumSrcElts = VecVT.getVectorNumElements();
3591 
3592     // If BitWidth > EltBitWidth the value is anyext:ed. So we do not know
3593     // anything about the extended bits.
3594     if (BitWidth > EltBitWidth)
3595       Known = Known.trunc(EltBitWidth);
3596 
3597     // If we know the element index, just demand that vector element, else for
3598     // an unknown element index, ignore DemandedElts and demand them all.
3599     APInt DemandedSrcElts = APInt::getAllOnes(NumSrcElts);
3600     auto *ConstEltNo = dyn_cast<ConstantSDNode>(EltNo);
3601     if (ConstEltNo && ConstEltNo->getAPIntValue().ult(NumSrcElts))
3602       DemandedSrcElts =
3603           APInt::getOneBitSet(NumSrcElts, ConstEltNo->getZExtValue());
3604 
3605     Known = computeKnownBits(InVec, DemandedSrcElts, Depth + 1);
3606     if (BitWidth > EltBitWidth)
3607       Known = Known.anyext(BitWidth);
3608     break;
3609   }
3610   case ISD::INSERT_VECTOR_ELT: {
3611     // If we know the element index, split the demand between the
3612     // source vector and the inserted element, otherwise assume we need
3613     // the original demanded vector elements and the value.
3614     SDValue InVec = Op.getOperand(0);
3615     SDValue InVal = Op.getOperand(1);
3616     SDValue EltNo = Op.getOperand(2);
3617     bool DemandedVal = true;
3618     APInt DemandedVecElts = DemandedElts;
3619     auto *CEltNo = dyn_cast<ConstantSDNode>(EltNo);
3620     if (CEltNo && CEltNo->getAPIntValue().ult(NumElts)) {
3621       unsigned EltIdx = CEltNo->getZExtValue();
3622       DemandedVal = !!DemandedElts[EltIdx];
3623       DemandedVecElts.clearBit(EltIdx);
3624     }
3625     Known.One.setAllBits();
3626     Known.Zero.setAllBits();
3627     if (DemandedVal) {
3628       Known2 = computeKnownBits(InVal, Depth + 1);
3629       Known = KnownBits::commonBits(Known, Known2.zextOrTrunc(BitWidth));
3630     }
3631     if (!!DemandedVecElts) {
3632       Known2 = computeKnownBits(InVec, DemandedVecElts, Depth + 1);
3633       Known = KnownBits::commonBits(Known, Known2);
3634     }
3635     break;
3636   }
3637   case ISD::BITREVERSE: {
3638     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3639     Known = Known2.reverseBits();
3640     break;
3641   }
3642   case ISD::BSWAP: {
3643     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3644     Known = Known2.byteSwap();
3645     break;
3646   }
3647   case ISD::ABS: {
3648     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3649     Known = Known2.abs();
3650     break;
3651   }
3652   case ISD::USUBSAT: {
3653     // The result of usubsat will never be larger than the LHS.
3654     Known2 = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3655     Known.Zero.setHighBits(Known2.countMinLeadingZeros());
3656     break;
3657   }
3658   case ISD::UMIN: {
3659     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3660     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3661     Known = KnownBits::umin(Known, Known2);
3662     break;
3663   }
3664   case ISD::UMAX: {
3665     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3666     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3667     Known = KnownBits::umax(Known, Known2);
3668     break;
3669   }
3670   case ISD::SMIN:
3671   case ISD::SMAX: {
3672     // If we have a clamp pattern, we know that the number of sign bits will be
3673     // the minimum of the clamp min/max range.
3674     bool IsMax = (Opcode == ISD::SMAX);
3675     ConstantSDNode *CstLow = nullptr, *CstHigh = nullptr;
3676     if ((CstLow = isConstOrConstSplat(Op.getOperand(1), DemandedElts)))
3677       if (Op.getOperand(0).getOpcode() == (IsMax ? ISD::SMIN : ISD::SMAX))
3678         CstHigh =
3679             isConstOrConstSplat(Op.getOperand(0).getOperand(1), DemandedElts);
3680     if (CstLow && CstHigh) {
3681       if (!IsMax)
3682         std::swap(CstLow, CstHigh);
3683 
3684       const APInt &ValueLow = CstLow->getAPIntValue();
3685       const APInt &ValueHigh = CstHigh->getAPIntValue();
3686       if (ValueLow.sle(ValueHigh)) {
3687         unsigned LowSignBits = ValueLow.getNumSignBits();
3688         unsigned HighSignBits = ValueHigh.getNumSignBits();
3689         unsigned MinSignBits = std::min(LowSignBits, HighSignBits);
3690         if (ValueLow.isNegative() && ValueHigh.isNegative()) {
3691           Known.One.setHighBits(MinSignBits);
3692           break;
3693         }
3694         if (ValueLow.isNonNegative() && ValueHigh.isNonNegative()) {
3695           Known.Zero.setHighBits(MinSignBits);
3696           break;
3697         }
3698       }
3699     }
3700 
3701     Known = computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
3702     Known2 = computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
3703     if (IsMax)
3704       Known = KnownBits::smax(Known, Known2);
3705     else
3706       Known = KnownBits::smin(Known, Known2);
3707     break;
3708   }
3709   case ISD::FP_TO_UINT_SAT: {
3710     // FP_TO_UINT_SAT produces an unsigned value that fits in the saturating VT.
3711     EVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
3712     Known.Zero |= APInt::getBitsSetFrom(BitWidth, VT.getScalarSizeInBits());
3713     break;
3714   }
3715   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS:
3716     if (Op.getResNo() == 1) {
3717       // The boolean result conforms to getBooleanContents.
3718       // If we know the result of a setcc has the top bits zero, use this info.
3719       // We know that we have an integer-based boolean since these operations
3720       // are only available for integer.
3721       if (TLI->getBooleanContents(Op.getValueType().isVector(), false) ==
3722               TargetLowering::ZeroOrOneBooleanContent &&
3723           BitWidth > 1)
3724         Known.Zero.setBitsFrom(1);
3725       break;
3726     }
3727     LLVM_FALLTHROUGH;
3728   case ISD::ATOMIC_CMP_SWAP:
3729   case ISD::ATOMIC_SWAP:
3730   case ISD::ATOMIC_LOAD_ADD:
3731   case ISD::ATOMIC_LOAD_SUB:
3732   case ISD::ATOMIC_LOAD_AND:
3733   case ISD::ATOMIC_LOAD_CLR:
3734   case ISD::ATOMIC_LOAD_OR:
3735   case ISD::ATOMIC_LOAD_XOR:
3736   case ISD::ATOMIC_LOAD_NAND:
3737   case ISD::ATOMIC_LOAD_MIN:
3738   case ISD::ATOMIC_LOAD_MAX:
3739   case ISD::ATOMIC_LOAD_UMIN:
3740   case ISD::ATOMIC_LOAD_UMAX:
3741   case ISD::ATOMIC_LOAD: {
3742     unsigned MemBits =
3743         cast<AtomicSDNode>(Op)->getMemoryVT().getScalarSizeInBits();
3744     // If we are looking at the loaded value.
3745     if (Op.getResNo() == 0) {
3746       if (TLI->getExtendForAtomicOps() == ISD::ZERO_EXTEND)
3747         Known.Zero.setBitsFrom(MemBits);
3748     }
3749     break;
3750   }
3751   case ISD::FrameIndex:
3752   case ISD::TargetFrameIndex:
3753     TLI->computeKnownBitsForFrameIndex(cast<FrameIndexSDNode>(Op)->getIndex(),
3754                                        Known, getMachineFunction());
3755     break;
3756 
3757   default:
3758     if (Opcode < ISD::BUILTIN_OP_END)
3759       break;
3760     LLVM_FALLTHROUGH;
3761   case ISD::INTRINSIC_WO_CHAIN:
3762   case ISD::INTRINSIC_W_CHAIN:
3763   case ISD::INTRINSIC_VOID:
3764     // Allow the target to implement this method for its nodes.
3765     TLI->computeKnownBitsForTargetNode(Op, Known, DemandedElts, *this, Depth);
3766     break;
3767   }
3768 
3769   assert(!Known.hasConflict() && "Bits known to be one AND zero?");
3770   return Known;
3771 }
3772 
3773 SelectionDAG::OverflowKind SelectionDAG::computeOverflowKind(SDValue N0,
3774                                                              SDValue N1) const {
3775   // X + 0 never overflow
3776   if (isNullConstant(N1))
3777     return OFK_Never;
3778 
3779   KnownBits N1Known = computeKnownBits(N1);
3780   if (N1Known.Zero.getBoolValue()) {
3781     KnownBits N0Known = computeKnownBits(N0);
3782 
3783     bool overflow;
3784     (void)N0Known.getMaxValue().uadd_ov(N1Known.getMaxValue(), overflow);
3785     if (!overflow)
3786       return OFK_Never;
3787   }
3788 
3789   // mulhi + 1 never overflow
3790   if (N0.getOpcode() == ISD::UMUL_LOHI && N0.getResNo() == 1 &&
3791       (N1Known.getMaxValue() & 0x01) == N1Known.getMaxValue())
3792     return OFK_Never;
3793 
3794   if (N1.getOpcode() == ISD::UMUL_LOHI && N1.getResNo() == 1) {
3795     KnownBits N0Known = computeKnownBits(N0);
3796 
3797     if ((N0Known.getMaxValue() & 0x01) == N0Known.getMaxValue())
3798       return OFK_Never;
3799   }
3800 
3801   return OFK_Sometime;
3802 }
3803 
3804 bool SelectionDAG::isKnownToBeAPowerOfTwo(SDValue Val) const {
3805   EVT OpVT = Val.getValueType();
3806   unsigned BitWidth = OpVT.getScalarSizeInBits();
3807 
3808   // Is the constant a known power of 2?
3809   if (ConstantSDNode *Const = dyn_cast<ConstantSDNode>(Val))
3810     return Const->getAPIntValue().zextOrTrunc(BitWidth).isPowerOf2();
3811 
3812   // A left-shift of a constant one will have exactly one bit set because
3813   // shifting the bit off the end is undefined.
3814   if (Val.getOpcode() == ISD::SHL) {
3815     auto *C = isConstOrConstSplat(Val.getOperand(0));
3816     if (C && C->getAPIntValue() == 1)
3817       return true;
3818   }
3819 
3820   // Similarly, a logical right-shift of a constant sign-bit will have exactly
3821   // one bit set.
3822   if (Val.getOpcode() == ISD::SRL) {
3823     auto *C = isConstOrConstSplat(Val.getOperand(0));
3824     if (C && C->getAPIntValue().isSignMask())
3825       return true;
3826   }
3827 
3828   // Are all operands of a build vector constant powers of two?
3829   if (Val.getOpcode() == ISD::BUILD_VECTOR)
3830     if (llvm::all_of(Val->ops(), [BitWidth](SDValue E) {
3831           if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(E))
3832             return C->getAPIntValue().zextOrTrunc(BitWidth).isPowerOf2();
3833           return false;
3834         }))
3835       return true;
3836 
3837   // Is the operand of a splat vector a constant power of two?
3838   if (Val.getOpcode() == ISD::SPLAT_VECTOR)
3839     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val->getOperand(0)))
3840       if (C->getAPIntValue().zextOrTrunc(BitWidth).isPowerOf2())
3841         return true;
3842 
3843   // More could be done here, though the above checks are enough
3844   // to handle some common cases.
3845 
3846   // Fall back to computeKnownBits to catch other known cases.
3847   KnownBits Known = computeKnownBits(Val);
3848   return (Known.countMaxPopulation() == 1) && (Known.countMinPopulation() == 1);
3849 }
3850 
3851 unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const {
3852   EVT VT = Op.getValueType();
3853 
3854   // TODO: Assume we don't know anything for now.
3855   if (VT.isScalableVector())
3856     return 1;
3857 
3858   APInt DemandedElts = VT.isVector()
3859                            ? APInt::getAllOnes(VT.getVectorNumElements())
3860                            : APInt(1, 1);
3861   return ComputeNumSignBits(Op, DemandedElts, Depth);
3862 }
3863 
3864 unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, const APInt &DemandedElts,
3865                                           unsigned Depth) const {
3866   EVT VT = Op.getValueType();
3867   assert((VT.isInteger() || VT.isFloatingPoint()) && "Invalid VT!");
3868   unsigned VTBits = VT.getScalarSizeInBits();
3869   unsigned NumElts = DemandedElts.getBitWidth();
3870   unsigned Tmp, Tmp2;
3871   unsigned FirstAnswer = 1;
3872 
3873   if (auto *C = dyn_cast<ConstantSDNode>(Op)) {
3874     const APInt &Val = C->getAPIntValue();
3875     return Val.getNumSignBits();
3876   }
3877 
3878   if (Depth >= MaxRecursionDepth)
3879     return 1;  // Limit search depth.
3880 
3881   if (!DemandedElts || VT.isScalableVector())
3882     return 1;  // No demanded elts, better to assume we don't know anything.
3883 
3884   unsigned Opcode = Op.getOpcode();
3885   switch (Opcode) {
3886   default: break;
3887   case ISD::AssertSext:
3888     Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
3889     return VTBits-Tmp+1;
3890   case ISD::AssertZext:
3891     Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
3892     return VTBits-Tmp;
3893 
3894   case ISD::BUILD_VECTOR:
3895     Tmp = VTBits;
3896     for (unsigned i = 0, e = Op.getNumOperands(); (i < e) && (Tmp > 1); ++i) {
3897       if (!DemandedElts[i])
3898         continue;
3899 
3900       SDValue SrcOp = Op.getOperand(i);
3901       Tmp2 = ComputeNumSignBits(SrcOp, Depth + 1);
3902 
3903       // BUILD_VECTOR can implicitly truncate sources, we must handle this.
3904       if (SrcOp.getValueSizeInBits() != VTBits) {
3905         assert(SrcOp.getValueSizeInBits() > VTBits &&
3906                "Expected BUILD_VECTOR implicit truncation");
3907         unsigned ExtraBits = SrcOp.getValueSizeInBits() - VTBits;
3908         Tmp2 = (Tmp2 > ExtraBits ? Tmp2 - ExtraBits : 1);
3909       }
3910       Tmp = std::min(Tmp, Tmp2);
3911     }
3912     return Tmp;
3913 
3914   case ISD::VECTOR_SHUFFLE: {
3915     // Collect the minimum number of sign bits that are shared by every vector
3916     // element referenced by the shuffle.
3917     APInt DemandedLHS(NumElts, 0), DemandedRHS(NumElts, 0);
3918     const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op);
3919     assert(NumElts == SVN->getMask().size() && "Unexpected vector size");
3920     for (unsigned i = 0; i != NumElts; ++i) {
3921       int M = SVN->getMaskElt(i);
3922       if (!DemandedElts[i])
3923         continue;
3924       // For UNDEF elements, we don't know anything about the common state of
3925       // the shuffle result.
3926       if (M < 0)
3927         return 1;
3928       if ((unsigned)M < NumElts)
3929         DemandedLHS.setBit((unsigned)M % NumElts);
3930       else
3931         DemandedRHS.setBit((unsigned)M % NumElts);
3932     }
3933     Tmp = std::numeric_limits<unsigned>::max();
3934     if (!!DemandedLHS)
3935       Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedLHS, Depth + 1);
3936     if (!!DemandedRHS) {
3937       Tmp2 = ComputeNumSignBits(Op.getOperand(1), DemandedRHS, Depth + 1);
3938       Tmp = std::min(Tmp, Tmp2);
3939     }
3940     // If we don't know anything, early out and try computeKnownBits fall-back.
3941     if (Tmp == 1)
3942       break;
3943     assert(Tmp <= VTBits && "Failed to determine minimum sign bits");
3944     return Tmp;
3945   }
3946 
3947   case ISD::BITCAST: {
3948     SDValue N0 = Op.getOperand(0);
3949     EVT SrcVT = N0.getValueType();
3950     unsigned SrcBits = SrcVT.getScalarSizeInBits();
3951 
3952     // Ignore bitcasts from unsupported types..
3953     if (!(SrcVT.isInteger() || SrcVT.isFloatingPoint()))
3954       break;
3955 
3956     // Fast handling of 'identity' bitcasts.
3957     if (VTBits == SrcBits)
3958       return ComputeNumSignBits(N0, DemandedElts, Depth + 1);
3959 
3960     bool IsLE = getDataLayout().isLittleEndian();
3961 
3962     // Bitcast 'large element' scalar/vector to 'small element' vector.
3963     if ((SrcBits % VTBits) == 0) {
3964       assert(VT.isVector() && "Expected bitcast to vector");
3965 
3966       unsigned Scale = SrcBits / VTBits;
3967       APInt SrcDemandedElts =
3968           APIntOps::ScaleBitMask(DemandedElts, NumElts / Scale);
3969 
3970       // Fast case - sign splat can be simply split across the small elements.
3971       Tmp = ComputeNumSignBits(N0, SrcDemandedElts, Depth + 1);
3972       if (Tmp == SrcBits)
3973         return VTBits;
3974 
3975       // Slow case - determine how far the sign extends into each sub-element.
3976       Tmp2 = VTBits;
3977       for (unsigned i = 0; i != NumElts; ++i)
3978         if (DemandedElts[i]) {
3979           unsigned SubOffset = i % Scale;
3980           SubOffset = (IsLE ? ((Scale - 1) - SubOffset) : SubOffset);
3981           SubOffset = SubOffset * VTBits;
3982           if (Tmp <= SubOffset)
3983             return 1;
3984           Tmp2 = std::min(Tmp2, Tmp - SubOffset);
3985         }
3986       return Tmp2;
3987     }
3988     break;
3989   }
3990 
3991   case ISD::FP_TO_SINT_SAT:
3992     // FP_TO_SINT_SAT produces a signed value that fits in the saturating VT.
3993     Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getScalarSizeInBits();
3994     return VTBits - Tmp + 1;
3995   case ISD::SIGN_EXTEND:
3996     Tmp = VTBits - Op.getOperand(0).getScalarValueSizeInBits();
3997     return ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth+1) + Tmp;
3998   case ISD::SIGN_EXTEND_INREG:
3999     // Max of the input and what this extends.
4000     Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getScalarSizeInBits();
4001     Tmp = VTBits-Tmp+1;
4002     Tmp2 = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth+1);
4003     return std::max(Tmp, Tmp2);
4004   case ISD::SIGN_EXTEND_VECTOR_INREG: {
4005     SDValue Src = Op.getOperand(0);
4006     EVT SrcVT = Src.getValueType();
4007     APInt DemandedSrcElts = DemandedElts.zextOrSelf(SrcVT.getVectorNumElements());
4008     Tmp = VTBits - SrcVT.getScalarSizeInBits();
4009     return ComputeNumSignBits(Src, DemandedSrcElts, Depth+1) + Tmp;
4010   }
4011   case ISD::SRA:
4012     Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth + 1);
4013     // SRA X, C -> adds C sign bits.
4014     if (const APInt *ShAmt =
4015             getValidMinimumShiftAmountConstant(Op, DemandedElts))
4016       Tmp = std::min<uint64_t>(Tmp + ShAmt->getZExtValue(), VTBits);
4017     return Tmp;
4018   case ISD::SHL:
4019     if (const APInt *ShAmt =
4020             getValidMaximumShiftAmountConstant(Op, DemandedElts)) {
4021       // shl destroys sign bits, ensure it doesn't shift out all sign bits.
4022       Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth + 1);
4023       if (ShAmt->ult(Tmp))
4024         return Tmp - ShAmt->getZExtValue();
4025     }
4026     break;
4027   case ISD::AND:
4028   case ISD::OR:
4029   case ISD::XOR:    // NOT is handled here.
4030     // Logical binary ops preserve the number of sign bits at the worst.
4031     Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth+1);
4032     if (Tmp != 1) {
4033       Tmp2 = ComputeNumSignBits(Op.getOperand(1), DemandedElts, Depth+1);
4034       FirstAnswer = std::min(Tmp, Tmp2);
4035       // We computed what we know about the sign bits as our first
4036       // answer. Now proceed to the generic code that uses
4037       // computeKnownBits, and pick whichever answer is better.
4038     }
4039     break;
4040 
4041   case ISD::SELECT:
4042   case ISD::VSELECT:
4043     Tmp = ComputeNumSignBits(Op.getOperand(1), DemandedElts, Depth+1);
4044     if (Tmp == 1) return 1;  // Early out.
4045     Tmp2 = ComputeNumSignBits(Op.getOperand(2), DemandedElts, Depth+1);
4046     return std::min(Tmp, Tmp2);
4047   case ISD::SELECT_CC:
4048     Tmp = ComputeNumSignBits(Op.getOperand(2), DemandedElts, Depth+1);
4049     if (Tmp == 1) return 1;  // Early out.
4050     Tmp2 = ComputeNumSignBits(Op.getOperand(3), DemandedElts, Depth+1);
4051     return std::min(Tmp, Tmp2);
4052 
4053   case ISD::SMIN:
4054   case ISD::SMAX: {
4055     // If we have a clamp pattern, we know that the number of sign bits will be
4056     // the minimum of the clamp min/max range.
4057     bool IsMax = (Opcode == ISD::SMAX);
4058     ConstantSDNode *CstLow = nullptr, *CstHigh = nullptr;
4059     if ((CstLow = isConstOrConstSplat(Op.getOperand(1), DemandedElts)))
4060       if (Op.getOperand(0).getOpcode() == (IsMax ? ISD::SMIN : ISD::SMAX))
4061         CstHigh =
4062             isConstOrConstSplat(Op.getOperand(0).getOperand(1), DemandedElts);
4063     if (CstLow && CstHigh) {
4064       if (!IsMax)
4065         std::swap(CstLow, CstHigh);
4066       if (CstLow->getAPIntValue().sle(CstHigh->getAPIntValue())) {
4067         Tmp = CstLow->getAPIntValue().getNumSignBits();
4068         Tmp2 = CstHigh->getAPIntValue().getNumSignBits();
4069         return std::min(Tmp, Tmp2);
4070       }
4071     }
4072 
4073     // Fallback - just get the minimum number of sign bits of the operands.
4074     Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth + 1);
4075     if (Tmp == 1)
4076       return 1;  // Early out.
4077     Tmp2 = ComputeNumSignBits(Op.getOperand(1), DemandedElts, Depth + 1);
4078     return std::min(Tmp, Tmp2);
4079   }
4080   case ISD::UMIN:
4081   case ISD::UMAX:
4082     Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth + 1);
4083     if (Tmp == 1)
4084       return 1;  // Early out.
4085     Tmp2 = ComputeNumSignBits(Op.getOperand(1), DemandedElts, Depth + 1);
4086     return std::min(Tmp, Tmp2);
4087   case ISD::SADDO:
4088   case ISD::UADDO:
4089   case ISD::SSUBO:
4090   case ISD::USUBO:
4091   case ISD::SMULO:
4092   case ISD::UMULO:
4093     if (Op.getResNo() != 1)
4094       break;
4095     // The boolean result conforms to getBooleanContents.  Fall through.
4096     // If setcc returns 0/-1, all bits are sign bits.
4097     // We know that we have an integer-based boolean since these operations
4098     // are only available for integer.
4099     if (TLI->getBooleanContents(VT.isVector(), false) ==
4100         TargetLowering::ZeroOrNegativeOneBooleanContent)
4101       return VTBits;
4102     break;
4103   case ISD::SETCC:
4104   case ISD::STRICT_FSETCC:
4105   case ISD::STRICT_FSETCCS: {
4106     unsigned OpNo = Op->isStrictFPOpcode() ? 1 : 0;
4107     // If setcc returns 0/-1, all bits are sign bits.
4108     if (TLI->getBooleanContents(Op.getOperand(OpNo).getValueType()) ==
4109         TargetLowering::ZeroOrNegativeOneBooleanContent)
4110       return VTBits;
4111     break;
4112   }
4113   case ISD::ROTL:
4114   case ISD::ROTR:
4115     Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth + 1);
4116 
4117     // If we're rotating an 0/-1 value, then it stays an 0/-1 value.
4118     if (Tmp == VTBits)
4119       return VTBits;
4120 
4121     if (ConstantSDNode *C =
4122             isConstOrConstSplat(Op.getOperand(1), DemandedElts)) {
4123       unsigned RotAmt = C->getAPIntValue().urem(VTBits);
4124 
4125       // Handle rotate right by N like a rotate left by 32-N.
4126       if (Opcode == ISD::ROTR)
4127         RotAmt = (VTBits - RotAmt) % VTBits;
4128 
4129       // If we aren't rotating out all of the known-in sign bits, return the
4130       // number that are left.  This handles rotl(sext(x), 1) for example.
4131       if (Tmp > (RotAmt + 1)) return (Tmp - RotAmt);
4132     }
4133     break;
4134   case ISD::ADD:
4135   case ISD::ADDC:
4136     // Add can have at most one carry bit.  Thus we know that the output
4137     // is, at worst, one more bit than the inputs.
4138     Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth + 1);
4139     if (Tmp == 1) return 1; // Early out.
4140 
4141     // Special case decrementing a value (ADD X, -1):
4142     if (ConstantSDNode *CRHS =
4143             isConstOrConstSplat(Op.getOperand(1), DemandedElts))
4144       if (CRHS->isAllOnes()) {
4145         KnownBits Known =
4146             computeKnownBits(Op.getOperand(0), DemandedElts, Depth + 1);
4147 
4148         // If the input is known to be 0 or 1, the output is 0/-1, which is all
4149         // sign bits set.
4150         if ((Known.Zero | 1).isAllOnes())
4151           return VTBits;
4152 
4153         // If we are subtracting one from a positive number, there is no carry
4154         // out of the result.
4155         if (Known.isNonNegative())
4156           return Tmp;
4157       }
4158 
4159     Tmp2 = ComputeNumSignBits(Op.getOperand(1), DemandedElts, Depth + 1);
4160     if (Tmp2 == 1) return 1; // Early out.
4161     return std::min(Tmp, Tmp2) - 1;
4162   case ISD::SUB:
4163     Tmp2 = ComputeNumSignBits(Op.getOperand(1), DemandedElts, Depth + 1);
4164     if (Tmp2 == 1) return 1; // Early out.
4165 
4166     // Handle NEG.
4167     if (ConstantSDNode *CLHS =
4168             isConstOrConstSplat(Op.getOperand(0), DemandedElts))
4169       if (CLHS->isZero()) {
4170         KnownBits Known =
4171             computeKnownBits(Op.getOperand(1), DemandedElts, Depth + 1);
4172         // If the input is known to be 0 or 1, the output is 0/-1, which is all
4173         // sign bits set.
4174         if ((Known.Zero | 1).isAllOnes())
4175           return VTBits;
4176 
4177         // If the input is known to be positive (the sign bit is known clear),
4178         // the output of the NEG has the same number of sign bits as the input.
4179         if (Known.isNonNegative())
4180           return Tmp2;
4181 
4182         // Otherwise, we treat this like a SUB.
4183       }
4184 
4185     // Sub can have at most one carry bit.  Thus we know that the output
4186     // is, at worst, one more bit than the inputs.
4187     Tmp = ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth + 1);
4188     if (Tmp == 1) return 1; // Early out.
4189     return std::min(Tmp, Tmp2) - 1;
4190   case ISD::MUL: {
4191     // The output of the Mul can be at most twice the valid bits in the inputs.
4192     unsigned SignBitsOp0 = ComputeNumSignBits(Op.getOperand(0), Depth + 1);
4193     if (SignBitsOp0 == 1)
4194       break;
4195     unsigned SignBitsOp1 = ComputeNumSignBits(Op.getOperand(1), Depth + 1);
4196     if (SignBitsOp1 == 1)
4197       break;
4198     unsigned OutValidBits =
4199         (VTBits - SignBitsOp0 + 1) + (VTBits - SignBitsOp1 + 1);
4200     return OutValidBits > VTBits ? 1 : VTBits - OutValidBits + 1;
4201   }
4202   case ISD::SREM:
4203     // The sign bit is the LHS's sign bit, except when the result of the
4204     // remainder is zero. The magnitude of the result should be less than or
4205     // equal to the magnitude of the LHS. Therefore, the result should have
4206     // at least as many sign bits as the left hand side.
4207     return ComputeNumSignBits(Op.getOperand(0), DemandedElts, Depth + 1);
4208   case ISD::TRUNCATE: {
4209     // Check if the sign bits of source go down as far as the truncated value.
4210     unsigned NumSrcBits = Op.getOperand(0).getScalarValueSizeInBits();
4211     unsigned NumSrcSignBits = ComputeNumSignBits(Op.getOperand(0), Depth + 1);
4212     if (NumSrcSignBits > (NumSrcBits - VTBits))
4213       return NumSrcSignBits - (NumSrcBits - VTBits);
4214     break;
4215   }
4216   case ISD::EXTRACT_ELEMENT: {
4217     const int KnownSign = ComputeNumSignBits(Op.getOperand(0), Depth+1);
4218     const int BitWidth = Op.getValueSizeInBits();
4219     const int Items = Op.getOperand(0).getValueSizeInBits() / BitWidth;
4220 
4221     // Get reverse index (starting from 1), Op1 value indexes elements from
4222     // little end. Sign starts at big end.
4223     const int rIndex = Items - 1 - Op.getConstantOperandVal(1);
4224 
4225     // If the sign portion ends in our element the subtraction gives correct
4226     // result. Otherwise it gives either negative or > bitwidth result
4227     return std::max(std::min(KnownSign - rIndex * BitWidth, BitWidth), 0);
4228   }
4229   case ISD::INSERT_VECTOR_ELT: {
4230     // If we know the element index, split the demand between the
4231     // source vector and the inserted element, otherwise assume we need
4232     // the original demanded vector elements and the value.
4233     SDValue InVec = Op.getOperand(0);
4234     SDValue InVal = Op.getOperand(1);
4235     SDValue EltNo = Op.getOperand(2);
4236     bool DemandedVal = true;
4237     APInt DemandedVecElts = DemandedElts;
4238     auto *CEltNo = dyn_cast<ConstantSDNode>(EltNo);
4239     if (CEltNo && CEltNo->getAPIntValue().ult(NumElts)) {
4240       unsigned EltIdx = CEltNo->getZExtValue();
4241       DemandedVal = !!DemandedElts[EltIdx];
4242       DemandedVecElts.clearBit(EltIdx);
4243     }
4244     Tmp = std::numeric_limits<unsigned>::max();
4245     if (DemandedVal) {
4246       // TODO - handle implicit truncation of inserted elements.
4247       if (InVal.getScalarValueSizeInBits() != VTBits)
4248         break;
4249       Tmp2 = ComputeNumSignBits(InVal, Depth + 1);
4250       Tmp = std::min(Tmp, Tmp2);
4251     }
4252     if (!!DemandedVecElts) {
4253       Tmp2 = ComputeNumSignBits(InVec, DemandedVecElts, Depth + 1);
4254       Tmp = std::min(Tmp, Tmp2);
4255     }
4256     assert(Tmp <= VTBits && "Failed to determine minimum sign bits");
4257     return Tmp;
4258   }
4259   case ISD::EXTRACT_VECTOR_ELT: {
4260     SDValue InVec = Op.getOperand(0);
4261     SDValue EltNo = Op.getOperand(1);
4262     EVT VecVT = InVec.getValueType();
4263     // ComputeNumSignBits not yet implemented for scalable vectors.
4264     if (VecVT.isScalableVector())
4265       break;
4266     const unsigned BitWidth = Op.getValueSizeInBits();
4267     const unsigned EltBitWidth = Op.getOperand(0).getScalarValueSizeInBits();
4268     const unsigned NumSrcElts = VecVT.getVectorNumElements();
4269 
4270     // If BitWidth > EltBitWidth the value is anyext:ed, and we do not know
4271     // anything about sign bits. But if the sizes match we can derive knowledge
4272     // about sign bits from the vector operand.
4273     if (BitWidth != EltBitWidth)
4274       break;
4275 
4276     // If we know the element index, just demand that vector element, else for
4277     // an unknown element index, ignore DemandedElts and demand them all.
4278     APInt DemandedSrcElts = APInt::getAllOnes(NumSrcElts);
4279     auto *ConstEltNo = dyn_cast<ConstantSDNode>(EltNo);
4280     if (ConstEltNo && ConstEltNo->getAPIntValue().ult(NumSrcElts))
4281       DemandedSrcElts =
4282           APInt::getOneBitSet(NumSrcElts, ConstEltNo->getZExtValue());
4283 
4284     return ComputeNumSignBits(InVec, DemandedSrcElts, Depth + 1);
4285   }
4286   case ISD::EXTRACT_SUBVECTOR: {
4287     // Offset the demanded elts by the subvector index.
4288     SDValue Src = Op.getOperand(0);
4289     // Bail until we can represent demanded elements for scalable vectors.
4290     if (Src.getValueType().isScalableVector())
4291       break;
4292     uint64_t Idx = Op.getConstantOperandVal(1);
4293     unsigned NumSrcElts = Src.getValueType().getVectorNumElements();
4294     APInt DemandedSrcElts = DemandedElts.zextOrSelf(NumSrcElts).shl(Idx);
4295     return ComputeNumSignBits(Src, DemandedSrcElts, Depth + 1);
4296   }
4297   case ISD::CONCAT_VECTORS: {
4298     // Determine the minimum number of sign bits across all demanded
4299     // elts of the input vectors. Early out if the result is already 1.
4300     Tmp = std::numeric_limits<unsigned>::max();
4301     EVT SubVectorVT = Op.getOperand(0).getValueType();
4302     unsigned NumSubVectorElts = SubVectorVT.getVectorNumElements();
4303     unsigned NumSubVectors = Op.getNumOperands();
4304     for (unsigned i = 0; (i < NumSubVectors) && (Tmp > 1); ++i) {
4305       APInt DemandedSub =
4306           DemandedElts.extractBits(NumSubVectorElts, i * NumSubVectorElts);
4307       if (!DemandedSub)
4308         continue;
4309       Tmp2 = ComputeNumSignBits(Op.getOperand(i), DemandedSub, Depth + 1);
4310       Tmp = std::min(Tmp, Tmp2);
4311     }
4312     assert(Tmp <= VTBits && "Failed to determine minimum sign bits");
4313     return Tmp;
4314   }
4315   case ISD::INSERT_SUBVECTOR: {
4316     // Demand any elements from the subvector and the remainder from the src its
4317     // inserted into.
4318     SDValue Src = Op.getOperand(0);
4319     SDValue Sub = Op.getOperand(1);
4320     uint64_t Idx = Op.getConstantOperandVal(2);
4321     unsigned NumSubElts = Sub.getValueType().getVectorNumElements();
4322     APInt DemandedSubElts = DemandedElts.extractBits(NumSubElts, Idx);
4323     APInt DemandedSrcElts = DemandedElts;
4324     DemandedSrcElts.insertBits(APInt::getZero(NumSubElts), Idx);
4325 
4326     Tmp = std::numeric_limits<unsigned>::max();
4327     if (!!DemandedSubElts) {
4328       Tmp = ComputeNumSignBits(Sub, DemandedSubElts, Depth + 1);
4329       if (Tmp == 1)
4330         return 1; // early-out
4331     }
4332     if (!!DemandedSrcElts) {
4333       Tmp2 = ComputeNumSignBits(Src, DemandedSrcElts, Depth + 1);
4334       Tmp = std::min(Tmp, Tmp2);
4335     }
4336     assert(Tmp <= VTBits && "Failed to determine minimum sign bits");
4337     return Tmp;
4338   }
4339   case ISD::ATOMIC_CMP_SWAP:
4340   case ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS:
4341   case ISD::ATOMIC_SWAP:
4342   case ISD::ATOMIC_LOAD_ADD:
4343   case ISD::ATOMIC_LOAD_SUB:
4344   case ISD::ATOMIC_LOAD_AND:
4345   case ISD::ATOMIC_LOAD_CLR:
4346   case ISD::ATOMIC_LOAD_OR:
4347   case ISD::ATOMIC_LOAD_XOR:
4348   case ISD::ATOMIC_LOAD_NAND:
4349   case ISD::ATOMIC_LOAD_MIN:
4350   case ISD::ATOMIC_LOAD_MAX:
4351   case ISD::ATOMIC_LOAD_UMIN:
4352   case ISD::ATOMIC_LOAD_UMAX:
4353   case ISD::ATOMIC_LOAD: {
4354     Tmp = cast<AtomicSDNode>(Op)->getMemoryVT().getScalarSizeInBits();
4355     // If we are looking at the loaded value.
4356     if (Op.getResNo() == 0) {
4357       if (Tmp == VTBits)
4358         return 1; // early-out
4359       if (TLI->getExtendForAtomicOps() == ISD::SIGN_EXTEND)
4360         return VTBits - Tmp + 1;
4361       if (TLI->getExtendForAtomicOps() == ISD::ZERO_EXTEND)
4362         return VTBits - Tmp;
4363     }
4364     break;
4365   }
4366   }
4367 
4368   // If we are looking at the loaded value of the SDNode.
4369   if (Op.getResNo() == 0) {
4370     // Handle LOADX separately here. EXTLOAD case will fallthrough.
4371     if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
4372       unsigned ExtType = LD->getExtensionType();
4373       switch (ExtType) {
4374       default: break;
4375       case ISD::SEXTLOAD: // e.g. i16->i32 = '17' bits known.
4376         Tmp = LD->getMemoryVT().getScalarSizeInBits();
4377         return VTBits - Tmp + 1;
4378       case ISD::ZEXTLOAD: // e.g. i16->i32 = '16' bits known.
4379         Tmp = LD->getMemoryVT().getScalarSizeInBits();
4380         return VTBits - Tmp;
4381       case ISD::NON_EXTLOAD:
4382         if (const Constant *Cst = TLI->getTargetConstantFromLoad(LD)) {
4383           // We only need to handle vectors - computeKnownBits should handle
4384           // scalar cases.
4385           Type *CstTy = Cst->getType();
4386           if (CstTy->isVectorTy() &&
4387               (NumElts * VTBits) == CstTy->getPrimitiveSizeInBits() &&
4388               VTBits == CstTy->getScalarSizeInBits()) {
4389             Tmp = VTBits;
4390             for (unsigned i = 0; i != NumElts; ++i) {
4391               if (!DemandedElts[i])
4392                 continue;
4393               if (Constant *Elt = Cst->getAggregateElement(i)) {
4394                 if (auto *CInt = dyn_cast<ConstantInt>(Elt)) {
4395                   const APInt &Value = CInt->getValue();
4396                   Tmp = std::min(Tmp, Value.getNumSignBits());
4397                   continue;
4398                 }
4399                 if (auto *CFP = dyn_cast<ConstantFP>(Elt)) {
4400                   APInt Value = CFP->getValueAPF().bitcastToAPInt();
4401                   Tmp = std::min(Tmp, Value.getNumSignBits());
4402                   continue;
4403                 }
4404               }
4405               // Unknown type. Conservatively assume no bits match sign bit.
4406               return 1;
4407             }
4408             return Tmp;
4409           }
4410         }
4411         break;
4412       }
4413     }
4414   }
4415 
4416   // Allow the target to implement this method for its nodes.
4417   if (Opcode >= ISD::BUILTIN_OP_END ||
4418       Opcode == ISD::INTRINSIC_WO_CHAIN ||
4419       Opcode == ISD::INTRINSIC_W_CHAIN ||
4420       Opcode == ISD::INTRINSIC_VOID) {
4421     unsigned NumBits =
4422         TLI->ComputeNumSignBitsForTargetNode(Op, DemandedElts, *this, Depth);
4423     if (NumBits > 1)
4424       FirstAnswer = std::max(FirstAnswer, NumBits);
4425   }
4426 
4427   // Finally, if we can prove that the top bits of the result are 0's or 1's,
4428   // use this information.
4429   KnownBits Known = computeKnownBits(Op, DemandedElts, Depth);
4430   return std::max(FirstAnswer, Known.countMinSignBits());
4431 }
4432 
4433 unsigned SelectionDAG::ComputeMaxSignificantBits(SDValue Op,
4434                                                  unsigned Depth) const {
4435   unsigned SignBits = ComputeNumSignBits(Op, Depth);
4436   return Op.getScalarValueSizeInBits() - SignBits + 1;
4437 }
4438 
4439 unsigned SelectionDAG::ComputeMaxSignificantBits(SDValue Op,
4440                                                  const APInt &DemandedElts,
4441                                                  unsigned Depth) const {
4442   unsigned SignBits = ComputeNumSignBits(Op, DemandedElts, Depth);
4443   return Op.getScalarValueSizeInBits() - SignBits + 1;
4444 }
4445 
4446 bool SelectionDAG::isGuaranteedNotToBeUndefOrPoison(SDValue Op, bool PoisonOnly,
4447                                                     unsigned Depth) const {
4448   // Early out for FREEZE.
4449   if (Op.getOpcode() == ISD::FREEZE)
4450     return true;
4451 
4452   // TODO: Assume we don't know anything for now.
4453   EVT VT = Op.getValueType();
4454   if (VT.isScalableVector())
4455     return false;
4456 
4457   APInt DemandedElts = VT.isVector()
4458                            ? APInt::getAllOnes(VT.getVectorNumElements())
4459                            : APInt(1, 1);
4460   return isGuaranteedNotToBeUndefOrPoison(Op, DemandedElts, PoisonOnly, Depth);
4461 }
4462 
4463 bool SelectionDAG::isGuaranteedNotToBeUndefOrPoison(SDValue Op,
4464                                                     const APInt &DemandedElts,
4465                                                     bool PoisonOnly,
4466                                                     unsigned Depth) const {
4467   unsigned Opcode = Op.getOpcode();
4468 
4469   // Early out for FREEZE.
4470   if (Opcode == ISD::FREEZE)
4471     return true;
4472 
4473   if (Depth >= MaxRecursionDepth)
4474     return false; // Limit search depth.
4475 
4476   if (isIntOrFPConstant(Op))
4477     return true;
4478 
4479   switch (Opcode) {
4480   case ISD::UNDEF:
4481     return PoisonOnly;
4482 
4483   case ISD::BUILD_VECTOR:
4484     // NOTE: BUILD_VECTOR has implicit truncation of wider scalar elements -
4485     // this shouldn't affect the result.
4486     for (unsigned i = 0, e = Op.getNumOperands(); i < e; ++i) {
4487       if (!DemandedElts[i])
4488         continue;
4489       if (!isGuaranteedNotToBeUndefOrPoison(Op.getOperand(i), PoisonOnly,
4490                                             Depth + 1))
4491         return false;
4492     }
4493     return true;
4494 
4495   // TODO: Search for noundef attributes from library functions.
4496 
4497   // TODO: Pointers dereferenced by ISD::LOAD/STORE ops are noundef.
4498 
4499   default:
4500     // Allow the target to implement this method for its nodes.
4501     if (Opcode >= ISD::BUILTIN_OP_END || Opcode == ISD::INTRINSIC_WO_CHAIN ||
4502         Opcode == ISD::INTRINSIC_W_CHAIN || Opcode == ISD::INTRINSIC_VOID)
4503       return TLI->isGuaranteedNotToBeUndefOrPoisonForTargetNode(
4504           Op, DemandedElts, *this, PoisonOnly, Depth);
4505     break;
4506   }
4507 
4508   return false;
4509 }
4510 
4511 bool SelectionDAG::isBaseWithConstantOffset(SDValue Op) const {
4512   if ((Op.getOpcode() != ISD::ADD && Op.getOpcode() != ISD::OR) ||
4513       !isa<ConstantSDNode>(Op.getOperand(1)))
4514     return false;
4515 
4516   if (Op.getOpcode() == ISD::OR &&
4517       !MaskedValueIsZero(Op.getOperand(0), Op.getConstantOperandAPInt(1)))
4518     return false;
4519 
4520   return true;
4521 }
4522 
4523 bool SelectionDAG::isKnownNeverNaN(SDValue Op, bool SNaN, unsigned Depth) const {
4524   // If we're told that NaNs won't happen, assume they won't.
4525   if (getTarget().Options.NoNaNsFPMath || Op->getFlags().hasNoNaNs())
4526     return true;
4527 
4528   if (Depth >= MaxRecursionDepth)
4529     return false; // Limit search depth.
4530 
4531   // TODO: Handle vectors.
4532   // If the value is a constant, we can obviously see if it is a NaN or not.
4533   if (const ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Op)) {
4534     return !C->getValueAPF().isNaN() ||
4535            (SNaN && !C->getValueAPF().isSignaling());
4536   }
4537 
4538   unsigned Opcode = Op.getOpcode();
4539   switch (Opcode) {
4540   case ISD::FADD:
4541   case ISD::FSUB:
4542   case ISD::FMUL:
4543   case ISD::FDIV:
4544   case ISD::FREM:
4545   case ISD::FSIN:
4546   case ISD::FCOS: {
4547     if (SNaN)
4548       return true;
4549     // TODO: Need isKnownNeverInfinity
4550     return false;
4551   }
4552   case ISD::FCANONICALIZE:
4553   case ISD::FEXP:
4554   case ISD::FEXP2:
4555   case ISD::FTRUNC:
4556   case ISD::FFLOOR:
4557   case ISD::FCEIL:
4558   case ISD::FROUND:
4559   case ISD::FROUNDEVEN:
4560   case ISD::FRINT:
4561   case ISD::FNEARBYINT: {
4562     if (SNaN)
4563       return true;
4564     return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1);
4565   }
4566   case ISD::FABS:
4567   case ISD::FNEG:
4568   case ISD::FCOPYSIGN: {
4569     return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1);
4570   }
4571   case ISD::SELECT:
4572     return isKnownNeverNaN(Op.getOperand(1), SNaN, Depth + 1) &&
4573            isKnownNeverNaN(Op.getOperand(2), SNaN, Depth + 1);
4574   case ISD::FP_EXTEND:
4575   case ISD::FP_ROUND: {
4576     if (SNaN)
4577       return true;
4578     return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1);
4579   }
4580   case ISD::SINT_TO_FP:
4581   case ISD::UINT_TO_FP:
4582     return true;
4583   case ISD::FMA:
4584   case ISD::FMAD: {
4585     if (SNaN)
4586       return true;
4587     return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1) &&
4588            isKnownNeverNaN(Op.getOperand(1), SNaN, Depth + 1) &&
4589            isKnownNeverNaN(Op.getOperand(2), SNaN, Depth + 1);
4590   }
4591   case ISD::FSQRT: // Need is known positive
4592   case ISD::FLOG:
4593   case ISD::FLOG2:
4594   case ISD::FLOG10:
4595   case ISD::FPOWI:
4596   case ISD::FPOW: {
4597     if (SNaN)
4598       return true;
4599     // TODO: Refine on operand
4600     return false;
4601   }
4602   case ISD::FMINNUM:
4603   case ISD::FMAXNUM: {
4604     // Only one needs to be known not-nan, since it will be returned if the
4605     // other ends up being one.
4606     return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1) ||
4607            isKnownNeverNaN(Op.getOperand(1), SNaN, Depth + 1);
4608   }
4609   case ISD::FMINNUM_IEEE:
4610   case ISD::FMAXNUM_IEEE: {
4611     if (SNaN)
4612       return true;
4613     // This can return a NaN if either operand is an sNaN, or if both operands
4614     // are NaN.
4615     return (isKnownNeverNaN(Op.getOperand(0), false, Depth + 1) &&
4616             isKnownNeverSNaN(Op.getOperand(1), Depth + 1)) ||
4617            (isKnownNeverNaN(Op.getOperand(1), false, Depth + 1) &&
4618             isKnownNeverSNaN(Op.getOperand(0), Depth + 1));
4619   }
4620   case ISD::FMINIMUM:
4621   case ISD::FMAXIMUM: {
4622     // TODO: Does this quiet or return the origina NaN as-is?
4623     return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1) &&
4624            isKnownNeverNaN(Op.getOperand(1), SNaN, Depth + 1);
4625   }
4626   case ISD::EXTRACT_VECTOR_ELT: {
4627     return isKnownNeverNaN(Op.getOperand(0), SNaN, Depth + 1);
4628   }
4629   default:
4630     if (Opcode >= ISD::BUILTIN_OP_END ||
4631         Opcode == ISD::INTRINSIC_WO_CHAIN ||
4632         Opcode == ISD::INTRINSIC_W_CHAIN ||
4633         Opcode == ISD::INTRINSIC_VOID) {
4634       return TLI->isKnownNeverNaNForTargetNode(Op, *this, SNaN, Depth);
4635     }
4636 
4637     return false;
4638   }
4639 }
4640 
4641 bool SelectionDAG::isKnownNeverZeroFloat(SDValue Op) const {
4642   assert(Op.getValueType().isFloatingPoint() &&
4643          "Floating point type expected");
4644 
4645   // If the value is a constant, we can obviously see if it is a zero or not.
4646   // TODO: Add BuildVector support.
4647   if (const ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Op))
4648     return !C->isZero();
4649   return false;
4650 }
4651 
4652 bool SelectionDAG::isKnownNeverZero(SDValue Op) const {
4653   assert(!Op.getValueType().isFloatingPoint() &&
4654          "Floating point types unsupported - use isKnownNeverZeroFloat");
4655 
4656   // If the value is a constant, we can obviously see if it is a zero or not.
4657   if (ISD::matchUnaryPredicate(Op,
4658                                [](ConstantSDNode *C) { return !C->isZero(); }))
4659     return true;
4660 
4661   // TODO: Recognize more cases here.
4662   switch (Op.getOpcode()) {
4663   default: break;
4664   case ISD::OR:
4665     if (isKnownNeverZero(Op.getOperand(1)) ||
4666         isKnownNeverZero(Op.getOperand(0)))
4667       return true;
4668     break;
4669   }
4670 
4671   return false;
4672 }
4673 
4674 bool SelectionDAG::isEqualTo(SDValue A, SDValue B) const {
4675   // Check the obvious case.
4676   if (A == B) return true;
4677 
4678   // For for negative and positive zero.
4679   if (const ConstantFPSDNode *CA = dyn_cast<ConstantFPSDNode>(A))
4680     if (const ConstantFPSDNode *CB = dyn_cast<ConstantFPSDNode>(B))
4681       if (CA->isZero() && CB->isZero()) return true;
4682 
4683   // Otherwise they may not be equal.
4684   return false;
4685 }
4686 
4687 // Only bits set in Mask must be negated, other bits may be arbitrary.
4688 static SDValue getBitwiseNotOperand(SDValue V, SDValue Mask) {
4689   if (isBitwiseNot(V, true))
4690     return V.getOperand(0);
4691 
4692   // Handle any_extend (not (truncate X)) pattern, where Mask only sets
4693   // bits in the non-extended part.
4694   ConstantSDNode *MaskC = isConstOrConstSplat(Mask);
4695   if (!MaskC || V.getOpcode() != ISD::ANY_EXTEND)
4696     return SDValue();
4697   SDValue ExtArg = V.getOperand(0);
4698   if (ExtArg.getScalarValueSizeInBits() >=
4699           MaskC->getAPIntValue().getActiveBits() &&
4700       isBitwiseNot(ExtArg, true) &&
4701       ExtArg.getOperand(0).getOpcode() == ISD::TRUNCATE &&
4702       ExtArg.getOperand(0).getOperand(0).getValueType() == V.getValueType())
4703     return ExtArg.getOperand(0).getOperand(0);
4704   return SDValue();
4705 }
4706 
4707 static bool haveNoCommonBitsSetCommutative(SDValue A, SDValue B) {
4708   // Match masked merge pattern (X & ~M) op (Y & M)
4709   // Including degenerate case (X & ~M) op M
4710   auto MatchNoCommonBitsPattern = [&](SDValue Not, SDValue Mask,
4711                                       SDValue Other) {
4712     if (SDValue NotOperand = getBitwiseNotOperand(Not, Mask)) {
4713       if (Other == NotOperand)
4714         return true;
4715       if (Other->getOpcode() == ISD::AND)
4716         return NotOperand == Other->getOperand(0) ||
4717                NotOperand == Other->getOperand(1);
4718     }
4719     return false;
4720   };
4721   if (A->getOpcode() == ISD::AND)
4722     return MatchNoCommonBitsPattern(A->getOperand(0), A->getOperand(1), B) ||
4723            MatchNoCommonBitsPattern(A->getOperand(1), A->getOperand(0), B);
4724   return false;
4725 }
4726 
4727 // FIXME: unify with llvm::haveNoCommonBitsSet.
4728 bool SelectionDAG::haveNoCommonBitsSet(SDValue A, SDValue B) const {
4729   assert(A.getValueType() == B.getValueType() &&
4730          "Values must have the same type");
4731   if (haveNoCommonBitsSetCommutative(A, B) ||
4732       haveNoCommonBitsSetCommutative(B, A))
4733     return true;
4734   return KnownBits::haveNoCommonBitsSet(computeKnownBits(A),
4735                                         computeKnownBits(B));
4736 }
4737 
4738 static SDValue FoldSTEP_VECTOR(const SDLoc &DL, EVT VT, SDValue Step,
4739                                SelectionDAG &DAG) {
4740   if (cast<ConstantSDNode>(Step)->isZero())
4741     return DAG.getConstant(0, DL, VT);
4742 
4743   return SDValue();
4744 }
4745 
4746 static SDValue FoldBUILD_VECTOR(const SDLoc &DL, EVT VT,
4747                                 ArrayRef<SDValue> Ops,
4748                                 SelectionDAG &DAG) {
4749   int NumOps = Ops.size();
4750   assert(NumOps != 0 && "Can't build an empty vector!");
4751   assert(!VT.isScalableVector() &&
4752          "BUILD_VECTOR cannot be used with scalable types");
4753   assert(VT.getVectorNumElements() == (unsigned)NumOps &&
4754          "Incorrect element count in BUILD_VECTOR!");
4755 
4756   // BUILD_VECTOR of UNDEFs is UNDEF.
4757   if (llvm::all_of(Ops, [](SDValue Op) { return Op.isUndef(); }))
4758     return DAG.getUNDEF(VT);
4759 
4760   // BUILD_VECTOR of seq extract/insert from the same vector + type is Identity.
4761   SDValue IdentitySrc;
4762   bool IsIdentity = true;
4763   for (int i = 0; i != NumOps; ++i) {
4764     if (Ops[i].getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
4765         Ops[i].getOperand(0).getValueType() != VT ||
4766         (IdentitySrc && Ops[i].getOperand(0) != IdentitySrc) ||
4767         !isa<ConstantSDNode>(Ops[i].getOperand(1)) ||
4768         cast<ConstantSDNode>(Ops[i].getOperand(1))->getAPIntValue() != i) {
4769       IsIdentity = false;
4770       break;
4771     }
4772     IdentitySrc = Ops[i].getOperand(0);
4773   }
4774   if (IsIdentity)
4775     return IdentitySrc;
4776 
4777   return SDValue();
4778 }
4779 
4780 /// Try to simplify vector concatenation to an input value, undef, or build
4781 /// vector.
4782 static SDValue foldCONCAT_VECTORS(const SDLoc &DL, EVT VT,
4783                                   ArrayRef<SDValue> Ops,
4784                                   SelectionDAG &DAG) {
4785   assert(!Ops.empty() && "Can't concatenate an empty list of vectors!");
4786   assert(llvm::all_of(Ops,
4787                       [Ops](SDValue Op) {
4788                         return Ops[0].getValueType() == Op.getValueType();
4789                       }) &&
4790          "Concatenation of vectors with inconsistent value types!");
4791   assert((Ops[0].getValueType().getVectorElementCount() * Ops.size()) ==
4792              VT.getVectorElementCount() &&
4793          "Incorrect element count in vector concatenation!");
4794 
4795   if (Ops.size() == 1)
4796     return Ops[0];
4797 
4798   // Concat of UNDEFs is UNDEF.
4799   if (llvm::all_of(Ops, [](SDValue Op) { return Op.isUndef(); }))
4800     return DAG.getUNDEF(VT);
4801 
4802   // Scan the operands and look for extract operations from a single source
4803   // that correspond to insertion at the same location via this concatenation:
4804   // concat (extract X, 0*subvec_elts), (extract X, 1*subvec_elts), ...
4805   SDValue IdentitySrc;
4806   bool IsIdentity = true;
4807   for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
4808     SDValue Op = Ops[i];
4809     unsigned IdentityIndex = i * Op.getValueType().getVectorMinNumElements();
4810     if (Op.getOpcode() != ISD::EXTRACT_SUBVECTOR ||
4811         Op.getOperand(0).getValueType() != VT ||
4812         (IdentitySrc && Op.getOperand(0) != IdentitySrc) ||
4813         Op.getConstantOperandVal(1) != IdentityIndex) {
4814       IsIdentity = false;
4815       break;
4816     }
4817     assert((!IdentitySrc || IdentitySrc == Op.getOperand(0)) &&
4818            "Unexpected identity source vector for concat of extracts");
4819     IdentitySrc = Op.getOperand(0);
4820   }
4821   if (IsIdentity) {
4822     assert(IdentitySrc && "Failed to set source vector of extracts");
4823     return IdentitySrc;
4824   }
4825 
4826   // The code below this point is only designed to work for fixed width
4827   // vectors, so we bail out for now.
4828   if (VT.isScalableVector())
4829     return SDValue();
4830 
4831   // A CONCAT_VECTOR with all UNDEF/BUILD_VECTOR operands can be
4832   // simplified to one big BUILD_VECTOR.
4833   // FIXME: Add support for SCALAR_TO_VECTOR as well.
4834   EVT SVT = VT.getScalarType();
4835   SmallVector<SDValue, 16> Elts;
4836   for (SDValue Op : Ops) {
4837     EVT OpVT = Op.getValueType();
4838     if (Op.isUndef())
4839       Elts.append(OpVT.getVectorNumElements(), DAG.getUNDEF(SVT));
4840     else if (Op.getOpcode() == ISD::BUILD_VECTOR)
4841       Elts.append(Op->op_begin(), Op->op_end());
4842     else
4843       return SDValue();
4844   }
4845 
4846   // BUILD_VECTOR requires all inputs to be of the same type, find the
4847   // maximum type and extend them all.
4848   for (SDValue Op : Elts)
4849     SVT = (SVT.bitsLT(Op.getValueType()) ? Op.getValueType() : SVT);
4850 
4851   if (SVT.bitsGT(VT.getScalarType())) {
4852     for (SDValue &Op : Elts) {
4853       if (Op.isUndef())
4854         Op = DAG.getUNDEF(SVT);
4855       else
4856         Op = DAG.getTargetLoweringInfo().isZExtFree(Op.getValueType(), SVT)
4857                  ? DAG.getZExtOrTrunc(Op, DL, SVT)
4858                  : DAG.getSExtOrTrunc(Op, DL, SVT);
4859     }
4860   }
4861 
4862   SDValue V = DAG.getBuildVector(VT, DL, Elts);
4863   NewSDValueDbgMsg(V, "New node fold concat vectors: ", &DAG);
4864   return V;
4865 }
4866 
4867 /// Gets or creates the specified node.
4868 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT) {
4869   FoldingSetNodeID ID;
4870   AddNodeIDNode(ID, Opcode, getVTList(VT), None);
4871   void *IP = nullptr;
4872   if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP))
4873     return SDValue(E, 0);
4874 
4875   auto *N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(),
4876                               getVTList(VT));
4877   CSEMap.InsertNode(N, IP);
4878 
4879   InsertNode(N);
4880   SDValue V = SDValue(N, 0);
4881   NewSDValueDbgMsg(V, "Creating new node: ", this);
4882   return V;
4883 }
4884 
4885 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
4886                               SDValue Operand) {
4887   SDNodeFlags Flags;
4888   if (Inserter)
4889     Flags = Inserter->getFlags();
4890   return getNode(Opcode, DL, VT, Operand, Flags);
4891 }
4892 
4893 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
4894                               SDValue Operand, const SDNodeFlags Flags) {
4895   assert(Operand.getOpcode() != ISD::DELETED_NODE &&
4896          "Operand is DELETED_NODE!");
4897   // Constant fold unary operations with an integer constant operand. Even
4898   // opaque constant will be folded, because the folding of unary operations
4899   // doesn't create new constants with different values. Nevertheless, the
4900   // opaque flag is preserved during folding to prevent future folding with
4901   // other constants.
4902   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand)) {
4903     const APInt &Val = C->getAPIntValue();
4904     switch (Opcode) {
4905     default: break;
4906     case ISD::SIGN_EXTEND:
4907       return getConstant(Val.sextOrTrunc(VT.getSizeInBits()), DL, VT,
4908                          C->isTargetOpcode(), C->isOpaque());
4909     case ISD::TRUNCATE:
4910       if (C->isOpaque())
4911         break;
4912       LLVM_FALLTHROUGH;
4913     case ISD::ZERO_EXTEND:
4914       return getConstant(Val.zextOrTrunc(VT.getSizeInBits()), DL, VT,
4915                          C->isTargetOpcode(), C->isOpaque());
4916     case ISD::ANY_EXTEND:
4917       // Some targets like RISCV prefer to sign extend some types.
4918       if (TLI->isSExtCheaperThanZExt(Operand.getValueType(), VT))
4919         return getConstant(Val.sextOrTrunc(VT.getSizeInBits()), DL, VT,
4920                            C->isTargetOpcode(), C->isOpaque());
4921       return getConstant(Val.zextOrTrunc(VT.getSizeInBits()), DL, VT,
4922                          C->isTargetOpcode(), C->isOpaque());
4923     case ISD::UINT_TO_FP:
4924     case ISD::SINT_TO_FP: {
4925       APFloat apf(EVTToAPFloatSemantics(VT),
4926                   APInt::getZero(VT.getSizeInBits()));
4927       (void)apf.convertFromAPInt(Val,
4928                                  Opcode==ISD::SINT_TO_FP,
4929                                  APFloat::rmNearestTiesToEven);
4930       return getConstantFP(apf, DL, VT);
4931     }
4932     case ISD::BITCAST:
4933       if (VT == MVT::f16 && C->getValueType(0) == MVT::i16)
4934         return getConstantFP(APFloat(APFloat::IEEEhalf(), Val), DL, VT);
4935       if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
4936         return getConstantFP(APFloat(APFloat::IEEEsingle(), Val), DL, VT);
4937       if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
4938         return getConstantFP(APFloat(APFloat::IEEEdouble(), Val), DL, VT);
4939       if (VT == MVT::f128 && C->getValueType(0) == MVT::i128)
4940         return getConstantFP(APFloat(APFloat::IEEEquad(), Val), DL, VT);
4941       break;
4942     case ISD::ABS:
4943       return getConstant(Val.abs(), DL, VT, C->isTargetOpcode(),
4944                          C->isOpaque());
4945     case ISD::BITREVERSE:
4946       return getConstant(Val.reverseBits(), DL, VT, C->isTargetOpcode(),
4947                          C->isOpaque());
4948     case ISD::BSWAP:
4949       return getConstant(Val.byteSwap(), DL, VT, C->isTargetOpcode(),
4950                          C->isOpaque());
4951     case ISD::CTPOP:
4952       return getConstant(Val.countPopulation(), DL, VT, C->isTargetOpcode(),
4953                          C->isOpaque());
4954     case ISD::CTLZ:
4955     case ISD::CTLZ_ZERO_UNDEF:
4956       return getConstant(Val.countLeadingZeros(), DL, VT, C->isTargetOpcode(),
4957                          C->isOpaque());
4958     case ISD::CTTZ:
4959     case ISD::CTTZ_ZERO_UNDEF:
4960       return getConstant(Val.countTrailingZeros(), DL, VT, C->isTargetOpcode(),
4961                          C->isOpaque());
4962     case ISD::FP16_TO_FP: {
4963       bool Ignored;
4964       APFloat FPV(APFloat::IEEEhalf(),
4965                   (Val.getBitWidth() == 16) ? Val : Val.trunc(16));
4966 
4967       // This can return overflow, underflow, or inexact; we don't care.
4968       // FIXME need to be more flexible about rounding mode.
4969       (void)FPV.convert(EVTToAPFloatSemantics(VT),
4970                         APFloat::rmNearestTiesToEven, &Ignored);
4971       return getConstantFP(FPV, DL, VT);
4972     }
4973     case ISD::STEP_VECTOR: {
4974       if (SDValue V = FoldSTEP_VECTOR(DL, VT, Operand, *this))
4975         return V;
4976       break;
4977     }
4978     }
4979   }
4980 
4981   // Constant fold unary operations with a floating point constant operand.
4982   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand)) {
4983     APFloat V = C->getValueAPF();    // make copy
4984     switch (Opcode) {
4985     case ISD::FNEG:
4986       V.changeSign();
4987       return getConstantFP(V, DL, VT);
4988     case ISD::FABS:
4989       V.clearSign();
4990       return getConstantFP(V, DL, VT);
4991     case ISD::FCEIL: {
4992       APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardPositive);
4993       if (fs == APFloat::opOK || fs == APFloat::opInexact)
4994         return getConstantFP(V, DL, VT);
4995       break;
4996     }
4997     case ISD::FTRUNC: {
4998       APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardZero);
4999       if (fs == APFloat::opOK || fs == APFloat::opInexact)
5000         return getConstantFP(V, DL, VT);
5001       break;
5002     }
5003     case ISD::FFLOOR: {
5004       APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardNegative);
5005       if (fs == APFloat::opOK || fs == APFloat::opInexact)
5006         return getConstantFP(V, DL, VT);
5007       break;
5008     }
5009     case ISD::FP_EXTEND: {
5010       bool ignored;
5011       // This can return overflow, underflow, or inexact; we don't care.
5012       // FIXME need to be more flexible about rounding mode.
5013       (void)V.convert(EVTToAPFloatSemantics(VT),
5014                       APFloat::rmNearestTiesToEven, &ignored);
5015       return getConstantFP(V, DL, VT);
5016     }
5017     case ISD::FP_TO_SINT:
5018     case ISD::FP_TO_UINT: {
5019       bool ignored;
5020       APSInt IntVal(VT.getSizeInBits(), Opcode == ISD::FP_TO_UINT);
5021       // FIXME need to be more flexible about rounding mode.
5022       APFloat::opStatus s =
5023           V.convertToInteger(IntVal, APFloat::rmTowardZero, &ignored);
5024       if (s == APFloat::opInvalidOp) // inexact is OK, in fact usual
5025         break;
5026       return getConstant(IntVal, DL, VT);
5027     }
5028     case ISD::BITCAST:
5029       if (VT == MVT::i16 && C->getValueType(0) == MVT::f16)
5030         return getConstant((uint16_t)V.bitcastToAPInt().getZExtValue(), DL, VT);
5031       if (VT == MVT::i16 && C->getValueType(0) == MVT::bf16)
5032         return getConstant((uint16_t)V.bitcastToAPInt().getZExtValue(), DL, VT);
5033       if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
5034         return getConstant((uint32_t)V.bitcastToAPInt().getZExtValue(), DL, VT);
5035       if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
5036         return getConstant(V.bitcastToAPInt().getZExtValue(), DL, VT);
5037       break;
5038     case ISD::FP_TO_FP16: {
5039       bool Ignored;
5040       // This can return overflow, underflow, or inexact; we don't care.
5041       // FIXME need to be more flexible about rounding mode.
5042       (void)V.convert(APFloat::IEEEhalf(),
5043                       APFloat::rmNearestTiesToEven, &Ignored);
5044       return getConstant(V.bitcastToAPInt().getZExtValue(), DL, VT);
5045     }
5046     }
5047   }
5048 
5049   // Constant fold unary operations with a vector integer or float operand.
5050   switch (Opcode) {
5051   default:
5052     // FIXME: Entirely reasonable to perform folding of other unary
5053     // operations here as the need arises.
5054     break;
5055   case ISD::FNEG:
5056   case ISD::FABS:
5057   case ISD::FCEIL:
5058   case ISD::FTRUNC:
5059   case ISD::FFLOOR:
5060   case ISD::FP_EXTEND:
5061   case ISD::FP_TO_SINT:
5062   case ISD::FP_TO_UINT:
5063   case ISD::TRUNCATE:
5064   case ISD::ANY_EXTEND:
5065   case ISD::ZERO_EXTEND:
5066   case ISD::SIGN_EXTEND:
5067   case ISD::UINT_TO_FP:
5068   case ISD::SINT_TO_FP:
5069   case ISD::ABS:
5070   case ISD::BITREVERSE:
5071   case ISD::BSWAP:
5072   case ISD::CTLZ:
5073   case ISD::CTLZ_ZERO_UNDEF:
5074   case ISD::CTTZ:
5075   case ISD::CTTZ_ZERO_UNDEF:
5076   case ISD::CTPOP: {
5077     SDValue Ops = {Operand};
5078     if (SDValue Fold = FoldConstantArithmetic(Opcode, DL, VT, Ops))
5079       return Fold;
5080   }
5081   }
5082 
5083   unsigned OpOpcode = Operand.getNode()->getOpcode();
5084   switch (Opcode) {
5085   case ISD::STEP_VECTOR:
5086     assert(VT.isScalableVector() &&
5087            "STEP_VECTOR can only be used with scalable types");
5088     assert(OpOpcode == ISD::TargetConstant &&
5089            VT.getVectorElementType() == Operand.getValueType() &&
5090            "Unexpected step operand");
5091     break;
5092   case ISD::FREEZE:
5093     assert(VT == Operand.getValueType() && "Unexpected VT!");
5094     if (isGuaranteedNotToBeUndefOrPoison(Operand))
5095       return Operand;
5096     break;
5097   case ISD::TokenFactor:
5098   case ISD::MERGE_VALUES:
5099   case ISD::CONCAT_VECTORS:
5100     return Operand;         // Factor, merge or concat of one node?  No need.
5101   case ISD::BUILD_VECTOR: {
5102     // Attempt to simplify BUILD_VECTOR.
5103     SDValue Ops[] = {Operand};
5104     if (SDValue V = FoldBUILD_VECTOR(DL, VT, Ops, *this))
5105       return V;
5106     break;
5107   }
5108   case ISD::FP_ROUND: llvm_unreachable("Invalid method to make FP_ROUND node");
5109   case ISD::FP_EXTEND:
5110     assert(VT.isFloatingPoint() &&
5111            Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
5112     if (Operand.getValueType() == VT) return Operand;  // noop conversion.
5113     assert((!VT.isVector() ||
5114             VT.getVectorElementCount() ==
5115             Operand.getValueType().getVectorElementCount()) &&
5116            "Vector element count mismatch!");
5117     assert(Operand.getValueType().bitsLT(VT) &&
5118            "Invalid fpext node, dst < src!");
5119     if (Operand.isUndef())
5120       return getUNDEF(VT);
5121     break;
5122   case ISD::FP_TO_SINT:
5123   case ISD::FP_TO_UINT:
5124     if (Operand.isUndef())
5125       return getUNDEF(VT);
5126     break;
5127   case ISD::SINT_TO_FP:
5128   case ISD::UINT_TO_FP:
5129     // [us]itofp(undef) = 0, because the result value is bounded.
5130     if (Operand.isUndef())
5131       return getConstantFP(0.0, DL, VT);
5132     break;
5133   case ISD::SIGN_EXTEND:
5134     assert(VT.isInteger() && Operand.getValueType().isInteger() &&
5135            "Invalid SIGN_EXTEND!");
5136     assert(VT.isVector() == Operand.getValueType().isVector() &&
5137            "SIGN_EXTEND result type type should be vector iff the operand "
5138            "type is vector!");
5139     if (Operand.getValueType() == VT) return Operand;   // noop extension
5140     assert((!VT.isVector() ||
5141             VT.getVectorElementCount() ==
5142                 Operand.getValueType().getVectorElementCount()) &&
5143            "Vector element count mismatch!");
5144     assert(Operand.getValueType().bitsLT(VT) &&
5145            "Invalid sext node, dst < src!");
5146     if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
5147       return getNode(OpOpcode, DL, VT, Operand.getOperand(0));
5148     if (OpOpcode == ISD::UNDEF)
5149       // sext(undef) = 0, because the top bits will all be the same.
5150       return getConstant(0, DL, VT);
5151     break;
5152   case ISD::ZERO_EXTEND:
5153     assert(VT.isInteger() && Operand.getValueType().isInteger() &&
5154            "Invalid ZERO_EXTEND!");
5155     assert(VT.isVector() == Operand.getValueType().isVector() &&
5156            "ZERO_EXTEND result type type should be vector iff the operand "
5157            "type is vector!");
5158     if (Operand.getValueType() == VT) return Operand;   // noop extension
5159     assert((!VT.isVector() ||
5160             VT.getVectorElementCount() ==
5161                 Operand.getValueType().getVectorElementCount()) &&
5162            "Vector element count mismatch!");
5163     assert(Operand.getValueType().bitsLT(VT) &&
5164            "Invalid zext node, dst < src!");
5165     if (OpOpcode == ISD::ZERO_EXTEND)   // (zext (zext x)) -> (zext x)
5166       return getNode(ISD::ZERO_EXTEND, DL, VT, Operand.getOperand(0));
5167     if (OpOpcode == ISD::UNDEF)
5168       // zext(undef) = 0, because the top bits will be zero.
5169       return getConstant(0, DL, VT);
5170     break;
5171   case ISD::ANY_EXTEND:
5172     assert(VT.isInteger() && Operand.getValueType().isInteger() &&
5173            "Invalid ANY_EXTEND!");
5174     assert(VT.isVector() == Operand.getValueType().isVector() &&
5175            "ANY_EXTEND result type type should be vector iff the operand "
5176            "type is vector!");
5177     if (Operand.getValueType() == VT) return Operand;   // noop extension
5178     assert((!VT.isVector() ||
5179             VT.getVectorElementCount() ==
5180                 Operand.getValueType().getVectorElementCount()) &&
5181            "Vector element count mismatch!");
5182     assert(Operand.getValueType().bitsLT(VT) &&
5183            "Invalid anyext node, dst < src!");
5184 
5185     if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
5186         OpOpcode == ISD::ANY_EXTEND)
5187       // (ext (zext x)) -> (zext x)  and  (ext (sext x)) -> (sext x)
5188       return getNode(OpOpcode, DL, VT, Operand.getOperand(0));
5189     if (OpOpcode == ISD::UNDEF)
5190       return getUNDEF(VT);
5191 
5192     // (ext (trunc x)) -> x
5193     if (OpOpcode == ISD::TRUNCATE) {
5194       SDValue OpOp = Operand.getOperand(0);
5195       if (OpOp.getValueType() == VT) {
5196         transferDbgValues(Operand, OpOp);
5197         return OpOp;
5198       }
5199     }
5200     break;
5201   case ISD::TRUNCATE:
5202     assert(VT.isInteger() && Operand.getValueType().isInteger() &&
5203            "Invalid TRUNCATE!");
5204     assert(VT.isVector() == Operand.getValueType().isVector() &&
5205            "TRUNCATE result type type should be vector iff the operand "
5206            "type is vector!");
5207     if (Operand.getValueType() == VT) return Operand;   // noop truncate
5208     assert((!VT.isVector() ||
5209             VT.getVectorElementCount() ==
5210                 Operand.getValueType().getVectorElementCount()) &&
5211            "Vector element count mismatch!");
5212     assert(Operand.getValueType().bitsGT(VT) &&
5213            "Invalid truncate node, src < dst!");
5214     if (OpOpcode == ISD::TRUNCATE)
5215       return getNode(ISD::TRUNCATE, DL, VT, Operand.getOperand(0));
5216     if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
5217         OpOpcode == ISD::ANY_EXTEND) {
5218       // If the source is smaller than the dest, we still need an extend.
5219       if (Operand.getOperand(0).getValueType().getScalarType()
5220             .bitsLT(VT.getScalarType()))
5221         return getNode(OpOpcode, DL, VT, Operand.getOperand(0));
5222       if (Operand.getOperand(0).getValueType().bitsGT(VT))
5223         return getNode(ISD::TRUNCATE, DL, VT, Operand.getOperand(0));
5224       return Operand.getOperand(0);
5225     }
5226     if (OpOpcode == ISD::UNDEF)
5227       return getUNDEF(VT);
5228     if (OpOpcode == ISD::VSCALE && !NewNodesMustHaveLegalTypes)
5229       return getVScale(DL, VT, Operand.getConstantOperandAPInt(0));
5230     break;
5231   case ISD::ANY_EXTEND_VECTOR_INREG:
5232   case ISD::ZERO_EXTEND_VECTOR_INREG:
5233   case ISD::SIGN_EXTEND_VECTOR_INREG:
5234     assert(VT.isVector() && "This DAG node is restricted to vector types.");
5235     assert(Operand.getValueType().bitsLE(VT) &&
5236            "The input must be the same size or smaller than the result.");
5237     assert(VT.getVectorMinNumElements() <
5238                Operand.getValueType().getVectorMinNumElements() &&
5239            "The destination vector type must have fewer lanes than the input.");
5240     break;
5241   case ISD::ABS:
5242     assert(VT.isInteger() && VT == Operand.getValueType() &&
5243            "Invalid ABS!");
5244     if (OpOpcode == ISD::UNDEF)
5245       return getUNDEF(VT);
5246     break;
5247   case ISD::BSWAP:
5248     assert(VT.isInteger() && VT == Operand.getValueType() &&
5249            "Invalid BSWAP!");
5250     assert((VT.getScalarSizeInBits() % 16 == 0) &&
5251            "BSWAP types must be a multiple of 16 bits!");
5252     if (OpOpcode == ISD::UNDEF)
5253       return getUNDEF(VT);
5254     // bswap(bswap(X)) -> X.
5255     if (OpOpcode == ISD::BSWAP)
5256       return Operand.getOperand(0);
5257     break;
5258   case ISD::BITREVERSE:
5259     assert(VT.isInteger() && VT == Operand.getValueType() &&
5260            "Invalid BITREVERSE!");
5261     if (OpOpcode == ISD::UNDEF)
5262       return getUNDEF(VT);
5263     break;
5264   case ISD::BITCAST:
5265     assert(VT.getSizeInBits() == Operand.getValueSizeInBits() &&
5266            "Cannot BITCAST between types of different sizes!");
5267     if (VT == Operand.getValueType()) return Operand;  // noop conversion.
5268     if (OpOpcode == ISD::BITCAST)  // bitconv(bitconv(x)) -> bitconv(x)
5269       return getNode(ISD::BITCAST, DL, VT, Operand.getOperand(0));
5270     if (OpOpcode == ISD::UNDEF)
5271       return getUNDEF(VT);
5272     break;
5273   case ISD::SCALAR_TO_VECTOR:
5274     assert(VT.isVector() && !Operand.getValueType().isVector() &&
5275            (VT.getVectorElementType() == Operand.getValueType() ||
5276             (VT.getVectorElementType().isInteger() &&
5277              Operand.getValueType().isInteger() &&
5278              VT.getVectorElementType().bitsLE(Operand.getValueType()))) &&
5279            "Illegal SCALAR_TO_VECTOR node!");
5280     if (OpOpcode == ISD::UNDEF)
5281       return getUNDEF(VT);
5282     // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
5283     if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
5284         isa<ConstantSDNode>(Operand.getOperand(1)) &&
5285         Operand.getConstantOperandVal(1) == 0 &&
5286         Operand.getOperand(0).getValueType() == VT)
5287       return Operand.getOperand(0);
5288     break;
5289   case ISD::FNEG:
5290     // Negation of an unknown bag of bits is still completely undefined.
5291     if (OpOpcode == ISD::UNDEF)
5292       return getUNDEF(VT);
5293 
5294     if (OpOpcode == ISD::FNEG)  // --X -> X
5295       return Operand.getOperand(0);
5296     break;
5297   case ISD::FABS:
5298     if (OpOpcode == ISD::FNEG)  // abs(-X) -> abs(X)
5299       return getNode(ISD::FABS, DL, VT, Operand.getOperand(0));
5300     break;
5301   case ISD::VSCALE:
5302     assert(VT == Operand.getValueType() && "Unexpected VT!");
5303     break;
5304   case ISD::CTPOP:
5305     if (Operand.getValueType().getScalarType() == MVT::i1)
5306       return Operand;
5307     break;
5308   case ISD::CTLZ:
5309   case ISD::CTTZ:
5310     if (Operand.getValueType().getScalarType() == MVT::i1)
5311       return getNOT(DL, Operand, Operand.getValueType());
5312     break;
5313   case ISD::VECREDUCE_SMIN:
5314   case ISD::VECREDUCE_UMAX:
5315     if (Operand.getValueType().getScalarType() == MVT::i1)
5316       return getNode(ISD::VECREDUCE_OR, DL, VT, Operand);
5317     break;
5318   case ISD::VECREDUCE_SMAX:
5319   case ISD::VECREDUCE_UMIN:
5320     if (Operand.getValueType().getScalarType() == MVT::i1)
5321       return getNode(ISD::VECREDUCE_AND, DL, VT, Operand);
5322     break;
5323   }
5324 
5325   SDNode *N;
5326   SDVTList VTs = getVTList(VT);
5327   SDValue Ops[] = {Operand};
5328   if (VT != MVT::Glue) { // Don't CSE flag producing nodes
5329     FoldingSetNodeID ID;
5330     AddNodeIDNode(ID, Opcode, VTs, Ops);
5331     void *IP = nullptr;
5332     if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) {
5333       E->intersectFlagsWith(Flags);
5334       return SDValue(E, 0);
5335     }
5336 
5337     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
5338     N->setFlags(Flags);
5339     createOperands(N, Ops);
5340     CSEMap.InsertNode(N, IP);
5341   } else {
5342     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
5343     createOperands(N, Ops);
5344   }
5345 
5346   InsertNode(N);
5347   SDValue V = SDValue(N, 0);
5348   NewSDValueDbgMsg(V, "Creating new node: ", this);
5349   return V;
5350 }
5351 
5352 static llvm::Optional<APInt> FoldValue(unsigned Opcode, const APInt &C1,
5353                                        const APInt &C2) {
5354   switch (Opcode) {
5355   case ISD::ADD:  return C1 + C2;
5356   case ISD::SUB:  return C1 - C2;
5357   case ISD::MUL:  return C1 * C2;
5358   case ISD::AND:  return C1 & C2;
5359   case ISD::OR:   return C1 | C2;
5360   case ISD::XOR:  return C1 ^ C2;
5361   case ISD::SHL:  return C1 << C2;
5362   case ISD::SRL:  return C1.lshr(C2);
5363   case ISD::SRA:  return C1.ashr(C2);
5364   case ISD::ROTL: return C1.rotl(C2);
5365   case ISD::ROTR: return C1.rotr(C2);
5366   case ISD::SMIN: return C1.sle(C2) ? C1 : C2;
5367   case ISD::SMAX: return C1.sge(C2) ? C1 : C2;
5368   case ISD::UMIN: return C1.ule(C2) ? C1 : C2;
5369   case ISD::UMAX: return C1.uge(C2) ? C1 : C2;
5370   case ISD::SADDSAT: return C1.sadd_sat(C2);
5371   case ISD::UADDSAT: return C1.uadd_sat(C2);
5372   case ISD::SSUBSAT: return C1.ssub_sat(C2);
5373   case ISD::USUBSAT: return C1.usub_sat(C2);
5374   case ISD::SSHLSAT: return C1.sshl_sat(C2);
5375   case ISD::USHLSAT: return C1.ushl_sat(C2);
5376   case ISD::UDIV:
5377     if (!C2.getBoolValue())
5378       break;
5379     return C1.udiv(C2);
5380   case ISD::UREM:
5381     if (!C2.getBoolValue())
5382       break;
5383     return C1.urem(C2);
5384   case ISD::SDIV:
5385     if (!C2.getBoolValue())
5386       break;
5387     return C1.sdiv(C2);
5388   case ISD::SREM:
5389     if (!C2.getBoolValue())
5390       break;
5391     return C1.srem(C2);
5392   case ISD::MULHS: {
5393     unsigned FullWidth = C1.getBitWidth() * 2;
5394     APInt C1Ext = C1.sext(FullWidth);
5395     APInt C2Ext = C2.sext(FullWidth);
5396     return (C1Ext * C2Ext).extractBits(C1.getBitWidth(), C1.getBitWidth());
5397   }
5398   case ISD::MULHU: {
5399     unsigned FullWidth = C1.getBitWidth() * 2;
5400     APInt C1Ext = C1.zext(FullWidth);
5401     APInt C2Ext = C2.zext(FullWidth);
5402     return (C1Ext * C2Ext).extractBits(C1.getBitWidth(), C1.getBitWidth());
5403   }
5404   case ISD::AVGFLOORS: {
5405     unsigned FullWidth = C1.getBitWidth() + 1;
5406     APInt C1Ext = C1.sext(FullWidth);
5407     APInt C2Ext = C2.sext(FullWidth);
5408     return (C1Ext + C2Ext).extractBits(C1.getBitWidth(), 1);
5409   }
5410   case ISD::AVGFLOORU: {
5411     unsigned FullWidth = C1.getBitWidth() + 1;
5412     APInt C1Ext = C1.zext(FullWidth);
5413     APInt C2Ext = C2.zext(FullWidth);
5414     return (C1Ext + C2Ext).extractBits(C1.getBitWidth(), 1);
5415   }
5416   case ISD::AVGCEILS: {
5417     unsigned FullWidth = C1.getBitWidth() + 1;
5418     APInt C1Ext = C1.sext(FullWidth);
5419     APInt C2Ext = C2.sext(FullWidth);
5420     return (C1Ext + C2Ext + 1).extractBits(C1.getBitWidth(), 1);
5421   }
5422   case ISD::AVGCEILU: {
5423     unsigned FullWidth = C1.getBitWidth() + 1;
5424     APInt C1Ext = C1.zext(FullWidth);
5425     APInt C2Ext = C2.zext(FullWidth);
5426     return (C1Ext + C2Ext + 1).extractBits(C1.getBitWidth(), 1);
5427   }
5428   }
5429   return llvm::None;
5430 }
5431 
5432 SDValue SelectionDAG::FoldSymbolOffset(unsigned Opcode, EVT VT,
5433                                        const GlobalAddressSDNode *GA,
5434                                        const SDNode *N2) {
5435   if (GA->getOpcode() != ISD::GlobalAddress)
5436     return SDValue();
5437   if (!TLI->isOffsetFoldingLegal(GA))
5438     return SDValue();
5439   auto *C2 = dyn_cast<ConstantSDNode>(N2);
5440   if (!C2)
5441     return SDValue();
5442   int64_t Offset = C2->getSExtValue();
5443   switch (Opcode) {
5444   case ISD::ADD: break;
5445   case ISD::SUB: Offset = -uint64_t(Offset); break;
5446   default: return SDValue();
5447   }
5448   return getGlobalAddress(GA->getGlobal(), SDLoc(C2), VT,
5449                           GA->getOffset() + uint64_t(Offset));
5450 }
5451 
5452 bool SelectionDAG::isUndef(unsigned Opcode, ArrayRef<SDValue> Ops) {
5453   switch (Opcode) {
5454   case ISD::SDIV:
5455   case ISD::UDIV:
5456   case ISD::SREM:
5457   case ISD::UREM: {
5458     // If a divisor is zero/undef or any element of a divisor vector is
5459     // zero/undef, the whole op is undef.
5460     assert(Ops.size() == 2 && "Div/rem should have 2 operands");
5461     SDValue Divisor = Ops[1];
5462     if (Divisor.isUndef() || isNullConstant(Divisor))
5463       return true;
5464 
5465     return ISD::isBuildVectorOfConstantSDNodes(Divisor.getNode()) &&
5466            llvm::any_of(Divisor->op_values(),
5467                         [](SDValue V) { return V.isUndef() ||
5468                                         isNullConstant(V); });
5469     // TODO: Handle signed overflow.
5470   }
5471   // TODO: Handle oversized shifts.
5472   default:
5473     return false;
5474   }
5475 }
5476 
5477 SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode, const SDLoc &DL,
5478                                              EVT VT, ArrayRef<SDValue> Ops) {
5479   // If the opcode is a target-specific ISD node, there's nothing we can
5480   // do here and the operand rules may not line up with the below, so
5481   // bail early.
5482   // We can't create a scalar CONCAT_VECTORS so skip it. It will break
5483   // for concats involving SPLAT_VECTOR. Concats of BUILD_VECTORS are handled by
5484   // foldCONCAT_VECTORS in getNode before this is called.
5485   if (Opcode >= ISD::BUILTIN_OP_END || Opcode == ISD::CONCAT_VECTORS)
5486     return SDValue();
5487 
5488   unsigned NumOps = Ops.size();
5489   if (NumOps == 0)
5490     return SDValue();
5491 
5492   if (isUndef(Opcode, Ops))
5493     return getUNDEF(VT);
5494 
5495   // Handle binops special cases.
5496   if (NumOps == 2) {
5497     if (SDValue CFP = foldConstantFPMath(Opcode, DL, VT, Ops[0], Ops[1]))
5498       return CFP;
5499 
5500     if (auto *C1 = dyn_cast<ConstantSDNode>(Ops[0])) {
5501       if (auto *C2 = dyn_cast<ConstantSDNode>(Ops[1])) {
5502         if (C1->isOpaque() || C2->isOpaque())
5503           return SDValue();
5504 
5505         Optional<APInt> FoldAttempt =
5506             FoldValue(Opcode, C1->getAPIntValue(), C2->getAPIntValue());
5507         if (!FoldAttempt)
5508           return SDValue();
5509 
5510         SDValue Folded = getConstant(FoldAttempt.getValue(), DL, VT);
5511         assert((!Folded || !VT.isVector()) &&
5512                "Can't fold vectors ops with scalar operands");
5513         return Folded;
5514       }
5515     }
5516 
5517     // fold (add Sym, c) -> Sym+c
5518     if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Ops[0]))
5519       return FoldSymbolOffset(Opcode, VT, GA, Ops[1].getNode());
5520     if (TLI->isCommutativeBinOp(Opcode))
5521       if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Ops[1]))
5522         return FoldSymbolOffset(Opcode, VT, GA, Ops[0].getNode());
5523   }
5524 
5525   // This is for vector folding only from here on.
5526   if (!VT.isVector())
5527     return SDValue();
5528 
5529   ElementCount NumElts = VT.getVectorElementCount();
5530 
5531   // See if we can fold through bitcasted integer ops.
5532   // TODO: Can we handle undef elements?
5533   if (NumOps == 2 && VT.isFixedLengthVector() && VT.isInteger() &&
5534       Ops[0].getValueType() == VT && Ops[1].getValueType() == VT &&
5535       Ops[0].getOpcode() == ISD::BITCAST &&
5536       Ops[1].getOpcode() == ISD::BITCAST) {
5537     SDValue N1 = peekThroughBitcasts(Ops[0]);
5538     SDValue N2 = peekThroughBitcasts(Ops[1]);
5539     auto *BV1 = dyn_cast<BuildVectorSDNode>(N1);
5540     auto *BV2 = dyn_cast<BuildVectorSDNode>(N2);
5541     EVT BVVT = N1.getValueType();
5542     if (BV1 && BV2 && BVVT.isInteger() && BVVT == N2.getValueType()) {
5543       bool IsLE = getDataLayout().isLittleEndian();
5544       unsigned EltBits = VT.getScalarSizeInBits();
5545       SmallVector<APInt> RawBits1, RawBits2;
5546       BitVector UndefElts1, UndefElts2;
5547       if (BV1->getConstantRawBits(IsLE, EltBits, RawBits1, UndefElts1) &&
5548           BV2->getConstantRawBits(IsLE, EltBits, RawBits2, UndefElts2) &&
5549           UndefElts1.none() && UndefElts2.none()) {
5550         SmallVector<APInt> RawBits;
5551         for (unsigned I = 0, E = NumElts.getFixedValue(); I != E; ++I) {
5552           Optional<APInt> Fold = FoldValue(Opcode, RawBits1[I], RawBits2[I]);
5553           if (!Fold)
5554             break;
5555           RawBits.push_back(Fold.getValue());
5556         }
5557         if (RawBits.size() == NumElts.getFixedValue()) {
5558           // We have constant folded, but we need to cast this again back to
5559           // the original (possibly legalized) type.
5560           SmallVector<APInt> DstBits;
5561           BitVector DstUndefs;
5562           BuildVectorSDNode::recastRawBits(IsLE, BVVT.getScalarSizeInBits(),
5563                                            DstBits, RawBits, DstUndefs,
5564                                            BitVector(RawBits.size(), false));
5565           EVT BVEltVT = BV1->getOperand(0).getValueType();
5566           unsigned BVEltBits = BVEltVT.getSizeInBits();
5567           SmallVector<SDValue> Ops(DstBits.size(), getUNDEF(BVEltVT));
5568           for (unsigned I = 0, E = DstBits.size(); I != E; ++I) {
5569             if (DstUndefs[I])
5570               continue;
5571             Ops[I] = getConstant(DstBits[I].sextOrSelf(BVEltBits), DL, BVEltVT);
5572           }
5573           return getBitcast(VT, getBuildVector(BVVT, DL, Ops));
5574         }
5575       }
5576     }
5577   }
5578 
5579   // Fold (mul step_vector(C0), C1) to (step_vector(C0 * C1)).
5580   //      (shl step_vector(C0), C1) -> (step_vector(C0 << C1))
5581   if ((Opcode == ISD::MUL || Opcode == ISD::SHL) &&
5582       Ops[0].getOpcode() == ISD::STEP_VECTOR) {
5583     APInt RHSVal;
5584     if (ISD::isConstantSplatVector(Ops[1].getNode(), RHSVal)) {
5585       APInt NewStep = Opcode == ISD::MUL
5586                           ? Ops[0].getConstantOperandAPInt(0) * RHSVal
5587                           : Ops[0].getConstantOperandAPInt(0) << RHSVal;
5588       return getStepVector(DL, VT, NewStep);
5589     }
5590   }
5591 
5592   auto IsScalarOrSameVectorSize = [NumElts](const SDValue &Op) {
5593     return !Op.getValueType().isVector() ||
5594            Op.getValueType().getVectorElementCount() == NumElts;
5595   };
5596 
5597   auto IsBuildVectorSplatVectorOrUndef = [](const SDValue &Op) {
5598     return Op.isUndef() || Op.getOpcode() == ISD::CONDCODE ||
5599            Op.getOpcode() == ISD::BUILD_VECTOR ||
5600            Op.getOpcode() == ISD::SPLAT_VECTOR;
5601   };
5602 
5603   // All operands must be vector types with the same number of elements as
5604   // the result type and must be either UNDEF or a build/splat vector
5605   // or UNDEF scalars.
5606   if (!llvm::all_of(Ops, IsBuildVectorSplatVectorOrUndef) ||
5607       !llvm::all_of(Ops, IsScalarOrSameVectorSize))
5608     return SDValue();
5609 
5610   // If we are comparing vectors, then the result needs to be a i1 boolean that
5611   // is then extended back to the legal result type depending on how booleans
5612   // are represented.
5613   EVT SVT = (Opcode == ISD::SETCC ? MVT::i1 : VT.getScalarType());
5614   ISD::NodeType ExtendCode =
5615       (Opcode == ISD::SETCC && SVT != VT.getScalarType())
5616           ? TargetLowering::getExtendForContent(TLI->getBooleanContents(VT))
5617           : ISD::SIGN_EXTEND;
5618 
5619   // Find legal integer scalar type for constant promotion and
5620   // ensure that its scalar size is at least as large as source.
5621   EVT LegalSVT = VT.getScalarType();
5622   if (NewNodesMustHaveLegalTypes && LegalSVT.isInteger()) {
5623     LegalSVT = TLI->getTypeToTransformTo(*getContext(), LegalSVT);
5624     if (LegalSVT.bitsLT(VT.getScalarType()))
5625       return SDValue();
5626   }
5627 
5628   // For scalable vector types we know we're dealing with SPLAT_VECTORs. We
5629   // only have one operand to check. For fixed-length vector types we may have
5630   // a combination of BUILD_VECTOR and SPLAT_VECTOR.
5631   unsigned NumVectorElts = NumElts.isScalable() ? 1 : NumElts.getFixedValue();
5632 
5633   // Constant fold each scalar lane separately.
5634   SmallVector<SDValue, 4> ScalarResults;
5635   for (unsigned I = 0; I != NumVectorElts; I++) {
5636     SmallVector<SDValue, 4> ScalarOps;
5637     for (SDValue Op : Ops) {
5638       EVT InSVT = Op.getValueType().getScalarType();
5639       if (Op.getOpcode() != ISD::BUILD_VECTOR &&
5640           Op.getOpcode() != ISD::SPLAT_VECTOR) {
5641         if (Op.isUndef())
5642           ScalarOps.push_back(getUNDEF(InSVT));
5643         else
5644           ScalarOps.push_back(Op);
5645         continue;
5646       }
5647 
5648       SDValue ScalarOp =
5649           Op.getOperand(Op.getOpcode() == ISD::SPLAT_VECTOR ? 0 : I);
5650       EVT ScalarVT = ScalarOp.getValueType();
5651 
5652       // Build vector (integer) scalar operands may need implicit
5653       // truncation - do this before constant folding.
5654       if (ScalarVT.isInteger() && ScalarVT.bitsGT(InSVT)) {
5655         // Don't create illegally-typed nodes unless they're constants or undef
5656         // - if we fail to constant fold we can't guarantee the (dead) nodes
5657         // we're creating will be cleaned up before being visited for
5658         // legalization.
5659         if (NewNodesMustHaveLegalTypes && !ScalarOp.isUndef() &&
5660             !isa<ConstantSDNode>(ScalarOp) &&
5661             TLI->getTypeAction(*getContext(), InSVT) !=
5662                 TargetLowering::TypeLegal)
5663           return SDValue();
5664         ScalarOp = getNode(ISD::TRUNCATE, DL, InSVT, ScalarOp);
5665       }
5666 
5667       ScalarOps.push_back(ScalarOp);
5668     }
5669 
5670     // Constant fold the scalar operands.
5671     SDValue ScalarResult = getNode(Opcode, DL, SVT, ScalarOps);
5672 
5673     // Legalize the (integer) scalar constant if necessary.
5674     if (LegalSVT != SVT)
5675       ScalarResult = getNode(ExtendCode, DL, LegalSVT, ScalarResult);
5676 
5677     // Scalar folding only succeeded if the result is a constant or UNDEF.
5678     if (!ScalarResult.isUndef() && ScalarResult.getOpcode() != ISD::Constant &&
5679         ScalarResult.getOpcode() != ISD::ConstantFP)
5680       return SDValue();
5681     ScalarResults.push_back(ScalarResult);
5682   }
5683 
5684   SDValue V = NumElts.isScalable() ? getSplatVector(VT, DL, ScalarResults[0])
5685                                    : getBuildVector(VT, DL, ScalarResults);
5686   NewSDValueDbgMsg(V, "New node fold constant vector: ", this);
5687   return V;
5688 }
5689 
5690 SDValue SelectionDAG::foldConstantFPMath(unsigned Opcode, const SDLoc &DL,
5691                                          EVT VT, SDValue N1, SDValue N2) {
5692   // TODO: We don't do any constant folding for strict FP opcodes here, but we
5693   //       should. That will require dealing with a potentially non-default
5694   //       rounding mode, checking the "opStatus" return value from the APFloat
5695   //       math calculations, and possibly other variations.
5696   ConstantFPSDNode *N1CFP = isConstOrConstSplatFP(N1, /*AllowUndefs*/ false);
5697   ConstantFPSDNode *N2CFP = isConstOrConstSplatFP(N2, /*AllowUndefs*/ false);
5698   if (N1CFP && N2CFP) {
5699     APFloat C1 = N1CFP->getValueAPF(); // make copy
5700     const APFloat &C2 = N2CFP->getValueAPF();
5701     switch (Opcode) {
5702     case ISD::FADD:
5703       C1.add(C2, APFloat::rmNearestTiesToEven);
5704       return getConstantFP(C1, DL, VT);
5705     case ISD::FSUB:
5706       C1.subtract(C2, APFloat::rmNearestTiesToEven);
5707       return getConstantFP(C1, DL, VT);
5708     case ISD::FMUL:
5709       C1.multiply(C2, APFloat::rmNearestTiesToEven);
5710       return getConstantFP(C1, DL, VT);
5711     case ISD::FDIV:
5712       C1.divide(C2, APFloat::rmNearestTiesToEven);
5713       return getConstantFP(C1, DL, VT);
5714     case ISD::FREM:
5715       C1.mod(C2);
5716       return getConstantFP(C1, DL, VT);
5717     case ISD::FCOPYSIGN:
5718       C1.copySign(C2);
5719       return getConstantFP(C1, DL, VT);
5720     case ISD::FMINNUM:
5721       return getConstantFP(minnum(C1, C2), DL, VT);
5722     case ISD::FMAXNUM:
5723       return getConstantFP(maxnum(C1, C2), DL, VT);
5724     case ISD::FMINIMUM:
5725       return getConstantFP(minimum(C1, C2), DL, VT);
5726     case ISD::FMAXIMUM:
5727       return getConstantFP(maximum(C1, C2), DL, VT);
5728     default: break;
5729     }
5730   }
5731   if (N1CFP && Opcode == ISD::FP_ROUND) {
5732     APFloat C1 = N1CFP->getValueAPF();    // make copy
5733     bool Unused;
5734     // This can return overflow, underflow, or inexact; we don't care.
5735     // FIXME need to be more flexible about rounding mode.
5736     (void) C1.convert(EVTToAPFloatSemantics(VT), APFloat::rmNearestTiesToEven,
5737                       &Unused);
5738     return getConstantFP(C1, DL, VT);
5739   }
5740 
5741   switch (Opcode) {
5742   case ISD::FSUB:
5743     // -0.0 - undef --> undef (consistent with "fneg undef")
5744     if (ConstantFPSDNode *N1C = isConstOrConstSplatFP(N1, /*AllowUndefs*/ true))
5745       if (N1C && N1C->getValueAPF().isNegZero() && N2.isUndef())
5746         return getUNDEF(VT);
5747     LLVM_FALLTHROUGH;
5748 
5749   case ISD::FADD:
5750   case ISD::FMUL:
5751   case ISD::FDIV:
5752   case ISD::FREM:
5753     // If both operands are undef, the result is undef. If 1 operand is undef,
5754     // the result is NaN. This should match the behavior of the IR optimizer.
5755     if (N1.isUndef() && N2.isUndef())
5756       return getUNDEF(VT);
5757     if (N1.isUndef() || N2.isUndef())
5758       return getConstantFP(APFloat::getNaN(EVTToAPFloatSemantics(VT)), DL, VT);
5759   }
5760   return SDValue();
5761 }
5762 
5763 SDValue SelectionDAG::getAssertAlign(const SDLoc &DL, SDValue Val, Align A) {
5764   assert(Val.getValueType().isInteger() && "Invalid AssertAlign!");
5765 
5766   // There's no need to assert on a byte-aligned pointer. All pointers are at
5767   // least byte aligned.
5768   if (A == Align(1))
5769     return Val;
5770 
5771   FoldingSetNodeID ID;
5772   AddNodeIDNode(ID, ISD::AssertAlign, getVTList(Val.getValueType()), {Val});
5773   ID.AddInteger(A.value());
5774 
5775   void *IP = nullptr;
5776   if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP))
5777     return SDValue(E, 0);
5778 
5779   auto *N = newSDNode<AssertAlignSDNode>(DL.getIROrder(), DL.getDebugLoc(),
5780                                          Val.getValueType(), A);
5781   createOperands(N, {Val});
5782 
5783   CSEMap.InsertNode(N, IP);
5784   InsertNode(N);
5785 
5786   SDValue V(N, 0);
5787   NewSDValueDbgMsg(V, "Creating new node: ", this);
5788   return V;
5789 }
5790 
5791 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
5792                               SDValue N1, SDValue N2) {
5793   SDNodeFlags Flags;
5794   if (Inserter)
5795     Flags = Inserter->getFlags();
5796   return getNode(Opcode, DL, VT, N1, N2, Flags);
5797 }
5798 
5799 void SelectionDAG::canonicalizeCommutativeBinop(unsigned Opcode, SDValue &N1,
5800                                                 SDValue &N2) const {
5801   if (!TLI->isCommutativeBinOp(Opcode))
5802     return;
5803 
5804   // Canonicalize:
5805   //   binop(const, nonconst) -> binop(nonconst, const)
5806   bool IsN1C = isConstantIntBuildVectorOrConstantInt(N1);
5807   bool IsN2C = isConstantIntBuildVectorOrConstantInt(N2);
5808   bool IsN1CFP = isConstantFPBuildVectorOrConstantFP(N1);
5809   bool IsN2CFP = isConstantFPBuildVectorOrConstantFP(N2);
5810   if ((IsN1C && !IsN2C) || (IsN1CFP && !IsN2CFP))
5811     std::swap(N1, N2);
5812 
5813   // Canonicalize:
5814   //  binop(splat(x), step_vector) -> binop(step_vector, splat(x))
5815   else if (N1.getOpcode() == ISD::SPLAT_VECTOR &&
5816            N2.getOpcode() == ISD::STEP_VECTOR)
5817     std::swap(N1, N2);
5818 }
5819 
5820 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
5821                               SDValue N1, SDValue N2, const SDNodeFlags Flags) {
5822   assert(N1.getOpcode() != ISD::DELETED_NODE &&
5823          N2.getOpcode() != ISD::DELETED_NODE &&
5824          "Operand is DELETED_NODE!");
5825 
5826   canonicalizeCommutativeBinop(Opcode, N1, N2);
5827 
5828   auto *N1C = dyn_cast<ConstantSDNode>(N1);
5829   auto *N2C = dyn_cast<ConstantSDNode>(N2);
5830 
5831   // Don't allow undefs in vector splats - we might be returning N2 when folding
5832   // to zero etc.
5833   ConstantSDNode *N2CV =
5834       isConstOrConstSplat(N2, /*AllowUndefs*/ false, /*AllowTruncation*/ true);
5835 
5836   switch (Opcode) {
5837   default: break;
5838   case ISD::TokenFactor:
5839     assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
5840            N2.getValueType() == MVT::Other && "Invalid token factor!");
5841     // Fold trivial token factors.
5842     if (N1.getOpcode() == ISD::EntryToken) return N2;
5843     if (N2.getOpcode() == ISD::EntryToken) return N1;
5844     if (N1 == N2) return N1;
5845     break;
5846   case ISD::BUILD_VECTOR: {
5847     // Attempt to simplify BUILD_VECTOR.
5848     SDValue Ops[] = {N1, N2};
5849     if (SDValue V = FoldBUILD_VECTOR(DL, VT, Ops, *this))
5850       return V;
5851     break;
5852   }
5853   case ISD::CONCAT_VECTORS: {
5854     SDValue Ops[] = {N1, N2};
5855     if (SDValue V = foldCONCAT_VECTORS(DL, VT, Ops, *this))
5856       return V;
5857     break;
5858   }
5859   case ISD::AND:
5860     assert(VT.isInteger() && "This operator does not apply to FP types!");
5861     assert(N1.getValueType() == N2.getValueType() &&
5862            N1.getValueType() == VT && "Binary operator types must match!");
5863     // (X & 0) -> 0.  This commonly occurs when legalizing i64 values, so it's
5864     // worth handling here.
5865     if (N2CV && N2CV->isZero())
5866       return N2;
5867     if (N2CV && N2CV->isAllOnes()) // X & -1 -> X
5868       return N1;
5869     break;
5870   case ISD::OR:
5871   case ISD::XOR:
5872   case ISD::ADD:
5873   case ISD::SUB:
5874     assert(VT.isInteger() && "This operator does not apply to FP types!");
5875     assert(N1.getValueType() == N2.getValueType() &&
5876            N1.getValueType() == VT && "Binary operator types must match!");
5877     // (X ^|+- 0) -> X.  This commonly occurs when legalizing i64 values, so
5878     // it's worth handling here.
5879     if (N2CV && N2CV->isZero())
5880       return N1;
5881     if ((Opcode == ISD::ADD || Opcode == ISD::SUB) && VT.isVector() &&
5882         VT.getVectorElementType() == MVT::i1)
5883       return getNode(ISD::XOR, DL, VT, N1, N2);
5884     break;
5885   case ISD::MUL:
5886     assert(VT.isInteger() && "This operator does not apply to FP types!");
5887     assert(N1.getValueType() == N2.getValueType() &&
5888            N1.getValueType() == VT && "Binary operator types must match!");
5889     if (VT.isVector() && VT.getVectorElementType() == MVT::i1)
5890       return getNode(ISD::AND, DL, VT, N1, N2);
5891     if (N2C && (N1.getOpcode() == ISD::VSCALE) && Flags.hasNoSignedWrap()) {
5892       const APInt &MulImm = N1->getConstantOperandAPInt(0);
5893       const APInt &N2CImm = N2C->getAPIntValue();
5894       return getVScale(DL, VT, MulImm * N2CImm);
5895     }
5896     break;
5897   case ISD::UDIV:
5898   case ISD::UREM:
5899   case ISD::MULHU:
5900   case ISD::MULHS:
5901   case ISD::SDIV:
5902   case ISD::SREM:
5903   case ISD::SADDSAT:
5904   case ISD::SSUBSAT:
5905   case ISD::UADDSAT:
5906   case ISD::USUBSAT:
5907     assert(VT.isInteger() && "This operator does not apply to FP types!");
5908     assert(N1.getValueType() == N2.getValueType() &&
5909            N1.getValueType() == VT && "Binary operator types must match!");
5910     if (VT.isVector() && VT.getVectorElementType() == MVT::i1) {
5911       // fold (add_sat x, y) -> (or x, y) for bool types.
5912       if (Opcode == ISD::SADDSAT || Opcode == ISD::UADDSAT)
5913         return getNode(ISD::OR, DL, VT, N1, N2);
5914       // fold (sub_sat x, y) -> (and x, ~y) for bool types.
5915       if (Opcode == ISD::SSUBSAT || Opcode == ISD::USUBSAT)
5916         return getNode(ISD::AND, DL, VT, N1, getNOT(DL, N2, VT));
5917     }
5918     break;
5919   case ISD::SMIN:
5920   case ISD::UMAX:
5921     assert(VT.isInteger() && "This operator does not apply to FP types!");
5922     assert(N1.getValueType() == N2.getValueType() &&
5923            N1.getValueType() == VT && "Binary operator types must match!");
5924     if (VT.isVector() && VT.getVectorElementType() == MVT::i1)
5925       return getNode(ISD::OR, DL, VT, N1, N2);
5926     break;
5927   case ISD::SMAX:
5928   case ISD::UMIN:
5929     assert(VT.isInteger() && "This operator does not apply to FP types!");
5930     assert(N1.getValueType() == N2.getValueType() &&
5931            N1.getValueType() == VT && "Binary operator types must match!");
5932     if (VT.isVector() && VT.getVectorElementType() == MVT::i1)
5933       return getNode(ISD::AND, DL, VT, N1, N2);
5934     break;
5935   case ISD::FADD:
5936   case ISD::FSUB:
5937   case ISD::FMUL:
5938   case ISD::FDIV:
5939   case ISD::FREM:
5940     assert(VT.isFloatingPoint() && "This operator only applies to FP types!");
5941     assert(N1.getValueType() == N2.getValueType() &&
5942            N1.getValueType() == VT && "Binary operator types must match!");
5943     if (SDValue V = simplifyFPBinop(Opcode, N1, N2, Flags))
5944       return V;
5945     break;
5946   case ISD::FCOPYSIGN:   // N1 and result must match.  N1/N2 need not match.
5947     assert(N1.getValueType() == VT &&
5948            N1.getValueType().isFloatingPoint() &&
5949            N2.getValueType().isFloatingPoint() &&
5950            "Invalid FCOPYSIGN!");
5951     break;
5952   case ISD::SHL:
5953     if (N2C && (N1.getOpcode() == ISD::VSCALE) && Flags.hasNoSignedWrap()) {
5954       const APInt &MulImm = N1->getConstantOperandAPInt(0);
5955       const APInt &ShiftImm = N2C->getAPIntValue();
5956       return getVScale(DL, VT, MulImm << ShiftImm);
5957     }
5958     LLVM_FALLTHROUGH;
5959   case ISD::SRA:
5960   case ISD::SRL:
5961     if (SDValue V = simplifyShift(N1, N2))
5962       return V;
5963     LLVM_FALLTHROUGH;
5964   case ISD::ROTL:
5965   case ISD::ROTR:
5966     assert(VT == N1.getValueType() &&
5967            "Shift operators return type must be the same as their first arg");
5968     assert(VT.isInteger() && N2.getValueType().isInteger() &&
5969            "Shifts only work on integers");
5970     assert((!VT.isVector() || VT == N2.getValueType()) &&
5971            "Vector shift amounts must be in the same as their first arg");
5972     // Verify that the shift amount VT is big enough to hold valid shift
5973     // amounts.  This catches things like trying to shift an i1024 value by an
5974     // i8, which is easy to fall into in generic code that uses
5975     // TLI.getShiftAmount().
5976     assert(N2.getValueType().getScalarSizeInBits() >=
5977                Log2_32_Ceil(VT.getScalarSizeInBits()) &&
5978            "Invalid use of small shift amount with oversized value!");
5979 
5980     // Always fold shifts of i1 values so the code generator doesn't need to
5981     // handle them.  Since we know the size of the shift has to be less than the
5982     // size of the value, the shift/rotate count is guaranteed to be zero.
5983     if (VT == MVT::i1)
5984       return N1;
5985     if (N2CV && N2CV->isZero())
5986       return N1;
5987     break;
5988   case ISD::FP_ROUND:
5989     assert(VT.isFloatingPoint() &&
5990            N1.getValueType().isFloatingPoint() &&
5991            VT.bitsLE(N1.getValueType()) &&
5992            N2C && (N2C->getZExtValue() == 0 || N2C->getZExtValue() == 1) &&
5993            "Invalid FP_ROUND!");
5994     if (N1.getValueType() == VT) return N1;  // noop conversion.
5995     break;
5996   case ISD::AssertSext:
5997   case ISD::AssertZext: {
5998     EVT EVT = cast<VTSDNode>(N2)->getVT();
5999     assert(VT == N1.getValueType() && "Not an inreg extend!");
6000     assert(VT.isInteger() && EVT.isInteger() &&
6001            "Cannot *_EXTEND_INREG FP types");
6002     assert(!EVT.isVector() &&
6003            "AssertSExt/AssertZExt type should be the vector element type "
6004            "rather than the vector type!");
6005     assert(EVT.bitsLE(VT.getScalarType()) && "Not extending!");
6006     if (VT.getScalarType() == EVT) return N1; // noop assertion.
6007     break;
6008   }
6009   case ISD::SIGN_EXTEND_INREG: {
6010     EVT EVT = cast<VTSDNode>(N2)->getVT();
6011     assert(VT == N1.getValueType() && "Not an inreg extend!");
6012     assert(VT.isInteger() && EVT.isInteger() &&
6013            "Cannot *_EXTEND_INREG FP types");
6014     assert(EVT.isVector() == VT.isVector() &&
6015            "SIGN_EXTEND_INREG type should be vector iff the operand "
6016            "type is vector!");
6017     assert((!EVT.isVector() ||
6018             EVT.getVectorElementCount() == VT.getVectorElementCount()) &&
6019            "Vector element counts must match in SIGN_EXTEND_INREG");
6020     assert(EVT.bitsLE(VT) && "Not extending!");
6021     if (EVT == VT) return N1;  // Not actually extending
6022 
6023     auto SignExtendInReg = [&](APInt Val, llvm::EVT ConstantVT) {
6024       unsigned FromBits = EVT.getScalarSizeInBits();
6025       Val <<= Val.getBitWidth() - FromBits;
6026       Val.ashrInPlace(Val.getBitWidth() - FromBits);
6027       return getConstant(Val, DL, ConstantVT);
6028     };
6029 
6030     if (N1C) {
6031       const APInt &Val = N1C->getAPIntValue();
6032       return SignExtendInReg(Val, VT);
6033     }
6034 
6035     if (ISD::isBuildVectorOfConstantSDNodes(N1.getNode())) {
6036       SmallVector<SDValue, 8> Ops;
6037       llvm::EVT OpVT = N1.getOperand(0).getValueType();
6038       for (int i = 0, e = VT.getVectorNumElements(); i != e; ++i) {
6039         SDValue Op = N1.getOperand(i);
6040         if (Op.isUndef()) {
6041           Ops.push_back(getUNDEF(OpVT));
6042           continue;
6043         }
6044         ConstantSDNode *C = cast<ConstantSDNode>(Op);
6045         APInt Val = C->getAPIntValue();
6046         Ops.push_back(SignExtendInReg(Val, OpVT));
6047       }
6048       return getBuildVector(VT, DL, Ops);
6049     }
6050     break;
6051   }
6052   case ISD::FP_TO_SINT_SAT:
6053   case ISD::FP_TO_UINT_SAT: {
6054     assert(VT.isInteger() && cast<VTSDNode>(N2)->getVT().isInteger() &&
6055            N1.getValueType().isFloatingPoint() && "Invalid FP_TO_*INT_SAT");
6056     assert(N1.getValueType().isVector() == VT.isVector() &&
6057            "FP_TO_*INT_SAT type should be vector iff the operand type is "
6058            "vector!");
6059     assert((!VT.isVector() || VT.getVectorNumElements() ==
6060                                   N1.getValueType().getVectorNumElements()) &&
6061            "Vector element counts must match in FP_TO_*INT_SAT");
6062     assert(!cast<VTSDNode>(N2)->getVT().isVector() &&
6063            "Type to saturate to must be a scalar.");
6064     assert(cast<VTSDNode>(N2)->getVT().bitsLE(VT.getScalarType()) &&
6065            "Not extending!");
6066     break;
6067   }
6068   case ISD::EXTRACT_VECTOR_ELT:
6069     assert(VT.getSizeInBits() >= N1.getValueType().getScalarSizeInBits() &&
6070            "The result of EXTRACT_VECTOR_ELT must be at least as wide as the \
6071              element type of the vector.");
6072 
6073     // Extract from an undefined value or using an undefined index is undefined.
6074     if (N1.isUndef() || N2.isUndef())
6075       return getUNDEF(VT);
6076 
6077     // EXTRACT_VECTOR_ELT of out-of-bounds element is an UNDEF for fixed length
6078     // vectors. For scalable vectors we will provide appropriate support for
6079     // dealing with arbitrary indices.
6080     if (N2C && N1.getValueType().isFixedLengthVector() &&
6081         N2C->getAPIntValue().uge(N1.getValueType().getVectorNumElements()))
6082       return getUNDEF(VT);
6083 
6084     // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
6085     // expanding copies of large vectors from registers. This only works for
6086     // fixed length vectors, since we need to know the exact number of
6087     // elements.
6088     if (N2C && N1.getOperand(0).getValueType().isFixedLengthVector() &&
6089         N1.getOpcode() == ISD::CONCAT_VECTORS && N1.getNumOperands() > 0) {
6090       unsigned Factor =
6091         N1.getOperand(0).getValueType().getVectorNumElements();
6092       return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT,
6093                      N1.getOperand(N2C->getZExtValue() / Factor),
6094                      getVectorIdxConstant(N2C->getZExtValue() % Factor, DL));
6095     }
6096 
6097     // EXTRACT_VECTOR_ELT of BUILD_VECTOR or SPLAT_VECTOR is often formed while
6098     // lowering is expanding large vector constants.
6099     if (N2C && (N1.getOpcode() == ISD::BUILD_VECTOR ||
6100                 N1.getOpcode() == ISD::SPLAT_VECTOR)) {
6101       assert((N1.getOpcode() != ISD::BUILD_VECTOR ||
6102               N1.getValueType().isFixedLengthVector()) &&
6103              "BUILD_VECTOR used for scalable vectors");
6104       unsigned Index =
6105           N1.getOpcode() == ISD::BUILD_VECTOR ? N2C->getZExtValue() : 0;
6106       SDValue Elt = N1.getOperand(Index);
6107 
6108       if (VT != Elt.getValueType())
6109         // If the vector element type is not legal, the BUILD_VECTOR operands
6110         // are promoted and implicitly truncated, and the result implicitly
6111         // extended. Make that explicit here.
6112         Elt = getAnyExtOrTrunc(Elt, DL, VT);
6113 
6114       return Elt;
6115     }
6116 
6117     // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
6118     // operations are lowered to scalars.
6119     if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT) {
6120       // If the indices are the same, return the inserted element else
6121       // if the indices are known different, extract the element from
6122       // the original vector.
6123       SDValue N1Op2 = N1.getOperand(2);
6124       ConstantSDNode *N1Op2C = dyn_cast<ConstantSDNode>(N1Op2);
6125 
6126       if (N1Op2C && N2C) {
6127         if (N1Op2C->getZExtValue() == N2C->getZExtValue()) {
6128           if (VT == N1.getOperand(1).getValueType())
6129             return N1.getOperand(1);
6130           return getSExtOrTrunc(N1.getOperand(1), DL, VT);
6131         }
6132         return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, N1.getOperand(0), N2);
6133       }
6134     }
6135 
6136     // EXTRACT_VECTOR_ELT of v1iX EXTRACT_SUBVECTOR could be formed
6137     // when vector types are scalarized and v1iX is legal.
6138     // vextract (v1iX extract_subvector(vNiX, Idx)) -> vextract(vNiX,Idx).
6139     // Here we are completely ignoring the extract element index (N2),
6140     // which is fine for fixed width vectors, since any index other than 0
6141     // is undefined anyway. However, this cannot be ignored for scalable
6142     // vectors - in theory we could support this, but we don't want to do this
6143     // without a profitability check.
6144     if (N1.getOpcode() == ISD::EXTRACT_SUBVECTOR &&
6145         N1.getValueType().isFixedLengthVector() &&
6146         N1.getValueType().getVectorNumElements() == 1) {
6147       return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, N1.getOperand(0),
6148                      N1.getOperand(1));
6149     }
6150     break;
6151   case ISD::EXTRACT_ELEMENT:
6152     assert(N2C && (unsigned)N2C->getZExtValue() < 2 && "Bad EXTRACT_ELEMENT!");
6153     assert(!N1.getValueType().isVector() && !VT.isVector() &&
6154            (N1.getValueType().isInteger() == VT.isInteger()) &&
6155            N1.getValueType() != VT &&
6156            "Wrong types for EXTRACT_ELEMENT!");
6157 
6158     // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
6159     // 64-bit integers into 32-bit parts.  Instead of building the extract of
6160     // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
6161     if (N1.getOpcode() == ISD::BUILD_PAIR)
6162       return N1.getOperand(N2C->getZExtValue());
6163 
6164     // EXTRACT_ELEMENT of a constant int is also very common.
6165     if (N1C) {
6166       unsigned ElementSize = VT.getSizeInBits();
6167       unsigned Shift = ElementSize * N2C->getZExtValue();
6168       const APInt &Val = N1C->getAPIntValue();
6169       return getConstant(Val.extractBits(ElementSize, Shift), DL, VT);
6170     }
6171     break;
6172   case ISD::EXTRACT_SUBVECTOR: {
6173     EVT N1VT = N1.getValueType();
6174     assert(VT.isVector() && N1VT.isVector() &&
6175            "Extract subvector VTs must be vectors!");
6176     assert(VT.getVectorElementType() == N1VT.getVectorElementType() &&
6177            "Extract subvector VTs must have the same element type!");
6178     assert((VT.isFixedLengthVector() || N1VT.isScalableVector()) &&
6179            "Cannot extract a scalable vector from a fixed length vector!");
6180     assert((VT.isScalableVector() != N1VT.isScalableVector() ||
6181             VT.getVectorMinNumElements() <= N1VT.getVectorMinNumElements()) &&
6182            "Extract subvector must be from larger vector to smaller vector!");
6183     assert(N2C && "Extract subvector index must be a constant");
6184     assert((VT.isScalableVector() != N1VT.isScalableVector() ||
6185             (VT.getVectorMinNumElements() + N2C->getZExtValue()) <=
6186                 N1VT.getVectorMinNumElements()) &&
6187            "Extract subvector overflow!");
6188     assert(N2C->getAPIntValue().getBitWidth() ==
6189                TLI->getVectorIdxTy(getDataLayout()).getFixedSizeInBits() &&
6190            "Constant index for EXTRACT_SUBVECTOR has an invalid size");
6191 
6192     // Trivial extraction.
6193     if (VT == N1VT)
6194       return N1;
6195 
6196     // EXTRACT_SUBVECTOR of an UNDEF is an UNDEF.
6197     if (N1.isUndef())
6198       return getUNDEF(VT);
6199 
6200     // EXTRACT_SUBVECTOR of CONCAT_VECTOR can be simplified if the pieces of
6201     // the concat have the same type as the extract.
6202     if (N1.getOpcode() == ISD::CONCAT_VECTORS && N1.getNumOperands() > 0 &&
6203         VT == N1.getOperand(0).getValueType()) {
6204       unsigned Factor = VT.getVectorMinNumElements();
6205       return N1.getOperand(N2C->getZExtValue() / Factor);
6206     }
6207 
6208     // EXTRACT_SUBVECTOR of INSERT_SUBVECTOR is often created
6209     // during shuffle legalization.
6210     if (N1.getOpcode() == ISD::INSERT_SUBVECTOR && N2 == N1.getOperand(2) &&
6211         VT == N1.getOperand(1).getValueType())
6212       return N1.getOperand(1);
6213     break;
6214   }
6215   }
6216 
6217   // Perform trivial constant folding.
6218   if (SDValue SV = FoldConstantArithmetic(Opcode, DL, VT, {N1, N2}))
6219     return SV;
6220 
6221   // Canonicalize an UNDEF to the RHS, even over a constant.
6222   if (N1.isUndef()) {
6223     if (TLI->isCommutativeBinOp(Opcode)) {
6224       std::swap(N1, N2);
6225     } else {
6226       switch (Opcode) {
6227       case ISD::SIGN_EXTEND_INREG:
6228       case ISD::SUB:
6229         return getUNDEF(VT);     // fold op(undef, arg2) -> undef
6230       case ISD::UDIV:
6231       case ISD::SDIV:
6232       case ISD::UREM:
6233       case ISD::SREM:
6234       case ISD::SSUBSAT:
6235       case ISD::USUBSAT:
6236         return getConstant(0, DL, VT);    // fold op(undef, arg2) -> 0
6237       }
6238     }
6239   }
6240 
6241   // Fold a bunch of operators when the RHS is undef.
6242   if (N2.isUndef()) {
6243     switch (Opcode) {
6244     case ISD::XOR:
6245       if (N1.isUndef())
6246         // Handle undef ^ undef -> 0 special case. This is a common
6247         // idiom (misuse).
6248         return getConstant(0, DL, VT);
6249       LLVM_FALLTHROUGH;
6250     case ISD::ADD:
6251     case ISD::SUB:
6252     case ISD::UDIV:
6253     case ISD::SDIV:
6254     case ISD::UREM:
6255     case ISD::SREM:
6256       return getUNDEF(VT);       // fold op(arg1, undef) -> undef
6257     case ISD::MUL:
6258     case ISD::AND:
6259     case ISD::SSUBSAT:
6260     case ISD::USUBSAT:
6261       return getConstant(0, DL, VT);  // fold op(arg1, undef) -> 0
6262     case ISD::OR:
6263     case ISD::SADDSAT:
6264     case ISD::UADDSAT:
6265       return getAllOnesConstant(DL, VT);
6266     }
6267   }
6268 
6269   // Memoize this node if possible.
6270   SDNode *N;
6271   SDVTList VTs = getVTList(VT);
6272   SDValue Ops[] = {N1, N2};
6273   if (VT != MVT::Glue) {
6274     FoldingSetNodeID ID;
6275     AddNodeIDNode(ID, Opcode, VTs, Ops);
6276     void *IP = nullptr;
6277     if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) {
6278       E->intersectFlagsWith(Flags);
6279       return SDValue(E, 0);
6280     }
6281 
6282     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
6283     N->setFlags(Flags);
6284     createOperands(N, Ops);
6285     CSEMap.InsertNode(N, IP);
6286   } else {
6287     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
6288     createOperands(N, Ops);
6289   }
6290 
6291   InsertNode(N);
6292   SDValue V = SDValue(N, 0);
6293   NewSDValueDbgMsg(V, "Creating new node: ", this);
6294   return V;
6295 }
6296 
6297 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
6298                               SDValue N1, SDValue N2, SDValue N3) {
6299   SDNodeFlags Flags;
6300   if (Inserter)
6301     Flags = Inserter->getFlags();
6302   return getNode(Opcode, DL, VT, N1, N2, N3, Flags);
6303 }
6304 
6305 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
6306                               SDValue N1, SDValue N2, SDValue N3,
6307                               const SDNodeFlags Flags) {
6308   assert(N1.getOpcode() != ISD::DELETED_NODE &&
6309          N2.getOpcode() != ISD::DELETED_NODE &&
6310          N3.getOpcode() != ISD::DELETED_NODE &&
6311          "Operand is DELETED_NODE!");
6312   // Perform various simplifications.
6313   switch (Opcode) {
6314   case ISD::FMA: {
6315     assert(VT.isFloatingPoint() && "This operator only applies to FP types!");
6316     assert(N1.getValueType() == VT && N2.getValueType() == VT &&
6317            N3.getValueType() == VT && "FMA types must match!");
6318     ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
6319     ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2);
6320     ConstantFPSDNode *N3CFP = dyn_cast<ConstantFPSDNode>(N3);
6321     if (N1CFP && N2CFP && N3CFP) {
6322       APFloat  V1 = N1CFP->getValueAPF();
6323       const APFloat &V2 = N2CFP->getValueAPF();
6324       const APFloat &V3 = N3CFP->getValueAPF();
6325       V1.fusedMultiplyAdd(V2, V3, APFloat::rmNearestTiesToEven);
6326       return getConstantFP(V1, DL, VT);
6327     }
6328     break;
6329   }
6330   case ISD::BUILD_VECTOR: {
6331     // Attempt to simplify BUILD_VECTOR.
6332     SDValue Ops[] = {N1, N2, N3};
6333     if (SDValue V = FoldBUILD_VECTOR(DL, VT, Ops, *this))
6334       return V;
6335     break;
6336   }
6337   case ISD::CONCAT_VECTORS: {
6338     SDValue Ops[] = {N1, N2, N3};
6339     if (SDValue V = foldCONCAT_VECTORS(DL, VT, Ops, *this))
6340       return V;
6341     break;
6342   }
6343   case ISD::SETCC: {
6344     assert(VT.isInteger() && "SETCC result type must be an integer!");
6345     assert(N1.getValueType() == N2.getValueType() &&
6346            "SETCC operands must have the same type!");
6347     assert(VT.isVector() == N1.getValueType().isVector() &&
6348            "SETCC type should be vector iff the operand type is vector!");
6349     assert((!VT.isVector() || VT.getVectorElementCount() ==
6350                                   N1.getValueType().getVectorElementCount()) &&
6351            "SETCC vector element counts must match!");
6352     // Use FoldSetCC to simplify SETCC's.
6353     if (SDValue V = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get(), DL))
6354       return V;
6355     // Vector constant folding.
6356     SDValue Ops[] = {N1, N2, N3};
6357     if (SDValue V = FoldConstantArithmetic(Opcode, DL, VT, Ops)) {
6358       NewSDValueDbgMsg(V, "New node vector constant folding: ", this);
6359       return V;
6360     }
6361     break;
6362   }
6363   case ISD::SELECT:
6364   case ISD::VSELECT:
6365     if (SDValue V = simplifySelect(N1, N2, N3))
6366       return V;
6367     break;
6368   case ISD::VECTOR_SHUFFLE:
6369     llvm_unreachable("should use getVectorShuffle constructor!");
6370   case ISD::VECTOR_SPLICE: {
6371     if (cast<ConstantSDNode>(N3)->isNullValue())
6372       return N1;
6373     break;
6374   }
6375   case ISD::INSERT_VECTOR_ELT: {
6376     ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3);
6377     // INSERT_VECTOR_ELT into out-of-bounds element is an UNDEF, except
6378     // for scalable vectors where we will generate appropriate code to
6379     // deal with out-of-bounds cases correctly.
6380     if (N3C && N1.getValueType().isFixedLengthVector() &&
6381         N3C->getZExtValue() >= N1.getValueType().getVectorNumElements())
6382       return getUNDEF(VT);
6383 
6384     // Undefined index can be assumed out-of-bounds, so that's UNDEF too.
6385     if (N3.isUndef())
6386       return getUNDEF(VT);
6387 
6388     // If the inserted element is an UNDEF, just use the input vector.
6389     if (N2.isUndef())
6390       return N1;
6391 
6392     break;
6393   }
6394   case ISD::INSERT_SUBVECTOR: {
6395     // Inserting undef into undef is still undef.
6396     if (N1.isUndef() && N2.isUndef())
6397       return getUNDEF(VT);
6398 
6399     EVT N2VT = N2.getValueType();
6400     assert(VT == N1.getValueType() &&
6401            "Dest and insert subvector source types must match!");
6402     assert(VT.isVector() && N2VT.isVector() &&
6403            "Insert subvector VTs must be vectors!");
6404     assert((VT.isScalableVector() || N2VT.isFixedLengthVector()) &&
6405            "Cannot insert a scalable vector into a fixed length vector!");
6406     assert((VT.isScalableVector() != N2VT.isScalableVector() ||
6407             VT.getVectorMinNumElements() >= N2VT.getVectorMinNumElements()) &&
6408            "Insert subvector must be from smaller vector to larger vector!");
6409     assert(isa<ConstantSDNode>(N3) &&
6410            "Insert subvector index must be constant");
6411     assert((VT.isScalableVector() != N2VT.isScalableVector() ||
6412             (N2VT.getVectorMinNumElements() +
6413              cast<ConstantSDNode>(N3)->getZExtValue()) <=
6414                 VT.getVectorMinNumElements()) &&
6415            "Insert subvector overflow!");
6416     assert(cast<ConstantSDNode>(N3)->getAPIntValue().getBitWidth() ==
6417                TLI->getVectorIdxTy(getDataLayout()).getFixedSizeInBits() &&
6418            "Constant index for INSERT_SUBVECTOR has an invalid size");
6419 
6420     // Trivial insertion.
6421     if (VT == N2VT)
6422       return N2;
6423 
6424     // If this is an insert of an extracted vector into an undef vector, we
6425     // can just use the input to the extract.
6426     if (N1.isUndef() && N2.getOpcode() == ISD::EXTRACT_SUBVECTOR &&
6427         N2.getOperand(1) == N3 && N2.getOperand(0).getValueType() == VT)
6428       return N2.getOperand(0);
6429     break;
6430   }
6431   case ISD::BITCAST:
6432     // Fold bit_convert nodes from a type to themselves.
6433     if (N1.getValueType() == VT)
6434       return N1;
6435     break;
6436   }
6437 
6438   // Memoize node if it doesn't produce a flag.
6439   SDNode *N;
6440   SDVTList VTs = getVTList(VT);
6441   SDValue Ops[] = {N1, N2, N3};
6442   if (VT != MVT::Glue) {
6443     FoldingSetNodeID ID;
6444     AddNodeIDNode(ID, Opcode, VTs, Ops);
6445     void *IP = nullptr;
6446     if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) {
6447       E->intersectFlagsWith(Flags);
6448       return SDValue(E, 0);
6449     }
6450 
6451     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
6452     N->setFlags(Flags);
6453     createOperands(N, Ops);
6454     CSEMap.InsertNode(N, IP);
6455   } else {
6456     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
6457     createOperands(N, Ops);
6458   }
6459 
6460   InsertNode(N);
6461   SDValue V = SDValue(N, 0);
6462   NewSDValueDbgMsg(V, "Creating new node: ", this);
6463   return V;
6464 }
6465 
6466 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
6467                               SDValue N1, SDValue N2, SDValue N3, SDValue N4) {
6468   SDValue Ops[] = { N1, N2, N3, N4 };
6469   return getNode(Opcode, DL, VT, Ops);
6470 }
6471 
6472 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
6473                               SDValue N1, SDValue N2, SDValue N3, SDValue N4,
6474                               SDValue N5) {
6475   SDValue Ops[] = { N1, N2, N3, N4, N5 };
6476   return getNode(Opcode, DL, VT, Ops);
6477 }
6478 
6479 /// getStackArgumentTokenFactor - Compute a TokenFactor to force all
6480 /// the incoming stack arguments to be loaded from the stack.
6481 SDValue SelectionDAG::getStackArgumentTokenFactor(SDValue Chain) {
6482   SmallVector<SDValue, 8> ArgChains;
6483 
6484   // Include the original chain at the beginning of the list. When this is
6485   // used by target LowerCall hooks, this helps legalize find the
6486   // CALLSEQ_BEGIN node.
6487   ArgChains.push_back(Chain);
6488 
6489   // Add a chain value for each stack argument.
6490   for (SDNode *U : getEntryNode().getNode()->uses())
6491     if (LoadSDNode *L = dyn_cast<LoadSDNode>(U))
6492       if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(L->getBasePtr()))
6493         if (FI->getIndex() < 0)
6494           ArgChains.push_back(SDValue(L, 1));
6495 
6496   // Build a tokenfactor for all the chains.
6497   return getNode(ISD::TokenFactor, SDLoc(Chain), MVT::Other, ArgChains);
6498 }
6499 
6500 /// getMemsetValue - Vectorized representation of the memset value
6501 /// operand.
6502 static SDValue getMemsetValue(SDValue Value, EVT VT, SelectionDAG &DAG,
6503                               const SDLoc &dl) {
6504   assert(!Value.isUndef());
6505 
6506   unsigned NumBits = VT.getScalarSizeInBits();
6507   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
6508     assert(C->getAPIntValue().getBitWidth() == 8);
6509     APInt Val = APInt::getSplat(NumBits, C->getAPIntValue());
6510     if (VT.isInteger()) {
6511       bool IsOpaque = VT.getSizeInBits() > 64 ||
6512           !DAG.getTargetLoweringInfo().isLegalStoreImmediate(C->getSExtValue());
6513       return DAG.getConstant(Val, dl, VT, false, IsOpaque);
6514     }
6515     return DAG.getConstantFP(APFloat(DAG.EVTToAPFloatSemantics(VT), Val), dl,
6516                              VT);
6517   }
6518 
6519   assert(Value.getValueType() == MVT::i8 && "memset with non-byte fill value?");
6520   EVT IntVT = VT.getScalarType();
6521   if (!IntVT.isInteger())
6522     IntVT = EVT::getIntegerVT(*DAG.getContext(), IntVT.getSizeInBits());
6523 
6524   Value = DAG.getNode(ISD::ZERO_EXTEND, dl, IntVT, Value);
6525   if (NumBits > 8) {
6526     // Use a multiplication with 0x010101... to extend the input to the
6527     // required length.
6528     APInt Magic = APInt::getSplat(NumBits, APInt(8, 0x01));
6529     Value = DAG.getNode(ISD::MUL, dl, IntVT, Value,
6530                         DAG.getConstant(Magic, dl, IntVT));
6531   }
6532 
6533   if (VT != Value.getValueType() && !VT.isInteger())
6534     Value = DAG.getBitcast(VT.getScalarType(), Value);
6535   if (VT != Value.getValueType())
6536     Value = DAG.getSplatBuildVector(VT, dl, Value);
6537 
6538   return Value;
6539 }
6540 
6541 /// getMemsetStringVal - Similar to getMemsetValue. Except this is only
6542 /// used when a memcpy is turned into a memset when the source is a constant
6543 /// string ptr.
6544 static SDValue getMemsetStringVal(EVT VT, const SDLoc &dl, SelectionDAG &DAG,
6545                                   const TargetLowering &TLI,
6546                                   const ConstantDataArraySlice &Slice) {
6547   // Handle vector with all elements zero.
6548   if (Slice.Array == nullptr) {
6549     if (VT.isInteger())
6550       return DAG.getConstant(0, dl, VT);
6551     if (VT == MVT::f32 || VT == MVT::f64 || VT == MVT::f128)
6552       return DAG.getConstantFP(0.0, dl, VT);
6553     if (VT.isVector()) {
6554       unsigned NumElts = VT.getVectorNumElements();
6555       MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64;
6556       return DAG.getNode(ISD::BITCAST, dl, VT,
6557                          DAG.getConstant(0, dl,
6558                                          EVT::getVectorVT(*DAG.getContext(),
6559                                                           EltVT, NumElts)));
6560     }
6561     llvm_unreachable("Expected type!");
6562   }
6563 
6564   assert(!VT.isVector() && "Can't handle vector type here!");
6565   unsigned NumVTBits = VT.getSizeInBits();
6566   unsigned NumVTBytes = NumVTBits / 8;
6567   unsigned NumBytes = std::min(NumVTBytes, unsigned(Slice.Length));
6568 
6569   APInt Val(NumVTBits, 0);
6570   if (DAG.getDataLayout().isLittleEndian()) {
6571     for (unsigned i = 0; i != NumBytes; ++i)
6572       Val |= (uint64_t)(unsigned char)Slice[i] << i*8;
6573   } else {
6574     for (unsigned i = 0; i != NumBytes; ++i)
6575       Val |= (uint64_t)(unsigned char)Slice[i] << (NumVTBytes-i-1)*8;
6576   }
6577 
6578   // If the "cost" of materializing the integer immediate is less than the cost
6579   // of a load, then it is cost effective to turn the load into the immediate.
6580   Type *Ty = VT.getTypeForEVT(*DAG.getContext());
6581   if (TLI.shouldConvertConstantLoadToIntImm(Val, Ty))
6582     return DAG.getConstant(Val, dl, VT);
6583   return SDValue();
6584 }
6585 
6586 SDValue SelectionDAG::getMemBasePlusOffset(SDValue Base, TypeSize Offset,
6587                                            const SDLoc &DL,
6588                                            const SDNodeFlags Flags) {
6589   EVT VT = Base.getValueType();
6590   SDValue Index;
6591 
6592   if (Offset.isScalable())
6593     Index = getVScale(DL, Base.getValueType(),
6594                       APInt(Base.getValueSizeInBits().getFixedSize(),
6595                             Offset.getKnownMinSize()));
6596   else
6597     Index = getConstant(Offset.getFixedSize(), DL, VT);
6598 
6599   return getMemBasePlusOffset(Base, Index, DL, Flags);
6600 }
6601 
6602 SDValue SelectionDAG::getMemBasePlusOffset(SDValue Ptr, SDValue Offset,
6603                                            const SDLoc &DL,
6604                                            const SDNodeFlags Flags) {
6605   assert(Offset.getValueType().isInteger());
6606   EVT BasePtrVT = Ptr.getValueType();
6607   return getNode(ISD::ADD, DL, BasePtrVT, Ptr, Offset, Flags);
6608 }
6609 
6610 /// Returns true if memcpy source is constant data.
6611 static bool isMemSrcFromConstant(SDValue Src, ConstantDataArraySlice &Slice) {
6612   uint64_t SrcDelta = 0;
6613   GlobalAddressSDNode *G = nullptr;
6614   if (Src.getOpcode() == ISD::GlobalAddress)
6615     G = cast<GlobalAddressSDNode>(Src);
6616   else if (Src.getOpcode() == ISD::ADD &&
6617            Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
6618            Src.getOperand(1).getOpcode() == ISD::Constant) {
6619     G = cast<GlobalAddressSDNode>(Src.getOperand(0));
6620     SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getZExtValue();
6621   }
6622   if (!G)
6623     return false;
6624 
6625   return getConstantDataArrayInfo(G->getGlobal(), Slice, 8,
6626                                   SrcDelta + G->getOffset());
6627 }
6628 
6629 static bool shouldLowerMemFuncForSize(const MachineFunction &MF,
6630                                       SelectionDAG &DAG) {
6631   // On Darwin, -Os means optimize for size without hurting performance, so
6632   // only really optimize for size when -Oz (MinSize) is used.
6633   if (MF.getTarget().getTargetTriple().isOSDarwin())
6634     return MF.getFunction().hasMinSize();
6635   return DAG.shouldOptForSize();
6636 }
6637 
6638 static void chainLoadsAndStoresForMemcpy(SelectionDAG &DAG, const SDLoc &dl,
6639                           SmallVector<SDValue, 32> &OutChains, unsigned From,
6640                           unsigned To, SmallVector<SDValue, 16> &OutLoadChains,
6641                           SmallVector<SDValue, 16> &OutStoreChains) {
6642   assert(OutLoadChains.size() && "Missing loads in memcpy inlining");
6643   assert(OutStoreChains.size() && "Missing stores in memcpy inlining");
6644   SmallVector<SDValue, 16> GluedLoadChains;
6645   for (unsigned i = From; i < To; ++i) {
6646     OutChains.push_back(OutLoadChains[i]);
6647     GluedLoadChains.push_back(OutLoadChains[i]);
6648   }
6649 
6650   // Chain for all loads.
6651   SDValue LoadToken = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
6652                                   GluedLoadChains);
6653 
6654   for (unsigned i = From; i < To; ++i) {
6655     StoreSDNode *ST = dyn_cast<StoreSDNode>(OutStoreChains[i]);
6656     SDValue NewStore = DAG.getTruncStore(LoadToken, dl, ST->getValue(),
6657                                   ST->getBasePtr(), ST->getMemoryVT(),
6658                                   ST->getMemOperand());
6659     OutChains.push_back(NewStore);
6660   }
6661 }
6662 
6663 static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG, const SDLoc &dl,
6664                                        SDValue Chain, SDValue Dst, SDValue Src,
6665                                        uint64_t Size, Align Alignment,
6666                                        bool isVol, bool AlwaysInline,
6667                                        MachinePointerInfo DstPtrInfo,
6668                                        MachinePointerInfo SrcPtrInfo,
6669                                        const AAMDNodes &AAInfo) {
6670   // Turn a memcpy of undef to nop.
6671   // FIXME: We need to honor volatile even is Src is undef.
6672   if (Src.isUndef())
6673     return Chain;
6674 
6675   // Expand memcpy to a series of load and store ops if the size operand falls
6676   // below a certain threshold.
6677   // TODO: In the AlwaysInline case, if the size is big then generate a loop
6678   // rather than maybe a humongous number of loads and stores.
6679   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6680   const DataLayout &DL = DAG.getDataLayout();
6681   LLVMContext &C = *DAG.getContext();
6682   std::vector<EVT> MemOps;
6683   bool DstAlignCanChange = false;
6684   MachineFunction &MF = DAG.getMachineFunction();
6685   MachineFrameInfo &MFI = MF.getFrameInfo();
6686   bool OptSize = shouldLowerMemFuncForSize(MF, DAG);
6687   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
6688   if (FI && !MFI.isFixedObjectIndex(FI->getIndex()))
6689     DstAlignCanChange = true;
6690   MaybeAlign SrcAlign = DAG.InferPtrAlign(Src);
6691   if (!SrcAlign || Alignment > *SrcAlign)
6692     SrcAlign = Alignment;
6693   assert(SrcAlign && "SrcAlign must be set");
6694   ConstantDataArraySlice Slice;
6695   // If marked as volatile, perform a copy even when marked as constant.
6696   bool CopyFromConstant = !isVol && isMemSrcFromConstant(Src, Slice);
6697   bool isZeroConstant = CopyFromConstant && Slice.Array == nullptr;
6698   unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize);
6699   const MemOp Op = isZeroConstant
6700                        ? MemOp::Set(Size, DstAlignCanChange, Alignment,
6701                                     /*IsZeroMemset*/ true, isVol)
6702                        : MemOp::Copy(Size, DstAlignCanChange, Alignment,
6703                                      *SrcAlign, isVol, CopyFromConstant);
6704   if (!TLI.findOptimalMemOpLowering(
6705           MemOps, Limit, Op, DstPtrInfo.getAddrSpace(),
6706           SrcPtrInfo.getAddrSpace(), MF.getFunction().getAttributes()))
6707     return SDValue();
6708 
6709   if (DstAlignCanChange) {
6710     Type *Ty = MemOps[0].getTypeForEVT(C);
6711     Align NewAlign = DL.getABITypeAlign(Ty);
6712 
6713     // Don't promote to an alignment that would require dynamic stack
6714     // realignment.
6715     const TargetRegisterInfo *TRI = MF.getSubtarget().getRegisterInfo();
6716     if (!TRI->hasStackRealignment(MF))
6717       while (NewAlign > Alignment && DL.exceedsNaturalStackAlignment(NewAlign))
6718         NewAlign = NewAlign / 2;
6719 
6720     if (NewAlign > Alignment) {
6721       // Give the stack frame object a larger alignment if needed.
6722       if (MFI.getObjectAlign(FI->getIndex()) < NewAlign)
6723         MFI.setObjectAlignment(FI->getIndex(), NewAlign);
6724       Alignment = NewAlign;
6725     }
6726   }
6727 
6728   // Prepare AAInfo for loads/stores after lowering this memcpy.
6729   AAMDNodes NewAAInfo = AAInfo;
6730   NewAAInfo.TBAA = NewAAInfo.TBAAStruct = nullptr;
6731 
6732   MachineMemOperand::Flags MMOFlags =
6733       isVol ? MachineMemOperand::MOVolatile : MachineMemOperand::MONone;
6734   SmallVector<SDValue, 16> OutLoadChains;
6735   SmallVector<SDValue, 16> OutStoreChains;
6736   SmallVector<SDValue, 32> OutChains;
6737   unsigned NumMemOps = MemOps.size();
6738   uint64_t SrcOff = 0, DstOff = 0;
6739   for (unsigned i = 0; i != NumMemOps; ++i) {
6740     EVT VT = MemOps[i];
6741     unsigned VTSize = VT.getSizeInBits() / 8;
6742     SDValue Value, Store;
6743 
6744     if (VTSize > Size) {
6745       // Issuing an unaligned load / store pair  that overlaps with the previous
6746       // pair. Adjust the offset accordingly.
6747       assert(i == NumMemOps-1 && i != 0);
6748       SrcOff -= VTSize - Size;
6749       DstOff -= VTSize - Size;
6750     }
6751 
6752     if (CopyFromConstant &&
6753         (isZeroConstant || (VT.isInteger() && !VT.isVector()))) {
6754       // It's unlikely a store of a vector immediate can be done in a single
6755       // instruction. It would require a load from a constantpool first.
6756       // We only handle zero vectors here.
6757       // FIXME: Handle other cases where store of vector immediate is done in
6758       // a single instruction.
6759       ConstantDataArraySlice SubSlice;
6760       if (SrcOff < Slice.Length) {
6761         SubSlice = Slice;
6762         SubSlice.move(SrcOff);
6763       } else {
6764         // This is an out-of-bounds access and hence UB. Pretend we read zero.
6765         SubSlice.Array = nullptr;
6766         SubSlice.Offset = 0;
6767         SubSlice.Length = VTSize;
6768       }
6769       Value = getMemsetStringVal(VT, dl, DAG, TLI, SubSlice);
6770       if (Value.getNode()) {
6771         Store = DAG.getStore(
6772             Chain, dl, Value,
6773             DAG.getMemBasePlusOffset(Dst, TypeSize::Fixed(DstOff), dl),
6774             DstPtrInfo.getWithOffset(DstOff), Alignment, MMOFlags, NewAAInfo);
6775         OutChains.push_back(Store);
6776       }
6777     }
6778 
6779     if (!Store.getNode()) {
6780       // The type might not be legal for the target.  This should only happen
6781       // if the type is smaller than a legal type, as on PPC, so the right
6782       // thing to do is generate a LoadExt/StoreTrunc pair.  These simplify
6783       // to Load/Store if NVT==VT.
6784       // FIXME does the case above also need this?
6785       EVT NVT = TLI.getTypeToTransformTo(C, VT);
6786       assert(NVT.bitsGE(VT));
6787 
6788       bool isDereferenceable =
6789         SrcPtrInfo.getWithOffset(SrcOff).isDereferenceable(VTSize, C, DL);
6790       MachineMemOperand::Flags SrcMMOFlags = MMOFlags;
6791       if (isDereferenceable)
6792         SrcMMOFlags |= MachineMemOperand::MODereferenceable;
6793 
6794       Value = DAG.getExtLoad(
6795           ISD::EXTLOAD, dl, NVT, Chain,
6796           DAG.getMemBasePlusOffset(Src, TypeSize::Fixed(SrcOff), dl),
6797           SrcPtrInfo.getWithOffset(SrcOff), VT,
6798           commonAlignment(*SrcAlign, SrcOff), SrcMMOFlags, NewAAInfo);
6799       OutLoadChains.push_back(Value.getValue(1));
6800 
6801       Store = DAG.getTruncStore(
6802           Chain, dl, Value,
6803           DAG.getMemBasePlusOffset(Dst, TypeSize::Fixed(DstOff), dl),
6804           DstPtrInfo.getWithOffset(DstOff), VT, Alignment, MMOFlags, NewAAInfo);
6805       OutStoreChains.push_back(Store);
6806     }
6807     SrcOff += VTSize;
6808     DstOff += VTSize;
6809     Size -= VTSize;
6810   }
6811 
6812   unsigned GluedLdStLimit = MaxLdStGlue == 0 ?
6813                                 TLI.getMaxGluedStoresPerMemcpy() : MaxLdStGlue;
6814   unsigned NumLdStInMemcpy = OutStoreChains.size();
6815 
6816   if (NumLdStInMemcpy) {
6817     // It may be that memcpy might be converted to memset if it's memcpy
6818     // of constants. In such a case, we won't have loads and stores, but
6819     // just stores. In the absence of loads, there is nothing to gang up.
6820     if ((GluedLdStLimit <= 1) || !EnableMemCpyDAGOpt) {
6821       // If target does not care, just leave as it.
6822       for (unsigned i = 0; i < NumLdStInMemcpy; ++i) {
6823         OutChains.push_back(OutLoadChains[i]);
6824         OutChains.push_back(OutStoreChains[i]);
6825       }
6826     } else {
6827       // Ld/St less than/equal limit set by target.
6828       if (NumLdStInMemcpy <= GluedLdStLimit) {
6829           chainLoadsAndStoresForMemcpy(DAG, dl, OutChains, 0,
6830                                         NumLdStInMemcpy, OutLoadChains,
6831                                         OutStoreChains);
6832       } else {
6833         unsigned NumberLdChain =  NumLdStInMemcpy / GluedLdStLimit;
6834         unsigned RemainingLdStInMemcpy = NumLdStInMemcpy % GluedLdStLimit;
6835         unsigned GlueIter = 0;
6836 
6837         for (unsigned cnt = 0; cnt < NumberLdChain; ++cnt) {
6838           unsigned IndexFrom = NumLdStInMemcpy - GlueIter - GluedLdStLimit;
6839           unsigned IndexTo   = NumLdStInMemcpy - GlueIter;
6840 
6841           chainLoadsAndStoresForMemcpy(DAG, dl, OutChains, IndexFrom, IndexTo,
6842                                        OutLoadChains, OutStoreChains);
6843           GlueIter += GluedLdStLimit;
6844         }
6845 
6846         // Residual ld/st.
6847         if (RemainingLdStInMemcpy) {
6848           chainLoadsAndStoresForMemcpy(DAG, dl, OutChains, 0,
6849                                         RemainingLdStInMemcpy, OutLoadChains,
6850                                         OutStoreChains);
6851         }
6852       }
6853     }
6854   }
6855   return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
6856 }
6857 
6858 static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG, const SDLoc &dl,
6859                                         SDValue Chain, SDValue Dst, SDValue Src,
6860                                         uint64_t Size, Align Alignment,
6861                                         bool isVol, bool AlwaysInline,
6862                                         MachinePointerInfo DstPtrInfo,
6863                                         MachinePointerInfo SrcPtrInfo,
6864                                         const AAMDNodes &AAInfo) {
6865   // Turn a memmove of undef to nop.
6866   // FIXME: We need to honor volatile even is Src is undef.
6867   if (Src.isUndef())
6868     return Chain;
6869 
6870   // Expand memmove to a series of load and store ops if the size operand falls
6871   // below a certain threshold.
6872   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6873   const DataLayout &DL = DAG.getDataLayout();
6874   LLVMContext &C = *DAG.getContext();
6875   std::vector<EVT> MemOps;
6876   bool DstAlignCanChange = false;
6877   MachineFunction &MF = DAG.getMachineFunction();
6878   MachineFrameInfo &MFI = MF.getFrameInfo();
6879   bool OptSize = shouldLowerMemFuncForSize(MF, DAG);
6880   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
6881   if (FI && !MFI.isFixedObjectIndex(FI->getIndex()))
6882     DstAlignCanChange = true;
6883   MaybeAlign SrcAlign = DAG.InferPtrAlign(Src);
6884   if (!SrcAlign || Alignment > *SrcAlign)
6885     SrcAlign = Alignment;
6886   assert(SrcAlign && "SrcAlign must be set");
6887   unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize);
6888   if (!TLI.findOptimalMemOpLowering(
6889           MemOps, Limit,
6890           MemOp::Copy(Size, DstAlignCanChange, Alignment, *SrcAlign,
6891                       /*IsVolatile*/ true),
6892           DstPtrInfo.getAddrSpace(), SrcPtrInfo.getAddrSpace(),
6893           MF.getFunction().getAttributes()))
6894     return SDValue();
6895 
6896   if (DstAlignCanChange) {
6897     Type *Ty = MemOps[0].getTypeForEVT(C);
6898     Align NewAlign = DL.getABITypeAlign(Ty);
6899     if (NewAlign > Alignment) {
6900       // Give the stack frame object a larger alignment if needed.
6901       if (MFI.getObjectAlign(FI->getIndex()) < NewAlign)
6902         MFI.setObjectAlignment(FI->getIndex(), NewAlign);
6903       Alignment = NewAlign;
6904     }
6905   }
6906 
6907   // Prepare AAInfo for loads/stores after lowering this memmove.
6908   AAMDNodes NewAAInfo = AAInfo;
6909   NewAAInfo.TBAA = NewAAInfo.TBAAStruct = nullptr;
6910 
6911   MachineMemOperand::Flags MMOFlags =
6912       isVol ? MachineMemOperand::MOVolatile : MachineMemOperand::MONone;
6913   uint64_t SrcOff = 0, DstOff = 0;
6914   SmallVector<SDValue, 8> LoadValues;
6915   SmallVector<SDValue, 8> LoadChains;
6916   SmallVector<SDValue, 8> OutChains;
6917   unsigned NumMemOps = MemOps.size();
6918   for (unsigned i = 0; i < NumMemOps; i++) {
6919     EVT VT = MemOps[i];
6920     unsigned VTSize = VT.getSizeInBits() / 8;
6921     SDValue Value;
6922 
6923     bool isDereferenceable =
6924       SrcPtrInfo.getWithOffset(SrcOff).isDereferenceable(VTSize, C, DL);
6925     MachineMemOperand::Flags SrcMMOFlags = MMOFlags;
6926     if (isDereferenceable)
6927       SrcMMOFlags |= MachineMemOperand::MODereferenceable;
6928 
6929     Value = DAG.getLoad(
6930         VT, dl, Chain,
6931         DAG.getMemBasePlusOffset(Src, TypeSize::Fixed(SrcOff), dl),
6932         SrcPtrInfo.getWithOffset(SrcOff), *SrcAlign, SrcMMOFlags, NewAAInfo);
6933     LoadValues.push_back(Value);
6934     LoadChains.push_back(Value.getValue(1));
6935     SrcOff += VTSize;
6936   }
6937   Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, LoadChains);
6938   OutChains.clear();
6939   for (unsigned i = 0; i < NumMemOps; i++) {
6940     EVT VT = MemOps[i];
6941     unsigned VTSize = VT.getSizeInBits() / 8;
6942     SDValue Store;
6943 
6944     Store = DAG.getStore(
6945         Chain, dl, LoadValues[i],
6946         DAG.getMemBasePlusOffset(Dst, TypeSize::Fixed(DstOff), dl),
6947         DstPtrInfo.getWithOffset(DstOff), Alignment, MMOFlags, NewAAInfo);
6948     OutChains.push_back(Store);
6949     DstOff += VTSize;
6950   }
6951 
6952   return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
6953 }
6954 
6955 /// Lower the call to 'memset' intrinsic function into a series of store
6956 /// operations.
6957 ///
6958 /// \param DAG Selection DAG where lowered code is placed.
6959 /// \param dl Link to corresponding IR location.
6960 /// \param Chain Control flow dependency.
6961 /// \param Dst Pointer to destination memory location.
6962 /// \param Src Value of byte to write into the memory.
6963 /// \param Size Number of bytes to write.
6964 /// \param Alignment Alignment of the destination in bytes.
6965 /// \param isVol True if destination is volatile.
6966 /// \param DstPtrInfo IR information on the memory pointer.
6967 /// \returns New head in the control flow, if lowering was successful, empty
6968 /// SDValue otherwise.
6969 ///
6970 /// The function tries to replace 'llvm.memset' intrinsic with several store
6971 /// operations and value calculation code. This is usually profitable for small
6972 /// memory size.
6973 static SDValue getMemsetStores(SelectionDAG &DAG, const SDLoc &dl,
6974                                SDValue Chain, SDValue Dst, SDValue Src,
6975                                uint64_t Size, Align Alignment, bool isVol,
6976                                MachinePointerInfo DstPtrInfo,
6977                                const AAMDNodes &AAInfo) {
6978   // Turn a memset of undef to nop.
6979   // FIXME: We need to honor volatile even is Src is undef.
6980   if (Src.isUndef())
6981     return Chain;
6982 
6983   // Expand memset to a series of load/store ops if the size operand
6984   // falls below a certain threshold.
6985   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6986   std::vector<EVT> MemOps;
6987   bool DstAlignCanChange = false;
6988   MachineFunction &MF = DAG.getMachineFunction();
6989   MachineFrameInfo &MFI = MF.getFrameInfo();
6990   bool OptSize = shouldLowerMemFuncForSize(MF, DAG);
6991   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst);
6992   if (FI && !MFI.isFixedObjectIndex(FI->getIndex()))
6993     DstAlignCanChange = true;
6994   bool IsZeroVal =
6995       isa<ConstantSDNode>(Src) && cast<ConstantSDNode>(Src)->isZero();
6996   if (!TLI.findOptimalMemOpLowering(
6997           MemOps, TLI.getMaxStoresPerMemset(OptSize),
6998           MemOp::Set(Size, DstAlignCanChange, Alignment, IsZeroVal, isVol),
6999           DstPtrInfo.getAddrSpace(), ~0u, MF.getFunction().getAttributes()))
7000     return SDValue();
7001 
7002   if (DstAlignCanChange) {
7003     Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext());
7004     Align NewAlign = DAG.getDataLayout().getABITypeAlign(Ty);
7005     if (NewAlign > Alignment) {
7006       // Give the stack frame object a larger alignment if needed.
7007       if (MFI.getObjectAlign(FI->getIndex()) < NewAlign)
7008         MFI.setObjectAlignment(FI->getIndex(), NewAlign);
7009       Alignment = NewAlign;
7010     }
7011   }
7012 
7013   SmallVector<SDValue, 8> OutChains;
7014   uint64_t DstOff = 0;
7015   unsigned NumMemOps = MemOps.size();
7016 
7017   // Find the largest store and generate the bit pattern for it.
7018   EVT LargestVT = MemOps[0];
7019   for (unsigned i = 1; i < NumMemOps; i++)
7020     if (MemOps[i].bitsGT(LargestVT))
7021       LargestVT = MemOps[i];
7022   SDValue MemSetValue = getMemsetValue(Src, LargestVT, DAG, dl);
7023 
7024   // Prepare AAInfo for loads/stores after lowering this memset.
7025   AAMDNodes NewAAInfo = AAInfo;
7026   NewAAInfo.TBAA = NewAAInfo.TBAAStruct = nullptr;
7027 
7028   for (unsigned i = 0; i < NumMemOps; i++) {
7029     EVT VT = MemOps[i];
7030     unsigned VTSize = VT.getSizeInBits() / 8;
7031     if (VTSize > Size) {
7032       // Issuing an unaligned load / store pair  that overlaps with the previous
7033       // pair. Adjust the offset accordingly.
7034       assert(i == NumMemOps-1 && i != 0);
7035       DstOff -= VTSize - Size;
7036     }
7037 
7038     // If this store is smaller than the largest store see whether we can get
7039     // the smaller value for free with a truncate.
7040     SDValue Value = MemSetValue;
7041     if (VT.bitsLT(LargestVT)) {
7042       if (!LargestVT.isVector() && !VT.isVector() &&
7043           TLI.isTruncateFree(LargestVT, VT))
7044         Value = DAG.getNode(ISD::TRUNCATE, dl, VT, MemSetValue);
7045       else
7046         Value = getMemsetValue(Src, VT, DAG, dl);
7047     }
7048     assert(Value.getValueType() == VT && "Value with wrong type.");
7049     SDValue Store = DAG.getStore(
7050         Chain, dl, Value,
7051         DAG.getMemBasePlusOffset(Dst, TypeSize::Fixed(DstOff), dl),
7052         DstPtrInfo.getWithOffset(DstOff), Alignment,
7053         isVol ? MachineMemOperand::MOVolatile : MachineMemOperand::MONone,
7054         NewAAInfo);
7055     OutChains.push_back(Store);
7056     DstOff += VT.getSizeInBits() / 8;
7057     Size -= VTSize;
7058   }
7059 
7060   return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains);
7061 }
7062 
7063 static void checkAddrSpaceIsValidForLibcall(const TargetLowering *TLI,
7064                                             unsigned AS) {
7065   // Lowering memcpy / memset / memmove intrinsics to calls is only valid if all
7066   // pointer operands can be losslessly bitcasted to pointers of address space 0
7067   if (AS != 0 && !TLI->getTargetMachine().isNoopAddrSpaceCast(AS, 0)) {
7068     report_fatal_error("cannot lower memory intrinsic in address space " +
7069                        Twine(AS));
7070   }
7071 }
7072 
7073 SDValue SelectionDAG::getMemcpy(SDValue Chain, const SDLoc &dl, SDValue Dst,
7074                                 SDValue Src, SDValue Size, Align Alignment,
7075                                 bool isVol, bool AlwaysInline, bool isTailCall,
7076                                 MachinePointerInfo DstPtrInfo,
7077                                 MachinePointerInfo SrcPtrInfo,
7078                                 const AAMDNodes &AAInfo) {
7079   // Check to see if we should lower the memcpy to loads and stores first.
7080   // For cases within the target-specified limits, this is the best choice.
7081   ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
7082   if (ConstantSize) {
7083     // Memcpy with size zero? Just return the original chain.
7084     if (ConstantSize->isZero())
7085       return Chain;
7086 
7087     SDValue Result = getMemcpyLoadsAndStores(
7088         *this, dl, Chain, Dst, Src, ConstantSize->getZExtValue(), Alignment,
7089         isVol, false, DstPtrInfo, SrcPtrInfo, AAInfo);
7090     if (Result.getNode())
7091       return Result;
7092   }
7093 
7094   // Then check to see if we should lower the memcpy with target-specific
7095   // code. If the target chooses to do this, this is the next best.
7096   if (TSI) {
7097     SDValue Result = TSI->EmitTargetCodeForMemcpy(
7098         *this, dl, Chain, Dst, Src, Size, Alignment, isVol, AlwaysInline,
7099         DstPtrInfo, SrcPtrInfo);
7100     if (Result.getNode())
7101       return Result;
7102   }
7103 
7104   // If we really need inline code and the target declined to provide it,
7105   // use a (potentially long) sequence of loads and stores.
7106   if (AlwaysInline) {
7107     assert(ConstantSize && "AlwaysInline requires a constant size!");
7108     return getMemcpyLoadsAndStores(*this, dl, Chain, Dst, Src,
7109                                    ConstantSize->getZExtValue(), Alignment,
7110                                    isVol, true, DstPtrInfo, SrcPtrInfo, AAInfo);
7111   }
7112 
7113   checkAddrSpaceIsValidForLibcall(TLI, DstPtrInfo.getAddrSpace());
7114   checkAddrSpaceIsValidForLibcall(TLI, SrcPtrInfo.getAddrSpace());
7115 
7116   // FIXME: If the memcpy is volatile (isVol), lowering it to a plain libc
7117   // memcpy is not guaranteed to be safe. libc memcpys aren't required to
7118   // respect volatile, so they may do things like read or write memory
7119   // beyond the given memory regions. But fixing this isn't easy, and most
7120   // people don't care.
7121 
7122   // Emit a library call.
7123   TargetLowering::ArgListTy Args;
7124   TargetLowering::ArgListEntry Entry;
7125   Entry.Ty = Type::getInt8PtrTy(*getContext());
7126   Entry.Node = Dst; Args.push_back(Entry);
7127   Entry.Node = Src; Args.push_back(Entry);
7128 
7129   Entry.Ty = getDataLayout().getIntPtrType(*getContext());
7130   Entry.Node = Size; Args.push_back(Entry);
7131   // FIXME: pass in SDLoc
7132   TargetLowering::CallLoweringInfo CLI(*this);
7133   CLI.setDebugLoc(dl)
7134       .setChain(Chain)
7135       .setLibCallee(TLI->getLibcallCallingConv(RTLIB::MEMCPY),
7136                     Dst.getValueType().getTypeForEVT(*getContext()),
7137                     getExternalSymbol(TLI->getLibcallName(RTLIB::MEMCPY),
7138                                       TLI->getPointerTy(getDataLayout())),
7139                     std::move(Args))
7140       .setDiscardResult()
7141       .setTailCall(isTailCall);
7142 
7143   std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
7144   return CallResult.second;
7145 }
7146 
7147 SDValue SelectionDAG::getAtomicMemcpy(SDValue Chain, const SDLoc &dl,
7148                                       SDValue Dst, unsigned DstAlign,
7149                                       SDValue Src, unsigned SrcAlign,
7150                                       SDValue Size, Type *SizeTy,
7151                                       unsigned ElemSz, bool isTailCall,
7152                                       MachinePointerInfo DstPtrInfo,
7153                                       MachinePointerInfo SrcPtrInfo) {
7154   // Emit a library call.
7155   TargetLowering::ArgListTy Args;
7156   TargetLowering::ArgListEntry Entry;
7157   Entry.Ty = getDataLayout().getIntPtrType(*getContext());
7158   Entry.Node = Dst;
7159   Args.push_back(Entry);
7160 
7161   Entry.Node = Src;
7162   Args.push_back(Entry);
7163 
7164   Entry.Ty = SizeTy;
7165   Entry.Node = Size;
7166   Args.push_back(Entry);
7167 
7168   RTLIB::Libcall LibraryCall =
7169       RTLIB::getMEMCPY_ELEMENT_UNORDERED_ATOMIC(ElemSz);
7170   if (LibraryCall == RTLIB::UNKNOWN_LIBCALL)
7171     report_fatal_error("Unsupported element size");
7172 
7173   TargetLowering::CallLoweringInfo CLI(*this);
7174   CLI.setDebugLoc(dl)
7175       .setChain(Chain)
7176       .setLibCallee(TLI->getLibcallCallingConv(LibraryCall),
7177                     Type::getVoidTy(*getContext()),
7178                     getExternalSymbol(TLI->getLibcallName(LibraryCall),
7179                                       TLI->getPointerTy(getDataLayout())),
7180                     std::move(Args))
7181       .setDiscardResult()
7182       .setTailCall(isTailCall);
7183 
7184   std::pair<SDValue, SDValue> CallResult = TLI->LowerCallTo(CLI);
7185   return CallResult.second;
7186 }
7187 
7188 SDValue SelectionDAG::getMemmove(SDValue Chain, const SDLoc &dl, SDValue Dst,
7189                                  SDValue Src, SDValue Size, Align Alignment,
7190                                  bool isVol, bool isTailCall,
7191                                  MachinePointerInfo DstPtrInfo,
7192                                  MachinePointerInfo SrcPtrInfo,
7193                                  const AAMDNodes &AAInfo) {
7194   // Check to see if we should lower the memmove to loads and stores first.
7195   // For cases within the target-specified limits, this is the best choice.
7196   ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
7197   if (ConstantSize) {
7198     // Memmove with size zero? Just return the original chain.
7199     if (ConstantSize->isZero())
7200       return Chain;
7201 
7202     SDValue Result = getMemmoveLoadsAndStores(
7203         *this, dl, Chain, Dst, Src, ConstantSize->getZExtValue(), Alignment,
7204         isVol, false, DstPtrInfo, SrcPtrInfo, AAInfo);
7205     if (Result.getNode())
7206       return Result;
7207   }
7208 
7209   // Then check to see if we should lower the memmove with target-specific
7210   // code. If the target chooses to do this, this is the next best.
7211   if (TSI) {
7212     SDValue Result =
7213         TSI->EmitTargetCodeForMemmove(*this, dl, Chain, Dst, Src, Size,
7214                                       Alignment, isVol, DstPtrInfo, SrcPtrInfo);
7215     if (Result.getNode())
7216       return Result;
7217   }
7218 
7219   checkAddrSpaceIsValidForLibcall(TLI, DstPtrInfo.getAddrSpace());
7220   checkAddrSpaceIsValidForLibcall(TLI, SrcPtrInfo.getAddrSpace());
7221 
7222   // FIXME: If the memmove is volatile, lowering it to plain libc memmove may
7223   // not be safe.  See memcpy above for more details.
7224 
7225   // Emit a library call.
7226   TargetLowering::ArgListTy Args;
7227   TargetLowering::ArgListEntry Entry;
7228   Entry.Ty = Type::getInt8PtrTy(*getContext());
7229   Entry.Node = Dst; Args.push_back(Entry);
7230   Entry.Node = Src; Args.push_back(Entry);
7231 
7232   Entry.Ty = getDataLayout().getIntPtrType(*getContext());
7233   Entry.Node = Size; Args.push_back(Entry);
7234   // FIXME:  pass in SDLoc
7235   TargetLowering::CallLoweringInfo CLI(*this);
7236   CLI.setDebugLoc(dl)
7237       .setChain(Chain)
7238       .setLibCallee(TLI->getLibcallCallingConv(RTLIB::MEMMOVE),
7239                     Dst.getValueType().getTypeForEVT(*getContext()),
7240                     getExternalSymbol(TLI->getLibcallName(RTLIB::MEMMOVE),
7241                                       TLI->getPointerTy(getDataLayout())),
7242                     std::move(Args))
7243       .setDiscardResult()
7244       .setTailCall(isTailCall);
7245 
7246   std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
7247   return CallResult.second;
7248 }
7249 
7250 SDValue SelectionDAG::getAtomicMemmove(SDValue Chain, const SDLoc &dl,
7251                                        SDValue Dst, unsigned DstAlign,
7252                                        SDValue Src, unsigned SrcAlign,
7253                                        SDValue Size, Type *SizeTy,
7254                                        unsigned ElemSz, bool isTailCall,
7255                                        MachinePointerInfo DstPtrInfo,
7256                                        MachinePointerInfo SrcPtrInfo) {
7257   // Emit a library call.
7258   TargetLowering::ArgListTy Args;
7259   TargetLowering::ArgListEntry Entry;
7260   Entry.Ty = getDataLayout().getIntPtrType(*getContext());
7261   Entry.Node = Dst;
7262   Args.push_back(Entry);
7263 
7264   Entry.Node = Src;
7265   Args.push_back(Entry);
7266 
7267   Entry.Ty = SizeTy;
7268   Entry.Node = Size;
7269   Args.push_back(Entry);
7270 
7271   RTLIB::Libcall LibraryCall =
7272       RTLIB::getMEMMOVE_ELEMENT_UNORDERED_ATOMIC(ElemSz);
7273   if (LibraryCall == RTLIB::UNKNOWN_LIBCALL)
7274     report_fatal_error("Unsupported element size");
7275 
7276   TargetLowering::CallLoweringInfo CLI(*this);
7277   CLI.setDebugLoc(dl)
7278       .setChain(Chain)
7279       .setLibCallee(TLI->getLibcallCallingConv(LibraryCall),
7280                     Type::getVoidTy(*getContext()),
7281                     getExternalSymbol(TLI->getLibcallName(LibraryCall),
7282                                       TLI->getPointerTy(getDataLayout())),
7283                     std::move(Args))
7284       .setDiscardResult()
7285       .setTailCall(isTailCall);
7286 
7287   std::pair<SDValue, SDValue> CallResult = TLI->LowerCallTo(CLI);
7288   return CallResult.second;
7289 }
7290 
7291 SDValue SelectionDAG::getMemset(SDValue Chain, const SDLoc &dl, SDValue Dst,
7292                                 SDValue Src, SDValue Size, Align Alignment,
7293                                 bool isVol, bool isTailCall,
7294                                 MachinePointerInfo DstPtrInfo,
7295                                 const AAMDNodes &AAInfo) {
7296   // Check to see if we should lower the memset to stores first.
7297   // For cases within the target-specified limits, this is the best choice.
7298   ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
7299   if (ConstantSize) {
7300     // Memset with size zero? Just return the original chain.
7301     if (ConstantSize->isZero())
7302       return Chain;
7303 
7304     SDValue Result = getMemsetStores(*this, dl, Chain, Dst, Src,
7305                                      ConstantSize->getZExtValue(), Alignment,
7306                                      isVol, DstPtrInfo, AAInfo);
7307 
7308     if (Result.getNode())
7309       return Result;
7310   }
7311 
7312   // Then check to see if we should lower the memset with target-specific
7313   // code. If the target chooses to do this, this is the next best.
7314   if (TSI) {
7315     SDValue Result = TSI->EmitTargetCodeForMemset(
7316         *this, dl, Chain, Dst, Src, Size, Alignment, isVol, DstPtrInfo);
7317     if (Result.getNode())
7318       return Result;
7319   }
7320 
7321   checkAddrSpaceIsValidForLibcall(TLI, DstPtrInfo.getAddrSpace());
7322 
7323   // Emit a library call.
7324   TargetLowering::ArgListTy Args;
7325   TargetLowering::ArgListEntry Entry;
7326   Entry.Node = Dst; Entry.Ty = Type::getInt8PtrTy(*getContext());
7327   Args.push_back(Entry);
7328   Entry.Node = Src;
7329   Entry.Ty = Src.getValueType().getTypeForEVT(*getContext());
7330   Args.push_back(Entry);
7331   Entry.Node = Size;
7332   Entry.Ty = getDataLayout().getIntPtrType(*getContext());
7333   Args.push_back(Entry);
7334 
7335   // FIXME: pass in SDLoc
7336   TargetLowering::CallLoweringInfo CLI(*this);
7337   CLI.setDebugLoc(dl)
7338       .setChain(Chain)
7339       .setLibCallee(TLI->getLibcallCallingConv(RTLIB::MEMSET),
7340                     Dst.getValueType().getTypeForEVT(*getContext()),
7341                     getExternalSymbol(TLI->getLibcallName(RTLIB::MEMSET),
7342                                       TLI->getPointerTy(getDataLayout())),
7343                     std::move(Args))
7344       .setDiscardResult()
7345       .setTailCall(isTailCall);
7346 
7347   std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
7348   return CallResult.second;
7349 }
7350 
7351 SDValue SelectionDAG::getAtomicMemset(SDValue Chain, const SDLoc &dl,
7352                                       SDValue Dst, unsigned DstAlign,
7353                                       SDValue Value, SDValue Size, Type *SizeTy,
7354                                       unsigned ElemSz, bool isTailCall,
7355                                       MachinePointerInfo DstPtrInfo) {
7356   // Emit a library call.
7357   TargetLowering::ArgListTy Args;
7358   TargetLowering::ArgListEntry Entry;
7359   Entry.Ty = getDataLayout().getIntPtrType(*getContext());
7360   Entry.Node = Dst;
7361   Args.push_back(Entry);
7362 
7363   Entry.Ty = Type::getInt8Ty(*getContext());
7364   Entry.Node = Value;
7365   Args.push_back(Entry);
7366 
7367   Entry.Ty = SizeTy;
7368   Entry.Node = Size;
7369   Args.push_back(Entry);
7370 
7371   RTLIB::Libcall LibraryCall =
7372       RTLIB::getMEMSET_ELEMENT_UNORDERED_ATOMIC(ElemSz);
7373   if (LibraryCall == RTLIB::UNKNOWN_LIBCALL)
7374     report_fatal_error("Unsupported element size");
7375 
7376   TargetLowering::CallLoweringInfo CLI(*this);
7377   CLI.setDebugLoc(dl)
7378       .setChain(Chain)
7379       .setLibCallee(TLI->getLibcallCallingConv(LibraryCall),
7380                     Type::getVoidTy(*getContext()),
7381                     getExternalSymbol(TLI->getLibcallName(LibraryCall),
7382                                       TLI->getPointerTy(getDataLayout())),
7383                     std::move(Args))
7384       .setDiscardResult()
7385       .setTailCall(isTailCall);
7386 
7387   std::pair<SDValue, SDValue> CallResult = TLI->LowerCallTo(CLI);
7388   return CallResult.second;
7389 }
7390 
7391 SDValue SelectionDAG::getAtomic(unsigned Opcode, const SDLoc &dl, EVT MemVT,
7392                                 SDVTList VTList, ArrayRef<SDValue> Ops,
7393                                 MachineMemOperand *MMO) {
7394   FoldingSetNodeID ID;
7395   ID.AddInteger(MemVT.getRawBits());
7396   AddNodeIDNode(ID, Opcode, VTList, Ops);
7397   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
7398   ID.AddInteger(MMO->getFlags());
7399   void* IP = nullptr;
7400   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
7401     cast<AtomicSDNode>(E)->refineAlignment(MMO);
7402     return SDValue(E, 0);
7403   }
7404 
7405   auto *N = newSDNode<AtomicSDNode>(Opcode, dl.getIROrder(), dl.getDebugLoc(),
7406                                     VTList, MemVT, MMO);
7407   createOperands(N, Ops);
7408 
7409   CSEMap.InsertNode(N, IP);
7410   InsertNode(N);
7411   return SDValue(N, 0);
7412 }
7413 
7414 SDValue SelectionDAG::getAtomicCmpSwap(unsigned Opcode, const SDLoc &dl,
7415                                        EVT MemVT, SDVTList VTs, SDValue Chain,
7416                                        SDValue Ptr, SDValue Cmp, SDValue Swp,
7417                                        MachineMemOperand *MMO) {
7418   assert(Opcode == ISD::ATOMIC_CMP_SWAP ||
7419          Opcode == ISD::ATOMIC_CMP_SWAP_WITH_SUCCESS);
7420   assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
7421 
7422   SDValue Ops[] = {Chain, Ptr, Cmp, Swp};
7423   return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO);
7424 }
7425 
7426 SDValue SelectionDAG::getAtomic(unsigned Opcode, const SDLoc &dl, EVT MemVT,
7427                                 SDValue Chain, SDValue Ptr, SDValue Val,
7428                                 MachineMemOperand *MMO) {
7429   assert((Opcode == ISD::ATOMIC_LOAD_ADD ||
7430           Opcode == ISD::ATOMIC_LOAD_SUB ||
7431           Opcode == ISD::ATOMIC_LOAD_AND ||
7432           Opcode == ISD::ATOMIC_LOAD_CLR ||
7433           Opcode == ISD::ATOMIC_LOAD_OR ||
7434           Opcode == ISD::ATOMIC_LOAD_XOR ||
7435           Opcode == ISD::ATOMIC_LOAD_NAND ||
7436           Opcode == ISD::ATOMIC_LOAD_MIN ||
7437           Opcode == ISD::ATOMIC_LOAD_MAX ||
7438           Opcode == ISD::ATOMIC_LOAD_UMIN ||
7439           Opcode == ISD::ATOMIC_LOAD_UMAX ||
7440           Opcode == ISD::ATOMIC_LOAD_FADD ||
7441           Opcode == ISD::ATOMIC_LOAD_FSUB ||
7442           Opcode == ISD::ATOMIC_SWAP ||
7443           Opcode == ISD::ATOMIC_STORE) &&
7444          "Invalid Atomic Op");
7445 
7446   EVT VT = Val.getValueType();
7447 
7448   SDVTList VTs = Opcode == ISD::ATOMIC_STORE ? getVTList(MVT::Other) :
7449                                                getVTList(VT, MVT::Other);
7450   SDValue Ops[] = {Chain, Ptr, Val};
7451   return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO);
7452 }
7453 
7454 SDValue SelectionDAG::getAtomic(unsigned Opcode, const SDLoc &dl, EVT MemVT,
7455                                 EVT VT, SDValue Chain, SDValue Ptr,
7456                                 MachineMemOperand *MMO) {
7457   assert(Opcode == ISD::ATOMIC_LOAD && "Invalid Atomic Op");
7458 
7459   SDVTList VTs = getVTList(VT, MVT::Other);
7460   SDValue Ops[] = {Chain, Ptr};
7461   return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO);
7462 }
7463 
7464 /// getMergeValues - Create a MERGE_VALUES node from the given operands.
7465 SDValue SelectionDAG::getMergeValues(ArrayRef<SDValue> Ops, const SDLoc &dl) {
7466   if (Ops.size() == 1)
7467     return Ops[0];
7468 
7469   SmallVector<EVT, 4> VTs;
7470   VTs.reserve(Ops.size());
7471   for (const SDValue &Op : Ops)
7472     VTs.push_back(Op.getValueType());
7473   return getNode(ISD::MERGE_VALUES, dl, getVTList(VTs), Ops);
7474 }
7475 
7476 SDValue SelectionDAG::getMemIntrinsicNode(
7477     unsigned Opcode, const SDLoc &dl, SDVTList VTList, ArrayRef<SDValue> Ops,
7478     EVT MemVT, MachinePointerInfo PtrInfo, Align Alignment,
7479     MachineMemOperand::Flags Flags, uint64_t Size, const AAMDNodes &AAInfo) {
7480   if (!Size && MemVT.isScalableVector())
7481     Size = MemoryLocation::UnknownSize;
7482   else if (!Size)
7483     Size = MemVT.getStoreSize();
7484 
7485   MachineFunction &MF = getMachineFunction();
7486   MachineMemOperand *MMO =
7487       MF.getMachineMemOperand(PtrInfo, Flags, Size, Alignment, AAInfo);
7488 
7489   return getMemIntrinsicNode(Opcode, dl, VTList, Ops, MemVT, MMO);
7490 }
7491 
7492 SDValue SelectionDAG::getMemIntrinsicNode(unsigned Opcode, const SDLoc &dl,
7493                                           SDVTList VTList,
7494                                           ArrayRef<SDValue> Ops, EVT MemVT,
7495                                           MachineMemOperand *MMO) {
7496   assert((Opcode == ISD::INTRINSIC_VOID ||
7497           Opcode == ISD::INTRINSIC_W_CHAIN ||
7498           Opcode == ISD::PREFETCH ||
7499           ((int)Opcode <= std::numeric_limits<int>::max() &&
7500            (int)Opcode >= ISD::FIRST_TARGET_MEMORY_OPCODE)) &&
7501          "Opcode is not a memory-accessing opcode!");
7502 
7503   // Memoize the node unless it returns a flag.
7504   MemIntrinsicSDNode *N;
7505   if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) {
7506     FoldingSetNodeID ID;
7507     AddNodeIDNode(ID, Opcode, VTList, Ops);
7508     ID.AddInteger(getSyntheticNodeSubclassData<MemIntrinsicSDNode>(
7509         Opcode, dl.getIROrder(), VTList, MemVT, MMO));
7510     ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
7511     ID.AddInteger(MMO->getFlags());
7512     void *IP = nullptr;
7513     if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
7514       cast<MemIntrinsicSDNode>(E)->refineAlignment(MMO);
7515       return SDValue(E, 0);
7516     }
7517 
7518     N = newSDNode<MemIntrinsicSDNode>(Opcode, dl.getIROrder(), dl.getDebugLoc(),
7519                                       VTList, MemVT, MMO);
7520     createOperands(N, Ops);
7521 
7522   CSEMap.InsertNode(N, IP);
7523   } else {
7524     N = newSDNode<MemIntrinsicSDNode>(Opcode, dl.getIROrder(), dl.getDebugLoc(),
7525                                       VTList, MemVT, MMO);
7526     createOperands(N, Ops);
7527   }
7528   InsertNode(N);
7529   SDValue V(N, 0);
7530   NewSDValueDbgMsg(V, "Creating new node: ", this);
7531   return V;
7532 }
7533 
7534 SDValue SelectionDAG::getLifetimeNode(bool IsStart, const SDLoc &dl,
7535                                       SDValue Chain, int FrameIndex,
7536                                       int64_t Size, int64_t Offset) {
7537   const unsigned Opcode = IsStart ? ISD::LIFETIME_START : ISD::LIFETIME_END;
7538   const auto VTs = getVTList(MVT::Other);
7539   SDValue Ops[2] = {
7540       Chain,
7541       getFrameIndex(FrameIndex,
7542                     getTargetLoweringInfo().getFrameIndexTy(getDataLayout()),
7543                     true)};
7544 
7545   FoldingSetNodeID ID;
7546   AddNodeIDNode(ID, Opcode, VTs, Ops);
7547   ID.AddInteger(FrameIndex);
7548   ID.AddInteger(Size);
7549   ID.AddInteger(Offset);
7550   void *IP = nullptr;
7551   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP))
7552     return SDValue(E, 0);
7553 
7554   LifetimeSDNode *N = newSDNode<LifetimeSDNode>(
7555       Opcode, dl.getIROrder(), dl.getDebugLoc(), VTs, Size, Offset);
7556   createOperands(N, Ops);
7557   CSEMap.InsertNode(N, IP);
7558   InsertNode(N);
7559   SDValue V(N, 0);
7560   NewSDValueDbgMsg(V, "Creating new node: ", this);
7561   return V;
7562 }
7563 
7564 SDValue SelectionDAG::getPseudoProbeNode(const SDLoc &Dl, SDValue Chain,
7565                                          uint64_t Guid, uint64_t Index,
7566                                          uint32_t Attr) {
7567   const unsigned Opcode = ISD::PSEUDO_PROBE;
7568   const auto VTs = getVTList(MVT::Other);
7569   SDValue Ops[] = {Chain};
7570   FoldingSetNodeID ID;
7571   AddNodeIDNode(ID, Opcode, VTs, Ops);
7572   ID.AddInteger(Guid);
7573   ID.AddInteger(Index);
7574   void *IP = nullptr;
7575   if (SDNode *E = FindNodeOrInsertPos(ID, Dl, IP))
7576     return SDValue(E, 0);
7577 
7578   auto *N = newSDNode<PseudoProbeSDNode>(
7579       Opcode, Dl.getIROrder(), Dl.getDebugLoc(), VTs, Guid, Index, Attr);
7580   createOperands(N, Ops);
7581   CSEMap.InsertNode(N, IP);
7582   InsertNode(N);
7583   SDValue V(N, 0);
7584   NewSDValueDbgMsg(V, "Creating new node: ", this);
7585   return V;
7586 }
7587 
7588 /// InferPointerInfo - If the specified ptr/offset is a frame index, infer a
7589 /// MachinePointerInfo record from it.  This is particularly useful because the
7590 /// code generator has many cases where it doesn't bother passing in a
7591 /// MachinePointerInfo to getLoad or getStore when it has "FI+Cst".
7592 static MachinePointerInfo InferPointerInfo(const MachinePointerInfo &Info,
7593                                            SelectionDAG &DAG, SDValue Ptr,
7594                                            int64_t Offset = 0) {
7595   // If this is FI+Offset, we can model it.
7596   if (const FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr))
7597     return MachinePointerInfo::getFixedStack(DAG.getMachineFunction(),
7598                                              FI->getIndex(), Offset);
7599 
7600   // If this is (FI+Offset1)+Offset2, we can model it.
7601   if (Ptr.getOpcode() != ISD::ADD ||
7602       !isa<ConstantSDNode>(Ptr.getOperand(1)) ||
7603       !isa<FrameIndexSDNode>(Ptr.getOperand(0)))
7604     return Info;
7605 
7606   int FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
7607   return MachinePointerInfo::getFixedStack(
7608       DAG.getMachineFunction(), FI,
7609       Offset + cast<ConstantSDNode>(Ptr.getOperand(1))->getSExtValue());
7610 }
7611 
7612 /// InferPointerInfo - If the specified ptr/offset is a frame index, infer a
7613 /// MachinePointerInfo record from it.  This is particularly useful because the
7614 /// code generator has many cases where it doesn't bother passing in a
7615 /// MachinePointerInfo to getLoad or getStore when it has "FI+Cst".
7616 static MachinePointerInfo InferPointerInfo(const MachinePointerInfo &Info,
7617                                            SelectionDAG &DAG, SDValue Ptr,
7618                                            SDValue OffsetOp) {
7619   // If the 'Offset' value isn't a constant, we can't handle this.
7620   if (ConstantSDNode *OffsetNode = dyn_cast<ConstantSDNode>(OffsetOp))
7621     return InferPointerInfo(Info, DAG, Ptr, OffsetNode->getSExtValue());
7622   if (OffsetOp.isUndef())
7623     return InferPointerInfo(Info, DAG, Ptr);
7624   return Info;
7625 }
7626 
7627 SDValue SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
7628                               EVT VT, const SDLoc &dl, SDValue Chain,
7629                               SDValue Ptr, SDValue Offset,
7630                               MachinePointerInfo PtrInfo, EVT MemVT,
7631                               Align Alignment,
7632                               MachineMemOperand::Flags MMOFlags,
7633                               const AAMDNodes &AAInfo, const MDNode *Ranges) {
7634   assert(Chain.getValueType() == MVT::Other &&
7635         "Invalid chain type");
7636 
7637   MMOFlags |= MachineMemOperand::MOLoad;
7638   assert((MMOFlags & MachineMemOperand::MOStore) == 0);
7639   // If we don't have a PtrInfo, infer the trivial frame index case to simplify
7640   // clients.
7641   if (PtrInfo.V.isNull())
7642     PtrInfo = InferPointerInfo(PtrInfo, *this, Ptr, Offset);
7643 
7644   uint64_t Size = MemoryLocation::getSizeOrUnknown(MemVT.getStoreSize());
7645   MachineFunction &MF = getMachineFunction();
7646   MachineMemOperand *MMO = MF.getMachineMemOperand(PtrInfo, MMOFlags, Size,
7647                                                    Alignment, AAInfo, Ranges);
7648   return getLoad(AM, ExtType, VT, dl, Chain, Ptr, Offset, MemVT, MMO);
7649 }
7650 
7651 SDValue SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
7652                               EVT VT, const SDLoc &dl, SDValue Chain,
7653                               SDValue Ptr, SDValue Offset, EVT MemVT,
7654                               MachineMemOperand *MMO) {
7655   if (VT == MemVT) {
7656     ExtType = ISD::NON_EXTLOAD;
7657   } else if (ExtType == ISD::NON_EXTLOAD) {
7658     assert(VT == MemVT && "Non-extending load from different memory type!");
7659   } else {
7660     // Extending load.
7661     assert(MemVT.getScalarType().bitsLT(VT.getScalarType()) &&
7662            "Should only be an extending load, not truncating!");
7663     assert(VT.isInteger() == MemVT.isInteger() &&
7664            "Cannot convert from FP to Int or Int -> FP!");
7665     assert(VT.isVector() == MemVT.isVector() &&
7666            "Cannot use an ext load to convert to or from a vector!");
7667     assert((!VT.isVector() ||
7668             VT.getVectorElementCount() == MemVT.getVectorElementCount()) &&
7669            "Cannot use an ext load to change the number of vector elements!");
7670   }
7671 
7672   bool Indexed = AM != ISD::UNINDEXED;
7673   assert((Indexed || Offset.isUndef()) && "Unindexed load with an offset!");
7674 
7675   SDVTList VTs = Indexed ?
7676     getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
7677   SDValue Ops[] = { Chain, Ptr, Offset };
7678   FoldingSetNodeID ID;
7679   AddNodeIDNode(ID, ISD::LOAD, VTs, Ops);
7680   ID.AddInteger(MemVT.getRawBits());
7681   ID.AddInteger(getSyntheticNodeSubclassData<LoadSDNode>(
7682       dl.getIROrder(), VTs, AM, ExtType, MemVT, MMO));
7683   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
7684   ID.AddInteger(MMO->getFlags());
7685   void *IP = nullptr;
7686   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
7687     cast<LoadSDNode>(E)->refineAlignment(MMO);
7688     return SDValue(E, 0);
7689   }
7690   auto *N = newSDNode<LoadSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs, AM,
7691                                   ExtType, MemVT, MMO);
7692   createOperands(N, Ops);
7693 
7694   CSEMap.InsertNode(N, IP);
7695   InsertNode(N);
7696   SDValue V(N, 0);
7697   NewSDValueDbgMsg(V, "Creating new node: ", this);
7698   return V;
7699 }
7700 
7701 SDValue SelectionDAG::getLoad(EVT VT, const SDLoc &dl, SDValue Chain,
7702                               SDValue Ptr, MachinePointerInfo PtrInfo,
7703                               MaybeAlign Alignment,
7704                               MachineMemOperand::Flags MMOFlags,
7705                               const AAMDNodes &AAInfo, const MDNode *Ranges) {
7706   SDValue Undef = getUNDEF(Ptr.getValueType());
7707   return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef,
7708                  PtrInfo, VT, Alignment, MMOFlags, AAInfo, Ranges);
7709 }
7710 
7711 SDValue SelectionDAG::getLoad(EVT VT, const SDLoc &dl, SDValue Chain,
7712                               SDValue Ptr, MachineMemOperand *MMO) {
7713   SDValue Undef = getUNDEF(Ptr.getValueType());
7714   return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef,
7715                  VT, MMO);
7716 }
7717 
7718 SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, const SDLoc &dl,
7719                                  EVT VT, SDValue Chain, SDValue Ptr,
7720                                  MachinePointerInfo PtrInfo, EVT MemVT,
7721                                  MaybeAlign Alignment,
7722                                  MachineMemOperand::Flags MMOFlags,
7723                                  const AAMDNodes &AAInfo) {
7724   SDValue Undef = getUNDEF(Ptr.getValueType());
7725   return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef, PtrInfo,
7726                  MemVT, Alignment, MMOFlags, AAInfo);
7727 }
7728 
7729 SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, const SDLoc &dl,
7730                                  EVT VT, SDValue Chain, SDValue Ptr, EVT MemVT,
7731                                  MachineMemOperand *MMO) {
7732   SDValue Undef = getUNDEF(Ptr.getValueType());
7733   return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef,
7734                  MemVT, MMO);
7735 }
7736 
7737 SDValue SelectionDAG::getIndexedLoad(SDValue OrigLoad, const SDLoc &dl,
7738                                      SDValue Base, SDValue Offset,
7739                                      ISD::MemIndexedMode AM) {
7740   LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
7741   assert(LD->getOffset().isUndef() && "Load is already a indexed load!");
7742   // Don't propagate the invariant or dereferenceable flags.
7743   auto MMOFlags =
7744       LD->getMemOperand()->getFlags() &
7745       ~(MachineMemOperand::MOInvariant | MachineMemOperand::MODereferenceable);
7746   return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(), dl,
7747                  LD->getChain(), Base, Offset, LD->getPointerInfo(),
7748                  LD->getMemoryVT(), LD->getAlign(), MMOFlags, LD->getAAInfo());
7749 }
7750 
7751 SDValue SelectionDAG::getStore(SDValue Chain, const SDLoc &dl, SDValue Val,
7752                                SDValue Ptr, MachinePointerInfo PtrInfo,
7753                                Align Alignment,
7754                                MachineMemOperand::Flags MMOFlags,
7755                                const AAMDNodes &AAInfo) {
7756   assert(Chain.getValueType() == MVT::Other && "Invalid chain type");
7757 
7758   MMOFlags |= MachineMemOperand::MOStore;
7759   assert((MMOFlags & MachineMemOperand::MOLoad) == 0);
7760 
7761   if (PtrInfo.V.isNull())
7762     PtrInfo = InferPointerInfo(PtrInfo, *this, Ptr);
7763 
7764   MachineFunction &MF = getMachineFunction();
7765   uint64_t Size =
7766       MemoryLocation::getSizeOrUnknown(Val.getValueType().getStoreSize());
7767   MachineMemOperand *MMO =
7768       MF.getMachineMemOperand(PtrInfo, MMOFlags, Size, Alignment, AAInfo);
7769   return getStore(Chain, dl, Val, Ptr, MMO);
7770 }
7771 
7772 SDValue SelectionDAG::getStore(SDValue Chain, const SDLoc &dl, SDValue Val,
7773                                SDValue Ptr, MachineMemOperand *MMO) {
7774   assert(Chain.getValueType() == MVT::Other &&
7775         "Invalid chain type");
7776   EVT VT = Val.getValueType();
7777   SDVTList VTs = getVTList(MVT::Other);
7778   SDValue Undef = getUNDEF(Ptr.getValueType());
7779   SDValue Ops[] = { Chain, Val, Ptr, Undef };
7780   FoldingSetNodeID ID;
7781   AddNodeIDNode(ID, ISD::STORE, VTs, Ops);
7782   ID.AddInteger(VT.getRawBits());
7783   ID.AddInteger(getSyntheticNodeSubclassData<StoreSDNode>(
7784       dl.getIROrder(), VTs, ISD::UNINDEXED, false, VT, MMO));
7785   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
7786   ID.AddInteger(MMO->getFlags());
7787   void *IP = nullptr;
7788   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
7789     cast<StoreSDNode>(E)->refineAlignment(MMO);
7790     return SDValue(E, 0);
7791   }
7792   auto *N = newSDNode<StoreSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs,
7793                                    ISD::UNINDEXED, false, VT, MMO);
7794   createOperands(N, Ops);
7795 
7796   CSEMap.InsertNode(N, IP);
7797   InsertNode(N);
7798   SDValue V(N, 0);
7799   NewSDValueDbgMsg(V, "Creating new node: ", this);
7800   return V;
7801 }
7802 
7803 SDValue SelectionDAG::getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val,
7804                                     SDValue Ptr, MachinePointerInfo PtrInfo,
7805                                     EVT SVT, Align Alignment,
7806                                     MachineMemOperand::Flags MMOFlags,
7807                                     const AAMDNodes &AAInfo) {
7808   assert(Chain.getValueType() == MVT::Other &&
7809         "Invalid chain type");
7810 
7811   MMOFlags |= MachineMemOperand::MOStore;
7812   assert((MMOFlags & MachineMemOperand::MOLoad) == 0);
7813 
7814   if (PtrInfo.V.isNull())
7815     PtrInfo = InferPointerInfo(PtrInfo, *this, Ptr);
7816 
7817   MachineFunction &MF = getMachineFunction();
7818   MachineMemOperand *MMO = MF.getMachineMemOperand(
7819       PtrInfo, MMOFlags, MemoryLocation::getSizeOrUnknown(SVT.getStoreSize()),
7820       Alignment, AAInfo);
7821   return getTruncStore(Chain, dl, Val, Ptr, SVT, MMO);
7822 }
7823 
7824 SDValue SelectionDAG::getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val,
7825                                     SDValue Ptr, EVT SVT,
7826                                     MachineMemOperand *MMO) {
7827   EVT VT = Val.getValueType();
7828 
7829   assert(Chain.getValueType() == MVT::Other &&
7830         "Invalid chain type");
7831   if (VT == SVT)
7832     return getStore(Chain, dl, Val, Ptr, MMO);
7833 
7834   assert(SVT.getScalarType().bitsLT(VT.getScalarType()) &&
7835          "Should only be a truncating store, not extending!");
7836   assert(VT.isInteger() == SVT.isInteger() &&
7837          "Can't do FP-INT conversion!");
7838   assert(VT.isVector() == SVT.isVector() &&
7839          "Cannot use trunc store to convert to or from a vector!");
7840   assert((!VT.isVector() ||
7841           VT.getVectorElementCount() == SVT.getVectorElementCount()) &&
7842          "Cannot use trunc store to change the number of vector elements!");
7843 
7844   SDVTList VTs = getVTList(MVT::Other);
7845   SDValue Undef = getUNDEF(Ptr.getValueType());
7846   SDValue Ops[] = { Chain, Val, Ptr, Undef };
7847   FoldingSetNodeID ID;
7848   AddNodeIDNode(ID, ISD::STORE, VTs, Ops);
7849   ID.AddInteger(SVT.getRawBits());
7850   ID.AddInteger(getSyntheticNodeSubclassData<StoreSDNode>(
7851       dl.getIROrder(), VTs, ISD::UNINDEXED, true, SVT, MMO));
7852   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
7853   ID.AddInteger(MMO->getFlags());
7854   void *IP = nullptr;
7855   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
7856     cast<StoreSDNode>(E)->refineAlignment(MMO);
7857     return SDValue(E, 0);
7858   }
7859   auto *N = newSDNode<StoreSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs,
7860                                    ISD::UNINDEXED, true, SVT, MMO);
7861   createOperands(N, Ops);
7862 
7863   CSEMap.InsertNode(N, IP);
7864   InsertNode(N);
7865   SDValue V(N, 0);
7866   NewSDValueDbgMsg(V, "Creating new node: ", this);
7867   return V;
7868 }
7869 
7870 SDValue SelectionDAG::getIndexedStore(SDValue OrigStore, const SDLoc &dl,
7871                                       SDValue Base, SDValue Offset,
7872                                       ISD::MemIndexedMode AM) {
7873   StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
7874   assert(ST->getOffset().isUndef() && "Store is already a indexed store!");
7875   SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
7876   SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
7877   FoldingSetNodeID ID;
7878   AddNodeIDNode(ID, ISD::STORE, VTs, Ops);
7879   ID.AddInteger(ST->getMemoryVT().getRawBits());
7880   ID.AddInteger(ST->getRawSubclassData());
7881   ID.AddInteger(ST->getPointerInfo().getAddrSpace());
7882   ID.AddInteger(ST->getMemOperand()->getFlags());
7883   void *IP = nullptr;
7884   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP))
7885     return SDValue(E, 0);
7886 
7887   auto *N = newSDNode<StoreSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs, AM,
7888                                    ST->isTruncatingStore(), ST->getMemoryVT(),
7889                                    ST->getMemOperand());
7890   createOperands(N, Ops);
7891 
7892   CSEMap.InsertNode(N, IP);
7893   InsertNode(N);
7894   SDValue V(N, 0);
7895   NewSDValueDbgMsg(V, "Creating new node: ", this);
7896   return V;
7897 }
7898 
7899 SDValue SelectionDAG::getLoadVP(
7900     ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, EVT VT, const SDLoc &dl,
7901     SDValue Chain, SDValue Ptr, SDValue Offset, SDValue Mask, SDValue EVL,
7902     MachinePointerInfo PtrInfo, EVT MemVT, Align Alignment,
7903     MachineMemOperand::Flags MMOFlags, const AAMDNodes &AAInfo,
7904     const MDNode *Ranges, bool IsExpanding) {
7905   assert(Chain.getValueType() == MVT::Other && "Invalid chain type");
7906 
7907   MMOFlags |= MachineMemOperand::MOLoad;
7908   assert((MMOFlags & MachineMemOperand::MOStore) == 0);
7909   // If we don't have a PtrInfo, infer the trivial frame index case to simplify
7910   // clients.
7911   if (PtrInfo.V.isNull())
7912     PtrInfo = InferPointerInfo(PtrInfo, *this, Ptr, Offset);
7913 
7914   uint64_t Size = MemoryLocation::getSizeOrUnknown(MemVT.getStoreSize());
7915   MachineFunction &MF = getMachineFunction();
7916   MachineMemOperand *MMO = MF.getMachineMemOperand(PtrInfo, MMOFlags, Size,
7917                                                    Alignment, AAInfo, Ranges);
7918   return getLoadVP(AM, ExtType, VT, dl, Chain, Ptr, Offset, Mask, EVL, MemVT,
7919                    MMO, IsExpanding);
7920 }
7921 
7922 SDValue SelectionDAG::getLoadVP(ISD::MemIndexedMode AM,
7923                                 ISD::LoadExtType ExtType, EVT VT,
7924                                 const SDLoc &dl, SDValue Chain, SDValue Ptr,
7925                                 SDValue Offset, SDValue Mask, SDValue EVL,
7926                                 EVT MemVT, MachineMemOperand *MMO,
7927                                 bool IsExpanding) {
7928   bool Indexed = AM != ISD::UNINDEXED;
7929   assert((Indexed || Offset.isUndef()) && "Unindexed load with an offset!");
7930 
7931   SDVTList VTs = Indexed ? getVTList(VT, Ptr.getValueType(), MVT::Other)
7932                          : getVTList(VT, MVT::Other);
7933   SDValue Ops[] = {Chain, Ptr, Offset, Mask, EVL};
7934   FoldingSetNodeID ID;
7935   AddNodeIDNode(ID, ISD::VP_LOAD, VTs, Ops);
7936   ID.AddInteger(VT.getRawBits());
7937   ID.AddInteger(getSyntheticNodeSubclassData<VPLoadSDNode>(
7938       dl.getIROrder(), VTs, AM, ExtType, IsExpanding, MemVT, MMO));
7939   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
7940   ID.AddInteger(MMO->getFlags());
7941   void *IP = nullptr;
7942   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
7943     cast<VPLoadSDNode>(E)->refineAlignment(MMO);
7944     return SDValue(E, 0);
7945   }
7946   auto *N = newSDNode<VPLoadSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs, AM,
7947                                     ExtType, IsExpanding, MemVT, MMO);
7948   createOperands(N, Ops);
7949 
7950   CSEMap.InsertNode(N, IP);
7951   InsertNode(N);
7952   SDValue V(N, 0);
7953   NewSDValueDbgMsg(V, "Creating new node: ", this);
7954   return V;
7955 }
7956 
7957 SDValue SelectionDAG::getLoadVP(EVT VT, const SDLoc &dl, SDValue Chain,
7958                                 SDValue Ptr, SDValue Mask, SDValue EVL,
7959                                 MachinePointerInfo PtrInfo,
7960                                 MaybeAlign Alignment,
7961                                 MachineMemOperand::Flags MMOFlags,
7962                                 const AAMDNodes &AAInfo, const MDNode *Ranges,
7963                                 bool IsExpanding) {
7964   SDValue Undef = getUNDEF(Ptr.getValueType());
7965   return getLoadVP(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef,
7966                    Mask, EVL, PtrInfo, VT, Alignment, MMOFlags, AAInfo, Ranges,
7967                    IsExpanding);
7968 }
7969 
7970 SDValue SelectionDAG::getLoadVP(EVT VT, const SDLoc &dl, SDValue Chain,
7971                                 SDValue Ptr, SDValue Mask, SDValue EVL,
7972                                 MachineMemOperand *MMO, bool IsExpanding) {
7973   SDValue Undef = getUNDEF(Ptr.getValueType());
7974   return getLoadVP(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef,
7975                    Mask, EVL, VT, MMO, IsExpanding);
7976 }
7977 
7978 SDValue SelectionDAG::getExtLoadVP(ISD::LoadExtType ExtType, const SDLoc &dl,
7979                                    EVT VT, SDValue Chain, SDValue Ptr,
7980                                    SDValue Mask, SDValue EVL,
7981                                    MachinePointerInfo PtrInfo, EVT MemVT,
7982                                    MaybeAlign Alignment,
7983                                    MachineMemOperand::Flags MMOFlags,
7984                                    const AAMDNodes &AAInfo, bool IsExpanding) {
7985   SDValue Undef = getUNDEF(Ptr.getValueType());
7986   return getLoadVP(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef, Mask,
7987                    EVL, PtrInfo, MemVT, Alignment, MMOFlags, AAInfo, nullptr,
7988                    IsExpanding);
7989 }
7990 
7991 SDValue SelectionDAG::getExtLoadVP(ISD::LoadExtType ExtType, const SDLoc &dl,
7992                                    EVT VT, SDValue Chain, SDValue Ptr,
7993                                    SDValue Mask, SDValue EVL, EVT MemVT,
7994                                    MachineMemOperand *MMO, bool IsExpanding) {
7995   SDValue Undef = getUNDEF(Ptr.getValueType());
7996   return getLoadVP(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef, Mask,
7997                    EVL, MemVT, MMO, IsExpanding);
7998 }
7999 
8000 SDValue SelectionDAG::getIndexedLoadVP(SDValue OrigLoad, const SDLoc &dl,
8001                                        SDValue Base, SDValue Offset,
8002                                        ISD::MemIndexedMode AM) {
8003   auto *LD = cast<VPLoadSDNode>(OrigLoad);
8004   assert(LD->getOffset().isUndef() && "Load is already a indexed load!");
8005   // Don't propagate the invariant or dereferenceable flags.
8006   auto MMOFlags =
8007       LD->getMemOperand()->getFlags() &
8008       ~(MachineMemOperand::MOInvariant | MachineMemOperand::MODereferenceable);
8009   return getLoadVP(AM, LD->getExtensionType(), OrigLoad.getValueType(), dl,
8010                    LD->getChain(), Base, Offset, LD->getMask(),
8011                    LD->getVectorLength(), LD->getPointerInfo(),
8012                    LD->getMemoryVT(), LD->getAlign(), MMOFlags, LD->getAAInfo(),
8013                    nullptr, LD->isExpandingLoad());
8014 }
8015 
8016 SDValue SelectionDAG::getStoreVP(SDValue Chain, const SDLoc &dl, SDValue Val,
8017                                  SDValue Ptr, SDValue Offset, SDValue Mask,
8018                                  SDValue EVL, EVT MemVT, MachineMemOperand *MMO,
8019                                  ISD::MemIndexedMode AM, bool IsTruncating,
8020                                  bool IsCompressing) {
8021   assert(Chain.getValueType() == MVT::Other && "Invalid chain type");
8022   bool Indexed = AM != ISD::UNINDEXED;
8023   assert((Indexed || Offset.isUndef()) && "Unindexed vp_store with an offset!");
8024   SDVTList VTs = Indexed ? getVTList(Ptr.getValueType(), MVT::Other)
8025                          : getVTList(MVT::Other);
8026   SDValue Ops[] = {Chain, Val, Ptr, Offset, Mask, EVL};
8027   FoldingSetNodeID ID;
8028   AddNodeIDNode(ID, ISD::VP_STORE, VTs, Ops);
8029   ID.AddInteger(MemVT.getRawBits());
8030   ID.AddInteger(getSyntheticNodeSubclassData<VPStoreSDNode>(
8031       dl.getIROrder(), VTs, AM, IsTruncating, IsCompressing, MemVT, MMO));
8032   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
8033   ID.AddInteger(MMO->getFlags());
8034   void *IP = nullptr;
8035   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
8036     cast<VPStoreSDNode>(E)->refineAlignment(MMO);
8037     return SDValue(E, 0);
8038   }
8039   auto *N = newSDNode<VPStoreSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs, AM,
8040                                      IsTruncating, IsCompressing, MemVT, MMO);
8041   createOperands(N, Ops);
8042 
8043   CSEMap.InsertNode(N, IP);
8044   InsertNode(N);
8045   SDValue V(N, 0);
8046   NewSDValueDbgMsg(V, "Creating new node: ", this);
8047   return V;
8048 }
8049 
8050 SDValue SelectionDAG::getTruncStoreVP(SDValue Chain, const SDLoc &dl,
8051                                       SDValue Val, SDValue Ptr, SDValue Mask,
8052                                       SDValue EVL, MachinePointerInfo PtrInfo,
8053                                       EVT SVT, Align Alignment,
8054                                       MachineMemOperand::Flags MMOFlags,
8055                                       const AAMDNodes &AAInfo,
8056                                       bool IsCompressing) {
8057   assert(Chain.getValueType() == MVT::Other && "Invalid chain type");
8058 
8059   MMOFlags |= MachineMemOperand::MOStore;
8060   assert((MMOFlags & MachineMemOperand::MOLoad) == 0);
8061 
8062   if (PtrInfo.V.isNull())
8063     PtrInfo = InferPointerInfo(PtrInfo, *this, Ptr);
8064 
8065   MachineFunction &MF = getMachineFunction();
8066   MachineMemOperand *MMO = MF.getMachineMemOperand(
8067       PtrInfo, MMOFlags, MemoryLocation::getSizeOrUnknown(SVT.getStoreSize()),
8068       Alignment, AAInfo);
8069   return getTruncStoreVP(Chain, dl, Val, Ptr, Mask, EVL, SVT, MMO,
8070                          IsCompressing);
8071 }
8072 
8073 SDValue SelectionDAG::getTruncStoreVP(SDValue Chain, const SDLoc &dl,
8074                                       SDValue Val, SDValue Ptr, SDValue Mask,
8075                                       SDValue EVL, EVT SVT,
8076                                       MachineMemOperand *MMO,
8077                                       bool IsCompressing) {
8078   EVT VT = Val.getValueType();
8079 
8080   assert(Chain.getValueType() == MVT::Other && "Invalid chain type");
8081   if (VT == SVT)
8082     return getStoreVP(Chain, dl, Val, Ptr, getUNDEF(Ptr.getValueType()), Mask,
8083                       EVL, VT, MMO, ISD::UNINDEXED,
8084                       /*IsTruncating*/ false, IsCompressing);
8085 
8086   assert(SVT.getScalarType().bitsLT(VT.getScalarType()) &&
8087          "Should only be a truncating store, not extending!");
8088   assert(VT.isInteger() == SVT.isInteger() && "Can't do FP-INT conversion!");
8089   assert(VT.isVector() == SVT.isVector() &&
8090          "Cannot use trunc store to convert to or from a vector!");
8091   assert((!VT.isVector() ||
8092           VT.getVectorElementCount() == SVT.getVectorElementCount()) &&
8093          "Cannot use trunc store to change the number of vector elements!");
8094 
8095   SDVTList VTs = getVTList(MVT::Other);
8096   SDValue Undef = getUNDEF(Ptr.getValueType());
8097   SDValue Ops[] = {Chain, Val, Ptr, Undef, Mask, EVL};
8098   FoldingSetNodeID ID;
8099   AddNodeIDNode(ID, ISD::VP_STORE, VTs, Ops);
8100   ID.AddInteger(SVT.getRawBits());
8101   ID.AddInteger(getSyntheticNodeSubclassData<VPStoreSDNode>(
8102       dl.getIROrder(), VTs, ISD::UNINDEXED, true, IsCompressing, SVT, MMO));
8103   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
8104   ID.AddInteger(MMO->getFlags());
8105   void *IP = nullptr;
8106   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
8107     cast<VPStoreSDNode>(E)->refineAlignment(MMO);
8108     return SDValue(E, 0);
8109   }
8110   auto *N =
8111       newSDNode<VPStoreSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs,
8112                                ISD::UNINDEXED, true, IsCompressing, SVT, MMO);
8113   createOperands(N, Ops);
8114 
8115   CSEMap.InsertNode(N, IP);
8116   InsertNode(N);
8117   SDValue V(N, 0);
8118   NewSDValueDbgMsg(V, "Creating new node: ", this);
8119   return V;
8120 }
8121 
8122 SDValue SelectionDAG::getIndexedStoreVP(SDValue OrigStore, const SDLoc &dl,
8123                                         SDValue Base, SDValue Offset,
8124                                         ISD::MemIndexedMode AM) {
8125   auto *ST = cast<VPStoreSDNode>(OrigStore);
8126   assert(ST->getOffset().isUndef() && "Store is already an indexed store!");
8127   SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
8128   SDValue Ops[] = {ST->getChain(), ST->getValue(), Base,
8129                    Offset,         ST->getMask(),  ST->getVectorLength()};
8130   FoldingSetNodeID ID;
8131   AddNodeIDNode(ID, ISD::VP_STORE, VTs, Ops);
8132   ID.AddInteger(ST->getMemoryVT().getRawBits());
8133   ID.AddInteger(ST->getRawSubclassData());
8134   ID.AddInteger(ST->getPointerInfo().getAddrSpace());
8135   ID.AddInteger(ST->getMemOperand()->getFlags());
8136   void *IP = nullptr;
8137   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP))
8138     return SDValue(E, 0);
8139 
8140   auto *N = newSDNode<VPStoreSDNode>(
8141       dl.getIROrder(), dl.getDebugLoc(), VTs, AM, ST->isTruncatingStore(),
8142       ST->isCompressingStore(), ST->getMemoryVT(), ST->getMemOperand());
8143   createOperands(N, Ops);
8144 
8145   CSEMap.InsertNode(N, IP);
8146   InsertNode(N);
8147   SDValue V(N, 0);
8148   NewSDValueDbgMsg(V, "Creating new node: ", this);
8149   return V;
8150 }
8151 
8152 SDValue SelectionDAG::getStridedLoadVP(
8153     ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, EVT VT, const SDLoc &DL,
8154     SDValue Chain, SDValue Ptr, SDValue Offset, SDValue Stride, SDValue Mask,
8155     SDValue EVL, MachinePointerInfo PtrInfo, EVT MemVT, Align Alignment,
8156     MachineMemOperand::Flags MMOFlags, const AAMDNodes &AAInfo,
8157     const MDNode *Ranges, bool IsExpanding) {
8158   assert(Chain.getValueType() == MVT::Other && "Invalid chain type");
8159 
8160   MMOFlags |= MachineMemOperand::MOLoad;
8161   assert((MMOFlags & MachineMemOperand::MOStore) == 0);
8162   // If we don't have a PtrInfo, infer the trivial frame index case to simplify
8163   // clients.
8164   if (PtrInfo.V.isNull())
8165     PtrInfo = InferPointerInfo(PtrInfo, *this, Ptr, Offset);
8166 
8167   uint64_t Size = MemoryLocation::UnknownSize;
8168   MachineFunction &MF = getMachineFunction();
8169   MachineMemOperand *MMO = MF.getMachineMemOperand(PtrInfo, MMOFlags, Size,
8170                                                    Alignment, AAInfo, Ranges);
8171   return getStridedLoadVP(AM, ExtType, VT, DL, Chain, Ptr, Offset, Stride, Mask,
8172                           EVL, MemVT, MMO, IsExpanding);
8173 }
8174 
8175 SDValue SelectionDAG::getStridedLoadVP(
8176     ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, EVT VT, const SDLoc &DL,
8177     SDValue Chain, SDValue Ptr, SDValue Offset, SDValue Stride, SDValue Mask,
8178     SDValue EVL, EVT MemVT, MachineMemOperand *MMO, bool IsExpanding) {
8179   bool Indexed = AM != ISD::UNINDEXED;
8180   assert((Indexed || Offset.isUndef()) && "Unindexed load with an offset!");
8181 
8182   SDValue Ops[] = {Chain, Ptr, Offset, Stride, Mask, EVL};
8183   SDVTList VTs = Indexed ? getVTList(VT, Ptr.getValueType(), MVT::Other)
8184                          : getVTList(VT, MVT::Other);
8185   FoldingSetNodeID ID;
8186   AddNodeIDNode(ID, ISD::EXPERIMENTAL_VP_STRIDED_LOAD, VTs, Ops);
8187   ID.AddInteger(VT.getRawBits());
8188   ID.AddInteger(getSyntheticNodeSubclassData<VPStridedLoadSDNode>(
8189       DL.getIROrder(), VTs, AM, ExtType, IsExpanding, MemVT, MMO));
8190   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
8191 
8192   void *IP = nullptr;
8193   if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) {
8194     cast<VPStridedLoadSDNode>(E)->refineAlignment(MMO);
8195     return SDValue(E, 0);
8196   }
8197 
8198   auto *N =
8199       newSDNode<VPStridedLoadSDNode>(DL.getIROrder(), DL.getDebugLoc(), VTs, AM,
8200                                      ExtType, IsExpanding, MemVT, MMO);
8201   createOperands(N, Ops);
8202   CSEMap.InsertNode(N, IP);
8203   InsertNode(N);
8204   SDValue V(N, 0);
8205   NewSDValueDbgMsg(V, "Creating new node: ", this);
8206   return V;
8207 }
8208 
8209 SDValue SelectionDAG::getStridedLoadVP(
8210     EVT VT, const SDLoc &DL, SDValue Chain, SDValue Ptr, SDValue Stride,
8211     SDValue Mask, SDValue EVL, MachinePointerInfo PtrInfo, MaybeAlign Alignment,
8212     MachineMemOperand::Flags MMOFlags, const AAMDNodes &AAInfo,
8213     const MDNode *Ranges, bool IsExpanding) {
8214   SDValue Undef = getUNDEF(Ptr.getValueType());
8215   return getStridedLoadVP(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, DL, Chain, Ptr,
8216                           Undef, Stride, Mask, EVL, PtrInfo, VT, Alignment,
8217                           MMOFlags, AAInfo, Ranges, IsExpanding);
8218 }
8219 
8220 SDValue SelectionDAG::getStridedLoadVP(EVT VT, const SDLoc &DL, SDValue Chain,
8221                                        SDValue Ptr, SDValue Stride,
8222                                        SDValue Mask, SDValue EVL,
8223                                        MachineMemOperand *MMO,
8224                                        bool IsExpanding) {
8225   SDValue Undef = getUNDEF(Ptr.getValueType());
8226   return getStridedLoadVP(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, DL, Chain, Ptr,
8227                           Undef, Stride, Mask, EVL, VT, MMO, IsExpanding);
8228 }
8229 
8230 SDValue SelectionDAG::getExtStridedLoadVP(
8231     ISD::LoadExtType ExtType, const SDLoc &DL, EVT VT, SDValue Chain,
8232     SDValue Ptr, SDValue Stride, SDValue Mask, SDValue EVL,
8233     MachinePointerInfo PtrInfo, EVT MemVT, MaybeAlign Alignment,
8234     MachineMemOperand::Flags MMOFlags, const AAMDNodes &AAInfo,
8235     bool IsExpanding) {
8236   SDValue Undef = getUNDEF(Ptr.getValueType());
8237   return getStridedLoadVP(ISD::UNINDEXED, ExtType, VT, DL, Chain, Ptr, Undef,
8238                           Stride, Mask, EVL, PtrInfo, MemVT, Alignment,
8239                           MMOFlags, AAInfo, nullptr, IsExpanding);
8240 }
8241 
8242 SDValue SelectionDAG::getExtStridedLoadVP(
8243     ISD::LoadExtType ExtType, const SDLoc &DL, EVT VT, SDValue Chain,
8244     SDValue Ptr, SDValue Stride, SDValue Mask, SDValue EVL, EVT MemVT,
8245     MachineMemOperand *MMO, bool IsExpanding) {
8246   SDValue Undef = getUNDEF(Ptr.getValueType());
8247   return getStridedLoadVP(ISD::UNINDEXED, ExtType, VT, DL, Chain, Ptr, Undef,
8248                           Stride, Mask, EVL, MemVT, MMO, IsExpanding);
8249 }
8250 
8251 SDValue SelectionDAG::getIndexedStridedLoadVP(SDValue OrigLoad, const SDLoc &DL,
8252                                               SDValue Base, SDValue Offset,
8253                                               ISD::MemIndexedMode AM) {
8254   auto *SLD = cast<VPStridedLoadSDNode>(OrigLoad);
8255   assert(SLD->getOffset().isUndef() &&
8256          "Strided load is already a indexed load!");
8257   // Don't propagate the invariant or dereferenceable flags.
8258   auto MMOFlags =
8259       SLD->getMemOperand()->getFlags() &
8260       ~(MachineMemOperand::MOInvariant | MachineMemOperand::MODereferenceable);
8261   return getStridedLoadVP(
8262       AM, SLD->getExtensionType(), OrigLoad.getValueType(), DL, SLD->getChain(),
8263       Base, Offset, SLD->getStride(), SLD->getMask(), SLD->getVectorLength(),
8264       SLD->getPointerInfo(), SLD->getMemoryVT(), SLD->getAlign(), MMOFlags,
8265       SLD->getAAInfo(), nullptr, SLD->isExpandingLoad());
8266 }
8267 
8268 SDValue SelectionDAG::getStridedStoreVP(SDValue Chain, const SDLoc &DL,
8269                                         SDValue Val, SDValue Ptr,
8270                                         SDValue Offset, SDValue Stride,
8271                                         SDValue Mask, SDValue EVL, EVT MemVT,
8272                                         MachineMemOperand *MMO,
8273                                         ISD::MemIndexedMode AM,
8274                                         bool IsTruncating, bool IsCompressing) {
8275   assert(Chain.getValueType() == MVT::Other && "Invalid chain type");
8276   bool Indexed = AM != ISD::UNINDEXED;
8277   assert((Indexed || Offset.isUndef()) && "Unindexed vp_store with an offset!");
8278   SDVTList VTs = Indexed ? getVTList(Ptr.getValueType(), MVT::Other)
8279                          : getVTList(MVT::Other);
8280   SDValue Ops[] = {Chain, Val, Ptr, Offset, Stride, Mask, EVL};
8281   FoldingSetNodeID ID;
8282   AddNodeIDNode(ID, ISD::EXPERIMENTAL_VP_STRIDED_STORE, VTs, Ops);
8283   ID.AddInteger(MemVT.getRawBits());
8284   ID.AddInteger(getSyntheticNodeSubclassData<VPStridedStoreSDNode>(
8285       DL.getIROrder(), VTs, AM, IsTruncating, IsCompressing, MemVT, MMO));
8286   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
8287   void *IP = nullptr;
8288   if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) {
8289     cast<VPStridedStoreSDNode>(E)->refineAlignment(MMO);
8290     return SDValue(E, 0);
8291   }
8292   auto *N = newSDNode<VPStridedStoreSDNode>(DL.getIROrder(), DL.getDebugLoc(),
8293                                             VTs, AM, IsTruncating,
8294                                             IsCompressing, MemVT, MMO);
8295   createOperands(N, Ops);
8296 
8297   CSEMap.InsertNode(N, IP);
8298   InsertNode(N);
8299   SDValue V(N, 0);
8300   NewSDValueDbgMsg(V, "Creating new node: ", this);
8301   return V;
8302 }
8303 
8304 SDValue SelectionDAG::getTruncStridedStoreVP(
8305     SDValue Chain, const SDLoc &DL, SDValue Val, SDValue Ptr, SDValue Stride,
8306     SDValue Mask, SDValue EVL, MachinePointerInfo PtrInfo, EVT SVT,
8307     Align Alignment, MachineMemOperand::Flags MMOFlags, const AAMDNodes &AAInfo,
8308     bool IsCompressing) {
8309   assert(Chain.getValueType() == MVT::Other && "Invalid chain type");
8310 
8311   MMOFlags |= MachineMemOperand::MOStore;
8312   assert((MMOFlags & MachineMemOperand::MOLoad) == 0);
8313 
8314   if (PtrInfo.V.isNull())
8315     PtrInfo = InferPointerInfo(PtrInfo, *this, Ptr);
8316 
8317   MachineFunction &MF = getMachineFunction();
8318   MachineMemOperand *MMO = MF.getMachineMemOperand(
8319       PtrInfo, MMOFlags, MemoryLocation::UnknownSize, Alignment, AAInfo);
8320   return getTruncStridedStoreVP(Chain, DL, Val, Ptr, Stride, Mask, EVL, SVT,
8321                                 MMO, IsCompressing);
8322 }
8323 
8324 SDValue SelectionDAG::getTruncStridedStoreVP(SDValue Chain, const SDLoc &DL,
8325                                              SDValue Val, SDValue Ptr,
8326                                              SDValue Stride, SDValue Mask,
8327                                              SDValue EVL, EVT SVT,
8328                                              MachineMemOperand *MMO,
8329                                              bool IsCompressing) {
8330   EVT VT = Val.getValueType();
8331 
8332   assert(Chain.getValueType() == MVT::Other && "Invalid chain type");
8333   if (VT == SVT)
8334     return getStridedStoreVP(Chain, DL, Val, Ptr, getUNDEF(Ptr.getValueType()),
8335                              Stride, Mask, EVL, VT, MMO, ISD::UNINDEXED,
8336                              /*IsTruncating*/ false, IsCompressing);
8337 
8338   assert(SVT.getScalarType().bitsLT(VT.getScalarType()) &&
8339          "Should only be a truncating store, not extending!");
8340   assert(VT.isInteger() == SVT.isInteger() && "Can't do FP-INT conversion!");
8341   assert(VT.isVector() == SVT.isVector() &&
8342          "Cannot use trunc store to convert to or from a vector!");
8343   assert((!VT.isVector() ||
8344           VT.getVectorElementCount() == SVT.getVectorElementCount()) &&
8345          "Cannot use trunc store to change the number of vector elements!");
8346 
8347   SDVTList VTs = getVTList(MVT::Other);
8348   SDValue Undef = getUNDEF(Ptr.getValueType());
8349   SDValue Ops[] = {Chain, Val, Ptr, Undef, Stride, Mask, EVL};
8350   FoldingSetNodeID ID;
8351   AddNodeIDNode(ID, ISD::EXPERIMENTAL_VP_STRIDED_STORE, VTs, Ops);
8352   ID.AddInteger(SVT.getRawBits());
8353   ID.AddInteger(getSyntheticNodeSubclassData<VPStridedStoreSDNode>(
8354       DL.getIROrder(), VTs, ISD::UNINDEXED, true, IsCompressing, SVT, MMO));
8355   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
8356   void *IP = nullptr;
8357   if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) {
8358     cast<VPStridedStoreSDNode>(E)->refineAlignment(MMO);
8359     return SDValue(E, 0);
8360   }
8361   auto *N = newSDNode<VPStridedStoreSDNode>(DL.getIROrder(), DL.getDebugLoc(),
8362                                             VTs, ISD::UNINDEXED, true,
8363                                             IsCompressing, SVT, MMO);
8364   createOperands(N, Ops);
8365 
8366   CSEMap.InsertNode(N, IP);
8367   InsertNode(N);
8368   SDValue V(N, 0);
8369   NewSDValueDbgMsg(V, "Creating new node: ", this);
8370   return V;
8371 }
8372 
8373 SDValue SelectionDAG::getIndexedStridedStoreVP(SDValue OrigStore,
8374                                                const SDLoc &DL, SDValue Base,
8375                                                SDValue Offset,
8376                                                ISD::MemIndexedMode AM) {
8377   auto *SST = cast<VPStridedStoreSDNode>(OrigStore);
8378   assert(SST->getOffset().isUndef() &&
8379          "Strided store is already an indexed store!");
8380   SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
8381   SDValue Ops[] = {
8382       SST->getChain(), SST->getValue(),       Base, Offset, SST->getStride(),
8383       SST->getMask(),  SST->getVectorLength()};
8384   FoldingSetNodeID ID;
8385   AddNodeIDNode(ID, ISD::EXPERIMENTAL_VP_STRIDED_STORE, VTs, Ops);
8386   ID.AddInteger(SST->getMemoryVT().getRawBits());
8387   ID.AddInteger(SST->getRawSubclassData());
8388   ID.AddInteger(SST->getPointerInfo().getAddrSpace());
8389   void *IP = nullptr;
8390   if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP))
8391     return SDValue(E, 0);
8392 
8393   auto *N = newSDNode<VPStridedStoreSDNode>(
8394       DL.getIROrder(), DL.getDebugLoc(), VTs, AM, SST->isTruncatingStore(),
8395       SST->isCompressingStore(), SST->getMemoryVT(), SST->getMemOperand());
8396   createOperands(N, Ops);
8397 
8398   CSEMap.InsertNode(N, IP);
8399   InsertNode(N);
8400   SDValue V(N, 0);
8401   NewSDValueDbgMsg(V, "Creating new node: ", this);
8402   return V;
8403 }
8404 
8405 SDValue SelectionDAG::getGatherVP(SDVTList VTs, EVT VT, const SDLoc &dl,
8406                                   ArrayRef<SDValue> Ops, MachineMemOperand *MMO,
8407                                   ISD::MemIndexType IndexType) {
8408   assert(Ops.size() == 6 && "Incompatible number of operands");
8409 
8410   FoldingSetNodeID ID;
8411   AddNodeIDNode(ID, ISD::VP_GATHER, VTs, Ops);
8412   ID.AddInteger(VT.getRawBits());
8413   ID.AddInteger(getSyntheticNodeSubclassData<VPGatherSDNode>(
8414       dl.getIROrder(), VTs, VT, MMO, IndexType));
8415   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
8416   ID.AddInteger(MMO->getFlags());
8417   void *IP = nullptr;
8418   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
8419     cast<VPGatherSDNode>(E)->refineAlignment(MMO);
8420     return SDValue(E, 0);
8421   }
8422 
8423   auto *N = newSDNode<VPGatherSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs,
8424                                       VT, MMO, IndexType);
8425   createOperands(N, Ops);
8426 
8427   assert(N->getMask().getValueType().getVectorElementCount() ==
8428              N->getValueType(0).getVectorElementCount() &&
8429          "Vector width mismatch between mask and data");
8430   assert(N->getIndex().getValueType().getVectorElementCount().isScalable() ==
8431              N->getValueType(0).getVectorElementCount().isScalable() &&
8432          "Scalable flags of index and data do not match");
8433   assert(ElementCount::isKnownGE(
8434              N->getIndex().getValueType().getVectorElementCount(),
8435              N->getValueType(0).getVectorElementCount()) &&
8436          "Vector width mismatch between index and data");
8437   assert(isa<ConstantSDNode>(N->getScale()) &&
8438          cast<ConstantSDNode>(N->getScale())->getAPIntValue().isPowerOf2() &&
8439          "Scale should be a constant power of 2");
8440 
8441   CSEMap.InsertNode(N, IP);
8442   InsertNode(N);
8443   SDValue V(N, 0);
8444   NewSDValueDbgMsg(V, "Creating new node: ", this);
8445   return V;
8446 }
8447 
8448 SDValue SelectionDAG::getScatterVP(SDVTList VTs, EVT VT, const SDLoc &dl,
8449                                    ArrayRef<SDValue> Ops,
8450                                    MachineMemOperand *MMO,
8451                                    ISD::MemIndexType IndexType) {
8452   assert(Ops.size() == 7 && "Incompatible number of operands");
8453 
8454   FoldingSetNodeID ID;
8455   AddNodeIDNode(ID, ISD::VP_SCATTER, VTs, Ops);
8456   ID.AddInteger(VT.getRawBits());
8457   ID.AddInteger(getSyntheticNodeSubclassData<VPScatterSDNode>(
8458       dl.getIROrder(), VTs, VT, MMO, IndexType));
8459   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
8460   ID.AddInteger(MMO->getFlags());
8461   void *IP = nullptr;
8462   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
8463     cast<VPScatterSDNode>(E)->refineAlignment(MMO);
8464     return SDValue(E, 0);
8465   }
8466   auto *N = newSDNode<VPScatterSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs,
8467                                        VT, MMO, IndexType);
8468   createOperands(N, Ops);
8469 
8470   assert(N->getMask().getValueType().getVectorElementCount() ==
8471              N->getValue().getValueType().getVectorElementCount() &&
8472          "Vector width mismatch between mask and data");
8473   assert(
8474       N->getIndex().getValueType().getVectorElementCount().isScalable() ==
8475           N->getValue().getValueType().getVectorElementCount().isScalable() &&
8476       "Scalable flags of index and data do not match");
8477   assert(ElementCount::isKnownGE(
8478              N->getIndex().getValueType().getVectorElementCount(),
8479              N->getValue().getValueType().getVectorElementCount()) &&
8480          "Vector width mismatch between index and data");
8481   assert(isa<ConstantSDNode>(N->getScale()) &&
8482          cast<ConstantSDNode>(N->getScale())->getAPIntValue().isPowerOf2() &&
8483          "Scale should be a constant power of 2");
8484 
8485   CSEMap.InsertNode(N, IP);
8486   InsertNode(N);
8487   SDValue V(N, 0);
8488   NewSDValueDbgMsg(V, "Creating new node: ", this);
8489   return V;
8490 }
8491 
8492 SDValue SelectionDAG::getMaskedLoad(EVT VT, const SDLoc &dl, SDValue Chain,
8493                                     SDValue Base, SDValue Offset, SDValue Mask,
8494                                     SDValue PassThru, EVT MemVT,
8495                                     MachineMemOperand *MMO,
8496                                     ISD::MemIndexedMode AM,
8497                                     ISD::LoadExtType ExtTy, bool isExpanding) {
8498   bool Indexed = AM != ISD::UNINDEXED;
8499   assert((Indexed || Offset.isUndef()) &&
8500          "Unindexed masked load with an offset!");
8501   SDVTList VTs = Indexed ? getVTList(VT, Base.getValueType(), MVT::Other)
8502                          : getVTList(VT, MVT::Other);
8503   SDValue Ops[] = {Chain, Base, Offset, Mask, PassThru};
8504   FoldingSetNodeID ID;
8505   AddNodeIDNode(ID, ISD::MLOAD, VTs, Ops);
8506   ID.AddInteger(MemVT.getRawBits());
8507   ID.AddInteger(getSyntheticNodeSubclassData<MaskedLoadSDNode>(
8508       dl.getIROrder(), VTs, AM, ExtTy, isExpanding, MemVT, MMO));
8509   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
8510   ID.AddInteger(MMO->getFlags());
8511   void *IP = nullptr;
8512   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
8513     cast<MaskedLoadSDNode>(E)->refineAlignment(MMO);
8514     return SDValue(E, 0);
8515   }
8516   auto *N = newSDNode<MaskedLoadSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs,
8517                                         AM, ExtTy, isExpanding, MemVT, MMO);
8518   createOperands(N, Ops);
8519 
8520   CSEMap.InsertNode(N, IP);
8521   InsertNode(N);
8522   SDValue V(N, 0);
8523   NewSDValueDbgMsg(V, "Creating new node: ", this);
8524   return V;
8525 }
8526 
8527 SDValue SelectionDAG::getIndexedMaskedLoad(SDValue OrigLoad, const SDLoc &dl,
8528                                            SDValue Base, SDValue Offset,
8529                                            ISD::MemIndexedMode AM) {
8530   MaskedLoadSDNode *LD = cast<MaskedLoadSDNode>(OrigLoad);
8531   assert(LD->getOffset().isUndef() && "Masked load is already a indexed load!");
8532   return getMaskedLoad(OrigLoad.getValueType(), dl, LD->getChain(), Base,
8533                        Offset, LD->getMask(), LD->getPassThru(),
8534                        LD->getMemoryVT(), LD->getMemOperand(), AM,
8535                        LD->getExtensionType(), LD->isExpandingLoad());
8536 }
8537 
8538 SDValue SelectionDAG::getMaskedStore(SDValue Chain, const SDLoc &dl,
8539                                      SDValue Val, SDValue Base, SDValue Offset,
8540                                      SDValue Mask, EVT MemVT,
8541                                      MachineMemOperand *MMO,
8542                                      ISD::MemIndexedMode AM, bool IsTruncating,
8543                                      bool IsCompressing) {
8544   assert(Chain.getValueType() == MVT::Other &&
8545         "Invalid chain type");
8546   bool Indexed = AM != ISD::UNINDEXED;
8547   assert((Indexed || Offset.isUndef()) &&
8548          "Unindexed masked store with an offset!");
8549   SDVTList VTs = Indexed ? getVTList(Base.getValueType(), MVT::Other)
8550                          : getVTList(MVT::Other);
8551   SDValue Ops[] = {Chain, Val, Base, Offset, Mask};
8552   FoldingSetNodeID ID;
8553   AddNodeIDNode(ID, ISD::MSTORE, VTs, Ops);
8554   ID.AddInteger(MemVT.getRawBits());
8555   ID.AddInteger(getSyntheticNodeSubclassData<MaskedStoreSDNode>(
8556       dl.getIROrder(), VTs, AM, IsTruncating, IsCompressing, MemVT, MMO));
8557   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
8558   ID.AddInteger(MMO->getFlags());
8559   void *IP = nullptr;
8560   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
8561     cast<MaskedStoreSDNode>(E)->refineAlignment(MMO);
8562     return SDValue(E, 0);
8563   }
8564   auto *N =
8565       newSDNode<MaskedStoreSDNode>(dl.getIROrder(), dl.getDebugLoc(), VTs, AM,
8566                                    IsTruncating, IsCompressing, MemVT, MMO);
8567   createOperands(N, Ops);
8568 
8569   CSEMap.InsertNode(N, IP);
8570   InsertNode(N);
8571   SDValue V(N, 0);
8572   NewSDValueDbgMsg(V, "Creating new node: ", this);
8573   return V;
8574 }
8575 
8576 SDValue SelectionDAG::getIndexedMaskedStore(SDValue OrigStore, const SDLoc &dl,
8577                                             SDValue Base, SDValue Offset,
8578                                             ISD::MemIndexedMode AM) {
8579   MaskedStoreSDNode *ST = cast<MaskedStoreSDNode>(OrigStore);
8580   assert(ST->getOffset().isUndef() &&
8581          "Masked store is already a indexed store!");
8582   return getMaskedStore(ST->getChain(), dl, ST->getValue(), Base, Offset,
8583                         ST->getMask(), ST->getMemoryVT(), ST->getMemOperand(),
8584                         AM, ST->isTruncatingStore(), ST->isCompressingStore());
8585 }
8586 
8587 SDValue SelectionDAG::getMaskedGather(SDVTList VTs, EVT MemVT, const SDLoc &dl,
8588                                       ArrayRef<SDValue> Ops,
8589                                       MachineMemOperand *MMO,
8590                                       ISD::MemIndexType IndexType,
8591                                       ISD::LoadExtType ExtTy) {
8592   assert(Ops.size() == 6 && "Incompatible number of operands");
8593 
8594   FoldingSetNodeID ID;
8595   AddNodeIDNode(ID, ISD::MGATHER, VTs, Ops);
8596   ID.AddInteger(MemVT.getRawBits());
8597   ID.AddInteger(getSyntheticNodeSubclassData<MaskedGatherSDNode>(
8598       dl.getIROrder(), VTs, MemVT, MMO, IndexType, ExtTy));
8599   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
8600   ID.AddInteger(MMO->getFlags());
8601   void *IP = nullptr;
8602   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
8603     cast<MaskedGatherSDNode>(E)->refineAlignment(MMO);
8604     return SDValue(E, 0);
8605   }
8606 
8607   IndexType = TLI->getCanonicalIndexType(IndexType, MemVT, Ops[4]);
8608   auto *N = newSDNode<MaskedGatherSDNode>(dl.getIROrder(), dl.getDebugLoc(),
8609                                           VTs, MemVT, MMO, IndexType, ExtTy);
8610   createOperands(N, Ops);
8611 
8612   assert(N->getPassThru().getValueType() == N->getValueType(0) &&
8613          "Incompatible type of the PassThru value in MaskedGatherSDNode");
8614   assert(N->getMask().getValueType().getVectorElementCount() ==
8615              N->getValueType(0).getVectorElementCount() &&
8616          "Vector width mismatch between mask and data");
8617   assert(N->getIndex().getValueType().getVectorElementCount().isScalable() ==
8618              N->getValueType(0).getVectorElementCount().isScalable() &&
8619          "Scalable flags of index and data do not match");
8620   assert(ElementCount::isKnownGE(
8621              N->getIndex().getValueType().getVectorElementCount(),
8622              N->getValueType(0).getVectorElementCount()) &&
8623          "Vector width mismatch between index and data");
8624   assert(isa<ConstantSDNode>(N->getScale()) &&
8625          cast<ConstantSDNode>(N->getScale())->getAPIntValue().isPowerOf2() &&
8626          "Scale should be a constant power of 2");
8627 
8628   CSEMap.InsertNode(N, IP);
8629   InsertNode(N);
8630   SDValue V(N, 0);
8631   NewSDValueDbgMsg(V, "Creating new node: ", this);
8632   return V;
8633 }
8634 
8635 SDValue SelectionDAG::getMaskedScatter(SDVTList VTs, EVT MemVT, const SDLoc &dl,
8636                                        ArrayRef<SDValue> Ops,
8637                                        MachineMemOperand *MMO,
8638                                        ISD::MemIndexType IndexType,
8639                                        bool IsTrunc) {
8640   assert(Ops.size() == 6 && "Incompatible number of operands");
8641 
8642   FoldingSetNodeID ID;
8643   AddNodeIDNode(ID, ISD::MSCATTER, VTs, Ops);
8644   ID.AddInteger(MemVT.getRawBits());
8645   ID.AddInteger(getSyntheticNodeSubclassData<MaskedScatterSDNode>(
8646       dl.getIROrder(), VTs, MemVT, MMO, IndexType, IsTrunc));
8647   ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
8648   ID.AddInteger(MMO->getFlags());
8649   void *IP = nullptr;
8650   if (SDNode *E = FindNodeOrInsertPos(ID, dl, IP)) {
8651     cast<MaskedScatterSDNode>(E)->refineAlignment(MMO);
8652     return SDValue(E, 0);
8653   }
8654 
8655   IndexType = TLI->getCanonicalIndexType(IndexType, MemVT, Ops[4]);
8656   auto *N = newSDNode<MaskedScatterSDNode>(dl.getIROrder(), dl.getDebugLoc(),
8657                                            VTs, MemVT, MMO, IndexType, IsTrunc);
8658   createOperands(N, Ops);
8659 
8660   assert(N->getMask().getValueType().getVectorElementCount() ==
8661              N->getValue().getValueType().getVectorElementCount() &&
8662          "Vector width mismatch between mask and data");
8663   assert(
8664       N->getIndex().getValueType().getVectorElementCount().isScalable() ==
8665           N->getValue().getValueType().getVectorElementCount().isScalable() &&
8666       "Scalable flags of index and data do not match");
8667   assert(ElementCount::isKnownGE(
8668              N->getIndex().getValueType().getVectorElementCount(),
8669              N->getValue().getValueType().getVectorElementCount()) &&
8670          "Vector width mismatch between index and data");
8671   assert(isa<ConstantSDNode>(N->getScale()) &&
8672          cast<ConstantSDNode>(N->getScale())->getAPIntValue().isPowerOf2() &&
8673          "Scale should be a constant power of 2");
8674 
8675   CSEMap.InsertNode(N, IP);
8676   InsertNode(N);
8677   SDValue V(N, 0);
8678   NewSDValueDbgMsg(V, "Creating new node: ", this);
8679   return V;
8680 }
8681 
8682 SDValue SelectionDAG::simplifySelect(SDValue Cond, SDValue T, SDValue F) {
8683   // select undef, T, F --> T (if T is a constant), otherwise F
8684   // select, ?, undef, F --> F
8685   // select, ?, T, undef --> T
8686   if (Cond.isUndef())
8687     return isConstantValueOfAnyType(T) ? T : F;
8688   if (T.isUndef())
8689     return F;
8690   if (F.isUndef())
8691     return T;
8692 
8693   // select true, T, F --> T
8694   // select false, T, F --> F
8695   if (auto *CondC = dyn_cast<ConstantSDNode>(Cond))
8696     return CondC->isZero() ? F : T;
8697 
8698   // TODO: This should simplify VSELECT with constant condition using something
8699   // like this (but check boolean contents to be complete?):
8700   //  if (ISD::isBuildVectorAllOnes(Cond.getNode()))
8701   //    return T;
8702   //  if (ISD::isBuildVectorAllZeros(Cond.getNode()))
8703   //    return F;
8704 
8705   // select ?, T, T --> T
8706   if (T == F)
8707     return T;
8708 
8709   return SDValue();
8710 }
8711 
8712 SDValue SelectionDAG::simplifyShift(SDValue X, SDValue Y) {
8713   // shift undef, Y --> 0 (can always assume that the undef value is 0)
8714   if (X.isUndef())
8715     return getConstant(0, SDLoc(X.getNode()), X.getValueType());
8716   // shift X, undef --> undef (because it may shift by the bitwidth)
8717   if (Y.isUndef())
8718     return getUNDEF(X.getValueType());
8719 
8720   // shift 0, Y --> 0
8721   // shift X, 0 --> X
8722   if (isNullOrNullSplat(X) || isNullOrNullSplat(Y))
8723     return X;
8724 
8725   // shift X, C >= bitwidth(X) --> undef
8726   // All vector elements must be too big (or undef) to avoid partial undefs.
8727   auto isShiftTooBig = [X](ConstantSDNode *Val) {
8728     return !Val || Val->getAPIntValue().uge(X.getScalarValueSizeInBits());
8729   };
8730   if (ISD::matchUnaryPredicate(Y, isShiftTooBig, true))
8731     return getUNDEF(X.getValueType());
8732 
8733   return SDValue();
8734 }
8735 
8736 SDValue SelectionDAG::simplifyFPBinop(unsigned Opcode, SDValue X, SDValue Y,
8737                                       SDNodeFlags Flags) {
8738   // If this operation has 'nnan' or 'ninf' and at least 1 disallowed operand
8739   // (an undef operand can be chosen to be Nan/Inf), then the result of this
8740   // operation is poison. That result can be relaxed to undef.
8741   ConstantFPSDNode *XC = isConstOrConstSplatFP(X, /* AllowUndefs */ true);
8742   ConstantFPSDNode *YC = isConstOrConstSplatFP(Y, /* AllowUndefs */ true);
8743   bool HasNan = (XC && XC->getValueAPF().isNaN()) ||
8744                 (YC && YC->getValueAPF().isNaN());
8745   bool HasInf = (XC && XC->getValueAPF().isInfinity()) ||
8746                 (YC && YC->getValueAPF().isInfinity());
8747 
8748   if (Flags.hasNoNaNs() && (HasNan || X.isUndef() || Y.isUndef()))
8749     return getUNDEF(X.getValueType());
8750 
8751   if (Flags.hasNoInfs() && (HasInf || X.isUndef() || Y.isUndef()))
8752     return getUNDEF(X.getValueType());
8753 
8754   if (!YC)
8755     return SDValue();
8756 
8757   // X + -0.0 --> X
8758   if (Opcode == ISD::FADD)
8759     if (YC->getValueAPF().isNegZero())
8760       return X;
8761 
8762   // X - +0.0 --> X
8763   if (Opcode == ISD::FSUB)
8764     if (YC->getValueAPF().isPosZero())
8765       return X;
8766 
8767   // X * 1.0 --> X
8768   // X / 1.0 --> X
8769   if (Opcode == ISD::FMUL || Opcode == ISD::FDIV)
8770     if (YC->getValueAPF().isExactlyValue(1.0))
8771       return X;
8772 
8773   // X * 0.0 --> 0.0
8774   if (Opcode == ISD::FMUL && Flags.hasNoNaNs() && Flags.hasNoSignedZeros())
8775     if (YC->getValueAPF().isZero())
8776       return getConstantFP(0.0, SDLoc(Y), Y.getValueType());
8777 
8778   return SDValue();
8779 }
8780 
8781 SDValue SelectionDAG::getVAArg(EVT VT, const SDLoc &dl, SDValue Chain,
8782                                SDValue Ptr, SDValue SV, unsigned Align) {
8783   SDValue Ops[] = { Chain, Ptr, SV, getTargetConstant(Align, dl, MVT::i32) };
8784   return getNode(ISD::VAARG, dl, getVTList(VT, MVT::Other), Ops);
8785 }
8786 
8787 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
8788                               ArrayRef<SDUse> Ops) {
8789   switch (Ops.size()) {
8790   case 0: return getNode(Opcode, DL, VT);
8791   case 1: return getNode(Opcode, DL, VT, static_cast<const SDValue>(Ops[0]));
8792   case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1]);
8793   case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2]);
8794   default: break;
8795   }
8796 
8797   // Copy from an SDUse array into an SDValue array for use with
8798   // the regular getNode logic.
8799   SmallVector<SDValue, 8> NewOps(Ops.begin(), Ops.end());
8800   return getNode(Opcode, DL, VT, NewOps);
8801 }
8802 
8803 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
8804                               ArrayRef<SDValue> Ops) {
8805   SDNodeFlags Flags;
8806   if (Inserter)
8807     Flags = Inserter->getFlags();
8808   return getNode(Opcode, DL, VT, Ops, Flags);
8809 }
8810 
8811 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, EVT VT,
8812                               ArrayRef<SDValue> Ops, const SDNodeFlags Flags) {
8813   unsigned NumOps = Ops.size();
8814   switch (NumOps) {
8815   case 0: return getNode(Opcode, DL, VT);
8816   case 1: return getNode(Opcode, DL, VT, Ops[0], Flags);
8817   case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Flags);
8818   case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2], Flags);
8819   default: break;
8820   }
8821 
8822 #ifndef NDEBUG
8823   for (auto &Op : Ops)
8824     assert(Op.getOpcode() != ISD::DELETED_NODE &&
8825            "Operand is DELETED_NODE!");
8826 #endif
8827 
8828   switch (Opcode) {
8829   default: break;
8830   case ISD::BUILD_VECTOR:
8831     // Attempt to simplify BUILD_VECTOR.
8832     if (SDValue V = FoldBUILD_VECTOR(DL, VT, Ops, *this))
8833       return V;
8834     break;
8835   case ISD::CONCAT_VECTORS:
8836     if (SDValue V = foldCONCAT_VECTORS(DL, VT, Ops, *this))
8837       return V;
8838     break;
8839   case ISD::SELECT_CC:
8840     assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
8841     assert(Ops[0].getValueType() == Ops[1].getValueType() &&
8842            "LHS and RHS of condition must have same type!");
8843     assert(Ops[2].getValueType() == Ops[3].getValueType() &&
8844            "True and False arms of SelectCC must have same type!");
8845     assert(Ops[2].getValueType() == VT &&
8846            "select_cc node must be of same type as true and false value!");
8847     break;
8848   case ISD::BR_CC:
8849     assert(NumOps == 5 && "BR_CC takes 5 operands!");
8850     assert(Ops[2].getValueType() == Ops[3].getValueType() &&
8851            "LHS/RHS of comparison should match types!");
8852     break;
8853   case ISD::VP_ADD:
8854   case ISD::VP_SUB:
8855     // If it is VP_ADD/VP_SUB mask operation then turn it to VP_XOR
8856     if (VT.isVector() && VT.getVectorElementType() == MVT::i1)
8857       Opcode = ISD::VP_XOR;
8858     break;
8859   case ISD::VP_MUL:
8860     // If it is VP_MUL mask operation then turn it to VP_AND
8861     if (VT.isVector() && VT.getVectorElementType() == MVT::i1)
8862       Opcode = ISD::VP_AND;
8863     break;
8864   }
8865 
8866   // Memoize nodes.
8867   SDNode *N;
8868   SDVTList VTs = getVTList(VT);
8869 
8870   if (VT != MVT::Glue) {
8871     FoldingSetNodeID ID;
8872     AddNodeIDNode(ID, Opcode, VTs, Ops);
8873     void *IP = nullptr;
8874 
8875     if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP))
8876       return SDValue(E, 0);
8877 
8878     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
8879     createOperands(N, Ops);
8880 
8881     CSEMap.InsertNode(N, IP);
8882   } else {
8883     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
8884     createOperands(N, Ops);
8885   }
8886 
8887   N->setFlags(Flags);
8888   InsertNode(N);
8889   SDValue V(N, 0);
8890   NewSDValueDbgMsg(V, "Creating new node: ", this);
8891   return V;
8892 }
8893 
8894 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL,
8895                               ArrayRef<EVT> ResultTys, ArrayRef<SDValue> Ops) {
8896   return getNode(Opcode, DL, getVTList(ResultTys), Ops);
8897 }
8898 
8899 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
8900                               ArrayRef<SDValue> Ops) {
8901   SDNodeFlags Flags;
8902   if (Inserter)
8903     Flags = Inserter->getFlags();
8904   return getNode(Opcode, DL, VTList, Ops, Flags);
8905 }
8906 
8907 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
8908                               ArrayRef<SDValue> Ops, const SDNodeFlags Flags) {
8909   if (VTList.NumVTs == 1)
8910     return getNode(Opcode, DL, VTList.VTs[0], Ops);
8911 
8912 #ifndef NDEBUG
8913   for (auto &Op : Ops)
8914     assert(Op.getOpcode() != ISD::DELETED_NODE &&
8915            "Operand is DELETED_NODE!");
8916 #endif
8917 
8918   switch (Opcode) {
8919   case ISD::STRICT_FP_EXTEND:
8920     assert(VTList.NumVTs == 2 && Ops.size() == 2 &&
8921            "Invalid STRICT_FP_EXTEND!");
8922     assert(VTList.VTs[0].isFloatingPoint() &&
8923            Ops[1].getValueType().isFloatingPoint() && "Invalid FP cast!");
8924     assert(VTList.VTs[0].isVector() == Ops[1].getValueType().isVector() &&
8925            "STRICT_FP_EXTEND result type should be vector iff the operand "
8926            "type is vector!");
8927     assert((!VTList.VTs[0].isVector() ||
8928             VTList.VTs[0].getVectorNumElements() ==
8929             Ops[1].getValueType().getVectorNumElements()) &&
8930            "Vector element count mismatch!");
8931     assert(Ops[1].getValueType().bitsLT(VTList.VTs[0]) &&
8932            "Invalid fpext node, dst <= src!");
8933     break;
8934   case ISD::STRICT_FP_ROUND:
8935     assert(VTList.NumVTs == 2 && Ops.size() == 3 && "Invalid STRICT_FP_ROUND!");
8936     assert(VTList.VTs[0].isVector() == Ops[1].getValueType().isVector() &&
8937            "STRICT_FP_ROUND result type should be vector iff the operand "
8938            "type is vector!");
8939     assert((!VTList.VTs[0].isVector() ||
8940             VTList.VTs[0].getVectorNumElements() ==
8941             Ops[1].getValueType().getVectorNumElements()) &&
8942            "Vector element count mismatch!");
8943     assert(VTList.VTs[0].isFloatingPoint() &&
8944            Ops[1].getValueType().isFloatingPoint() &&
8945            VTList.VTs[0].bitsLT(Ops[1].getValueType()) &&
8946            isa<ConstantSDNode>(Ops[2]) &&
8947            (cast<ConstantSDNode>(Ops[2])->getZExtValue() == 0 ||
8948             cast<ConstantSDNode>(Ops[2])->getZExtValue() == 1) &&
8949            "Invalid STRICT_FP_ROUND!");
8950     break;
8951 #if 0
8952   // FIXME: figure out how to safely handle things like
8953   // int foo(int x) { return 1 << (x & 255); }
8954   // int bar() { return foo(256); }
8955   case ISD::SRA_PARTS:
8956   case ISD::SRL_PARTS:
8957   case ISD::SHL_PARTS:
8958     if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
8959         cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
8960       return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0));
8961     else if (N3.getOpcode() == ISD::AND)
8962       if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
8963         // If the and is only masking out bits that cannot effect the shift,
8964         // eliminate the and.
8965         unsigned NumBits = VT.getScalarSizeInBits()*2;
8966         if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
8967           return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0));
8968       }
8969     break;
8970 #endif
8971   }
8972 
8973   // Memoize the node unless it returns a flag.
8974   SDNode *N;
8975   if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) {
8976     FoldingSetNodeID ID;
8977     AddNodeIDNode(ID, Opcode, VTList, Ops);
8978     void *IP = nullptr;
8979     if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP))
8980       return SDValue(E, 0);
8981 
8982     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTList);
8983     createOperands(N, Ops);
8984     CSEMap.InsertNode(N, IP);
8985   } else {
8986     N = newSDNode<SDNode>(Opcode, DL.getIROrder(), DL.getDebugLoc(), VTList);
8987     createOperands(N, Ops);
8988   }
8989 
8990   N->setFlags(Flags);
8991   InsertNode(N);
8992   SDValue V(N, 0);
8993   NewSDValueDbgMsg(V, "Creating new node: ", this);
8994   return V;
8995 }
8996 
8997 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL,
8998                               SDVTList VTList) {
8999   return getNode(Opcode, DL, VTList, None);
9000 }
9001 
9002 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
9003                               SDValue N1) {
9004   SDValue Ops[] = { N1 };
9005   return getNode(Opcode, DL, VTList, Ops);
9006 }
9007 
9008 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
9009                               SDValue N1, SDValue N2) {
9010   SDValue Ops[] = { N1, N2 };
9011   return getNode(Opcode, DL, VTList, Ops);
9012 }
9013 
9014 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
9015                               SDValue N1, SDValue N2, SDValue N3) {
9016   SDValue Ops[] = { N1, N2, N3 };
9017   return getNode(Opcode, DL, VTList, Ops);
9018 }
9019 
9020 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
9021                               SDValue N1, SDValue N2, SDValue N3, SDValue N4) {
9022   SDValue Ops[] = { N1, N2, N3, N4 };
9023   return getNode(Opcode, DL, VTList, Ops);
9024 }
9025 
9026 SDValue SelectionDAG::getNode(unsigned Opcode, const SDLoc &DL, SDVTList VTList,
9027                               SDValue N1, SDValue N2, SDValue N3, SDValue N4,
9028                               SDValue N5) {
9029   SDValue Ops[] = { N1, N2, N3, N4, N5 };
9030   return getNode(Opcode, DL, VTList, Ops);
9031 }
9032 
9033 SDVTList SelectionDAG::getVTList(EVT VT) {
9034   return makeVTList(SDNode::getValueTypeList(VT), 1);
9035 }
9036 
9037 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2) {
9038   FoldingSetNodeID ID;
9039   ID.AddInteger(2U);
9040   ID.AddInteger(VT1.getRawBits());
9041   ID.AddInteger(VT2.getRawBits());
9042 
9043   void *IP = nullptr;
9044   SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
9045   if (!Result) {
9046     EVT *Array = Allocator.Allocate<EVT>(2);
9047     Array[0] = VT1;
9048     Array[1] = VT2;
9049     Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 2);
9050     VTListMap.InsertNode(Result, IP);
9051   }
9052   return Result->getSDVTList();
9053 }
9054 
9055 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3) {
9056   FoldingSetNodeID ID;
9057   ID.AddInteger(3U);
9058   ID.AddInteger(VT1.getRawBits());
9059   ID.AddInteger(VT2.getRawBits());
9060   ID.AddInteger(VT3.getRawBits());
9061 
9062   void *IP = nullptr;
9063   SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
9064   if (!Result) {
9065     EVT *Array = Allocator.Allocate<EVT>(3);
9066     Array[0] = VT1;
9067     Array[1] = VT2;
9068     Array[2] = VT3;
9069     Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 3);
9070     VTListMap.InsertNode(Result, IP);
9071   }
9072   return Result->getSDVTList();
9073 }
9074 
9075 SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4) {
9076   FoldingSetNodeID ID;
9077   ID.AddInteger(4U);
9078   ID.AddInteger(VT1.getRawBits());
9079   ID.AddInteger(VT2.getRawBits());
9080   ID.AddInteger(VT3.getRawBits());
9081   ID.AddInteger(VT4.getRawBits());
9082 
9083   void *IP = nullptr;
9084   SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
9085   if (!Result) {
9086     EVT *Array = Allocator.Allocate<EVT>(4);
9087     Array[0] = VT1;
9088     Array[1] = VT2;
9089     Array[2] = VT3;
9090     Array[3] = VT4;
9091     Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, 4);
9092     VTListMap.InsertNode(Result, IP);
9093   }
9094   return Result->getSDVTList();
9095 }
9096 
9097 SDVTList SelectionDAG::getVTList(ArrayRef<EVT> VTs) {
9098   unsigned NumVTs = VTs.size();
9099   FoldingSetNodeID ID;
9100   ID.AddInteger(NumVTs);
9101   for (unsigned index = 0; index < NumVTs; index++) {
9102     ID.AddInteger(VTs[index].getRawBits());
9103   }
9104 
9105   void *IP = nullptr;
9106   SDVTListNode *Result = VTListMap.FindNodeOrInsertPos(ID, IP);
9107   if (!Result) {
9108     EVT *Array = Allocator.Allocate<EVT>(NumVTs);
9109     llvm::copy(VTs, Array);
9110     Result = new (Allocator) SDVTListNode(ID.Intern(Allocator), Array, NumVTs);
9111     VTListMap.InsertNode(Result, IP);
9112   }
9113   return Result->getSDVTList();
9114 }
9115 
9116 
9117 /// UpdateNodeOperands - *Mutate* the specified node in-place to have the
9118 /// specified operands.  If the resultant node already exists in the DAG,
9119 /// this does not modify the specified node, instead it returns the node that
9120 /// already exists.  If the resultant node does not exist in the DAG, the
9121 /// input node is returned.  As a degenerate case, if you specify the same
9122 /// input operands as the node already has, the input node is returned.
9123 SDNode *SelectionDAG::UpdateNodeOperands(SDNode *N, SDValue Op) {
9124   assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
9125 
9126   // Check to see if there is no change.
9127   if (Op == N->getOperand(0)) return N;
9128 
9129   // See if the modified node already exists.
9130   void *InsertPos = nullptr;
9131   if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
9132     return Existing;
9133 
9134   // Nope it doesn't.  Remove the node from its current place in the maps.
9135   if (InsertPos)
9136     if (!RemoveNodeFromCSEMaps(N))
9137       InsertPos = nullptr;
9138 
9139   // Now we update the operands.
9140   N->OperandList[0].set(Op);
9141 
9142   updateDivergence(N);
9143   // If this gets put into a CSE map, add it.
9144   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
9145   return N;
9146 }
9147 
9148 SDNode *SelectionDAG::UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2) {
9149   assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
9150 
9151   // Check to see if there is no change.
9152   if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
9153     return N;   // No operands changed, just return the input node.
9154 
9155   // See if the modified node already exists.
9156   void *InsertPos = nullptr;
9157   if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
9158     return Existing;
9159 
9160   // Nope it doesn't.  Remove the node from its current place in the maps.
9161   if (InsertPos)
9162     if (!RemoveNodeFromCSEMaps(N))
9163       InsertPos = nullptr;
9164 
9165   // Now we update the operands.
9166   if (N->OperandList[0] != Op1)
9167     N->OperandList[0].set(Op1);
9168   if (N->OperandList[1] != Op2)
9169     N->OperandList[1].set(Op2);
9170 
9171   updateDivergence(N);
9172   // If this gets put into a CSE map, add it.
9173   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
9174   return N;
9175 }
9176 
9177 SDNode *SelectionDAG::
9178 UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2, SDValue Op3) {
9179   SDValue Ops[] = { Op1, Op2, Op3 };
9180   return UpdateNodeOperands(N, Ops);
9181 }
9182 
9183 SDNode *SelectionDAG::
9184 UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2,
9185                    SDValue Op3, SDValue Op4) {
9186   SDValue Ops[] = { Op1, Op2, Op3, Op4 };
9187   return UpdateNodeOperands(N, Ops);
9188 }
9189 
9190 SDNode *SelectionDAG::
9191 UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2,
9192                    SDValue Op3, SDValue Op4, SDValue Op5) {
9193   SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 };
9194   return UpdateNodeOperands(N, Ops);
9195 }
9196 
9197 SDNode *SelectionDAG::
9198 UpdateNodeOperands(SDNode *N, ArrayRef<SDValue> Ops) {
9199   unsigned NumOps = Ops.size();
9200   assert(N->getNumOperands() == NumOps &&
9201          "Update with wrong number of operands");
9202 
9203   // If no operands changed just return the input node.
9204   if (std::equal(Ops.begin(), Ops.end(), N->op_begin()))
9205     return N;
9206 
9207   // See if the modified node already exists.
9208   void *InsertPos = nullptr;
9209   if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, InsertPos))
9210     return Existing;
9211 
9212   // Nope it doesn't.  Remove the node from its current place in the maps.
9213   if (InsertPos)
9214     if (!RemoveNodeFromCSEMaps(N))
9215       InsertPos = nullptr;
9216 
9217   // Now we update the operands.
9218   for (unsigned i = 0; i != NumOps; ++i)
9219     if (N->OperandList[i] != Ops[i])
9220       N->OperandList[i].set(Ops[i]);
9221 
9222   updateDivergence(N);
9223   // If this gets put into a CSE map, add it.
9224   if (InsertPos) CSEMap.InsertNode(N, InsertPos);
9225   return N;
9226 }
9227 
9228 /// DropOperands - Release the operands and set this node to have
9229 /// zero operands.
9230 void SDNode::DropOperands() {
9231   // Unlike the code in MorphNodeTo that does this, we don't need to
9232   // watch for dead nodes here.
9233   for (op_iterator I = op_begin(), E = op_end(); I != E; ) {
9234     SDUse &Use = *I++;
9235     Use.set(SDValue());
9236   }
9237 }
9238 
9239 void SelectionDAG::setNodeMemRefs(MachineSDNode *N,
9240                                   ArrayRef<MachineMemOperand *> NewMemRefs) {
9241   if (NewMemRefs.empty()) {
9242     N->clearMemRefs();
9243     return;
9244   }
9245 
9246   // Check if we can avoid allocating by storing a single reference directly.
9247   if (NewMemRefs.size() == 1) {
9248     N->MemRefs = NewMemRefs[0];
9249     N->NumMemRefs = 1;
9250     return;
9251   }
9252 
9253   MachineMemOperand **MemRefsBuffer =
9254       Allocator.template Allocate<MachineMemOperand *>(NewMemRefs.size());
9255   llvm::copy(NewMemRefs, MemRefsBuffer);
9256   N->MemRefs = MemRefsBuffer;
9257   N->NumMemRefs = static_cast<int>(NewMemRefs.size());
9258 }
9259 
9260 /// SelectNodeTo - These are wrappers around MorphNodeTo that accept a
9261 /// machine opcode.
9262 ///
9263 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
9264                                    EVT VT) {
9265   SDVTList VTs = getVTList(VT);
9266   return SelectNodeTo(N, MachineOpc, VTs, None);
9267 }
9268 
9269 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
9270                                    EVT VT, SDValue Op1) {
9271   SDVTList VTs = getVTList(VT);
9272   SDValue Ops[] = { Op1 };
9273   return SelectNodeTo(N, MachineOpc, VTs, Ops);
9274 }
9275 
9276 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
9277                                    EVT VT, SDValue Op1,
9278                                    SDValue Op2) {
9279   SDVTList VTs = getVTList(VT);
9280   SDValue Ops[] = { Op1, Op2 };
9281   return SelectNodeTo(N, MachineOpc, VTs, Ops);
9282 }
9283 
9284 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
9285                                    EVT VT, SDValue Op1,
9286                                    SDValue Op2, SDValue Op3) {
9287   SDVTList VTs = getVTList(VT);
9288   SDValue Ops[] = { Op1, Op2, Op3 };
9289   return SelectNodeTo(N, MachineOpc, VTs, Ops);
9290 }
9291 
9292 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
9293                                    EVT VT, ArrayRef<SDValue> Ops) {
9294   SDVTList VTs = getVTList(VT);
9295   return SelectNodeTo(N, MachineOpc, VTs, Ops);
9296 }
9297 
9298 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
9299                                    EVT VT1, EVT VT2, ArrayRef<SDValue> Ops) {
9300   SDVTList VTs = getVTList(VT1, VT2);
9301   return SelectNodeTo(N, MachineOpc, VTs, Ops);
9302 }
9303 
9304 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
9305                                    EVT VT1, EVT VT2) {
9306   SDVTList VTs = getVTList(VT1, VT2);
9307   return SelectNodeTo(N, MachineOpc, VTs, None);
9308 }
9309 
9310 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
9311                                    EVT VT1, EVT VT2, EVT VT3,
9312                                    ArrayRef<SDValue> Ops) {
9313   SDVTList VTs = getVTList(VT1, VT2, VT3);
9314   return SelectNodeTo(N, MachineOpc, VTs, Ops);
9315 }
9316 
9317 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
9318                                    EVT VT1, EVT VT2,
9319                                    SDValue Op1, SDValue Op2) {
9320   SDVTList VTs = getVTList(VT1, VT2);
9321   SDValue Ops[] = { Op1, Op2 };
9322   return SelectNodeTo(N, MachineOpc, VTs, Ops);
9323 }
9324 
9325 SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
9326                                    SDVTList VTs,ArrayRef<SDValue> Ops) {
9327   SDNode *New = MorphNodeTo(N, ~MachineOpc, VTs, Ops);
9328   // Reset the NodeID to -1.
9329   New->setNodeId(-1);
9330   if (New != N) {
9331     ReplaceAllUsesWith(N, New);
9332     RemoveDeadNode(N);
9333   }
9334   return New;
9335 }
9336 
9337 /// UpdateSDLocOnMergeSDNode - If the opt level is -O0 then it throws away
9338 /// the line number information on the merged node since it is not possible to
9339 /// preserve the information that operation is associated with multiple lines.
9340 /// This will make the debugger working better at -O0, were there is a higher
9341 /// probability having other instructions associated with that line.
9342 ///
9343 /// For IROrder, we keep the smaller of the two
9344 SDNode *SelectionDAG::UpdateSDLocOnMergeSDNode(SDNode *N, const SDLoc &OLoc) {
9345   DebugLoc NLoc = N->getDebugLoc();
9346   if (NLoc && OptLevel == CodeGenOpt::None && OLoc.getDebugLoc() != NLoc) {
9347     N->setDebugLoc(DebugLoc());
9348   }
9349   unsigned Order = std::min(N->getIROrder(), OLoc.getIROrder());
9350   N->setIROrder(Order);
9351   return N;
9352 }
9353 
9354 /// MorphNodeTo - This *mutates* the specified node to have the specified
9355 /// return type, opcode, and operands.
9356 ///
9357 /// Note that MorphNodeTo returns the resultant node.  If there is already a
9358 /// node of the specified opcode and operands, it returns that node instead of
9359 /// the current one.  Note that the SDLoc need not be the same.
9360 ///
9361 /// Using MorphNodeTo is faster than creating a new node and swapping it in
9362 /// with ReplaceAllUsesWith both because it often avoids allocating a new
9363 /// node, and because it doesn't require CSE recalculation for any of
9364 /// the node's users.
9365 ///
9366 /// However, note that MorphNodeTo recursively deletes dead nodes from the DAG.
9367 /// As a consequence it isn't appropriate to use from within the DAG combiner or
9368 /// the legalizer which maintain worklists that would need to be updated when
9369 /// deleting things.
9370 SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
9371                                   SDVTList VTs, ArrayRef<SDValue> Ops) {
9372   // If an identical node already exists, use it.
9373   void *IP = nullptr;
9374   if (VTs.VTs[VTs.NumVTs-1] != MVT::Glue) {
9375     FoldingSetNodeID ID;
9376     AddNodeIDNode(ID, Opc, VTs, Ops);
9377     if (SDNode *ON = FindNodeOrInsertPos(ID, SDLoc(N), IP))
9378       return UpdateSDLocOnMergeSDNode(ON, SDLoc(N));
9379   }
9380 
9381   if (!RemoveNodeFromCSEMaps(N))
9382     IP = nullptr;
9383 
9384   // Start the morphing.
9385   N->NodeType = Opc;
9386   N->ValueList = VTs.VTs;
9387   N->NumValues = VTs.NumVTs;
9388 
9389   // Clear the operands list, updating used nodes to remove this from their
9390   // use list.  Keep track of any operands that become dead as a result.
9391   SmallPtrSet<SDNode*, 16> DeadNodeSet;
9392   for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ) {
9393     SDUse &Use = *I++;
9394     SDNode *Used = Use.getNode();
9395     Use.set(SDValue());
9396     if (Used->use_empty())
9397       DeadNodeSet.insert(Used);
9398   }
9399 
9400   // For MachineNode, initialize the memory references information.
9401   if (MachineSDNode *MN = dyn_cast<MachineSDNode>(N))
9402     MN->clearMemRefs();
9403 
9404   // Swap for an appropriately sized array from the recycler.
9405   removeOperands(N);
9406   createOperands(N, Ops);
9407 
9408   // Delete any nodes that are still dead after adding the uses for the
9409   // new operands.
9410   if (!DeadNodeSet.empty()) {
9411     SmallVector<SDNode *, 16> DeadNodes;
9412     for (SDNode *N : DeadNodeSet)
9413       if (N->use_empty())
9414         DeadNodes.push_back(N);
9415     RemoveDeadNodes(DeadNodes);
9416   }
9417 
9418   if (IP)
9419     CSEMap.InsertNode(N, IP);   // Memoize the new node.
9420   return N;
9421 }
9422 
9423 SDNode* SelectionDAG::mutateStrictFPToFP(SDNode *Node) {
9424   unsigned OrigOpc = Node->getOpcode();
9425   unsigned NewOpc;
9426   switch (OrigOpc) {
9427   default:
9428     llvm_unreachable("mutateStrictFPToFP called with unexpected opcode!");
9429 #define DAG_INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC, DAGN)               \
9430   case ISD::STRICT_##DAGN: NewOpc = ISD::DAGN; break;
9431 #define CMP_INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC, DAGN)               \
9432   case ISD::STRICT_##DAGN: NewOpc = ISD::SETCC; break;
9433 #include "llvm/IR/ConstrainedOps.def"
9434   }
9435 
9436   assert(Node->getNumValues() == 2 && "Unexpected number of results!");
9437 
9438   // We're taking this node out of the chain, so we need to re-link things.
9439   SDValue InputChain = Node->getOperand(0);
9440   SDValue OutputChain = SDValue(Node, 1);
9441   ReplaceAllUsesOfValueWith(OutputChain, InputChain);
9442 
9443   SmallVector<SDValue, 3> Ops;
9444   for (unsigned i = 1, e = Node->getNumOperands(); i != e; ++i)
9445     Ops.push_back(Node->getOperand(i));
9446 
9447   SDVTList VTs = getVTList(Node->getValueType(0));
9448   SDNode *Res = MorphNodeTo(Node, NewOpc, VTs, Ops);
9449 
9450   // MorphNodeTo can operate in two ways: if an existing node with the
9451   // specified operands exists, it can just return it.  Otherwise, it
9452   // updates the node in place to have the requested operands.
9453   if (Res == Node) {
9454     // If we updated the node in place, reset the node ID.  To the isel,
9455     // this should be just like a newly allocated machine node.
9456     Res->setNodeId(-1);
9457   } else {
9458     ReplaceAllUsesWith(Node, Res);
9459     RemoveDeadNode(Node);
9460   }
9461 
9462   return Res;
9463 }
9464 
9465 /// getMachineNode - These are used for target selectors to create a new node
9466 /// with specified return type(s), MachineInstr opcode, and operands.
9467 ///
9468 /// Note that getMachineNode returns the resultant node.  If there is already a
9469 /// node of the specified opcode and operands, it returns that node instead of
9470 /// the current one.
9471 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
9472                                             EVT VT) {
9473   SDVTList VTs = getVTList(VT);
9474   return getMachineNode(Opcode, dl, VTs, None);
9475 }
9476 
9477 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
9478                                             EVT VT, SDValue Op1) {
9479   SDVTList VTs = getVTList(VT);
9480   SDValue Ops[] = { Op1 };
9481   return getMachineNode(Opcode, dl, VTs, Ops);
9482 }
9483 
9484 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
9485                                             EVT VT, SDValue Op1, SDValue Op2) {
9486   SDVTList VTs = getVTList(VT);
9487   SDValue Ops[] = { Op1, Op2 };
9488   return getMachineNode(Opcode, dl, VTs, Ops);
9489 }
9490 
9491 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
9492                                             EVT VT, SDValue Op1, SDValue Op2,
9493                                             SDValue Op3) {
9494   SDVTList VTs = getVTList(VT);
9495   SDValue Ops[] = { Op1, Op2, Op3 };
9496   return getMachineNode(Opcode, dl, VTs, Ops);
9497 }
9498 
9499 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
9500                                             EVT VT, ArrayRef<SDValue> Ops) {
9501   SDVTList VTs = getVTList(VT);
9502   return getMachineNode(Opcode, dl, VTs, Ops);
9503 }
9504 
9505 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
9506                                             EVT VT1, EVT VT2, SDValue Op1,
9507                                             SDValue Op2) {
9508   SDVTList VTs = getVTList(VT1, VT2);
9509   SDValue Ops[] = { Op1, Op2 };
9510   return getMachineNode(Opcode, dl, VTs, Ops);
9511 }
9512 
9513 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
9514                                             EVT VT1, EVT VT2, SDValue Op1,
9515                                             SDValue Op2, SDValue Op3) {
9516   SDVTList VTs = getVTList(VT1, VT2);
9517   SDValue Ops[] = { Op1, Op2, Op3 };
9518   return getMachineNode(Opcode, dl, VTs, Ops);
9519 }
9520 
9521 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
9522                                             EVT VT1, EVT VT2,
9523                                             ArrayRef<SDValue> Ops) {
9524   SDVTList VTs = getVTList(VT1, VT2);
9525   return getMachineNode(Opcode, dl, VTs, Ops);
9526 }
9527 
9528 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
9529                                             EVT VT1, EVT VT2, EVT VT3,
9530                                             SDValue Op1, SDValue Op2) {
9531   SDVTList VTs = getVTList(VT1, VT2, VT3);
9532   SDValue Ops[] = { Op1, Op2 };
9533   return getMachineNode(Opcode, dl, VTs, Ops);
9534 }
9535 
9536 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
9537                                             EVT VT1, EVT VT2, EVT VT3,
9538                                             SDValue Op1, SDValue Op2,
9539                                             SDValue Op3) {
9540   SDVTList VTs = getVTList(VT1, VT2, VT3);
9541   SDValue Ops[] = { Op1, Op2, Op3 };
9542   return getMachineNode(Opcode, dl, VTs, Ops);
9543 }
9544 
9545 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
9546                                             EVT VT1, EVT VT2, EVT VT3,
9547                                             ArrayRef<SDValue> Ops) {
9548   SDVTList VTs = getVTList(VT1, VT2, VT3);
9549   return getMachineNode(Opcode, dl, VTs, Ops);
9550 }
9551 
9552 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &dl,
9553                                             ArrayRef<EVT> ResultTys,
9554                                             ArrayRef<SDValue> Ops) {
9555   SDVTList VTs = getVTList(ResultTys);
9556   return getMachineNode(Opcode, dl, VTs, Ops);
9557 }
9558 
9559 MachineSDNode *SelectionDAG::getMachineNode(unsigned Opcode, const SDLoc &DL,
9560                                             SDVTList VTs,
9561                                             ArrayRef<SDValue> Ops) {
9562   bool DoCSE = VTs.VTs[VTs.NumVTs-1] != MVT::Glue;
9563   MachineSDNode *N;
9564   void *IP = nullptr;
9565 
9566   if (DoCSE) {
9567     FoldingSetNodeID ID;
9568     AddNodeIDNode(ID, ~Opcode, VTs, Ops);
9569     IP = nullptr;
9570     if (SDNode *E = FindNodeOrInsertPos(ID, DL, IP)) {
9571       return cast<MachineSDNode>(UpdateSDLocOnMergeSDNode(E, DL));
9572     }
9573   }
9574 
9575   // Allocate a new MachineSDNode.
9576   N = newSDNode<MachineSDNode>(~Opcode, DL.getIROrder(), DL.getDebugLoc(), VTs);
9577   createOperands(N, Ops);
9578 
9579   if (DoCSE)
9580     CSEMap.InsertNode(N, IP);
9581 
9582   InsertNode(N);
9583   NewSDValueDbgMsg(SDValue(N, 0), "Creating new machine node: ", this);
9584   return N;
9585 }
9586 
9587 /// getTargetExtractSubreg - A convenience function for creating
9588 /// TargetOpcode::EXTRACT_SUBREG nodes.
9589 SDValue SelectionDAG::getTargetExtractSubreg(int SRIdx, const SDLoc &DL, EVT VT,
9590                                              SDValue Operand) {
9591   SDValue SRIdxVal = getTargetConstant(SRIdx, DL, MVT::i32);
9592   SDNode *Subreg = getMachineNode(TargetOpcode::EXTRACT_SUBREG, DL,
9593                                   VT, Operand, SRIdxVal);
9594   return SDValue(Subreg, 0);
9595 }
9596 
9597 /// getTargetInsertSubreg - A convenience function for creating
9598 /// TargetOpcode::INSERT_SUBREG nodes.
9599 SDValue SelectionDAG::getTargetInsertSubreg(int SRIdx, const SDLoc &DL, EVT VT,
9600                                             SDValue Operand, SDValue Subreg) {
9601   SDValue SRIdxVal = getTargetConstant(SRIdx, DL, MVT::i32);
9602   SDNode *Result = getMachineNode(TargetOpcode::INSERT_SUBREG, DL,
9603                                   VT, Operand, Subreg, SRIdxVal);
9604   return SDValue(Result, 0);
9605 }
9606 
9607 /// getNodeIfExists - Get the specified node if it's already available, or
9608 /// else return NULL.
9609 SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
9610                                       ArrayRef<SDValue> Ops) {
9611   SDNodeFlags Flags;
9612   if (Inserter)
9613     Flags = Inserter->getFlags();
9614   return getNodeIfExists(Opcode, VTList, Ops, Flags);
9615 }
9616 
9617 SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
9618                                       ArrayRef<SDValue> Ops,
9619                                       const SDNodeFlags Flags) {
9620   if (VTList.VTs[VTList.NumVTs - 1] != MVT::Glue) {
9621     FoldingSetNodeID ID;
9622     AddNodeIDNode(ID, Opcode, VTList, Ops);
9623     void *IP = nullptr;
9624     if (SDNode *E = FindNodeOrInsertPos(ID, SDLoc(), IP)) {
9625       E->intersectFlagsWith(Flags);
9626       return E;
9627     }
9628   }
9629   return nullptr;
9630 }
9631 
9632 /// doesNodeExist - Check if a node exists without modifying its flags.
9633 bool SelectionDAG::doesNodeExist(unsigned Opcode, SDVTList VTList,
9634                                  ArrayRef<SDValue> Ops) {
9635   if (VTList.VTs[VTList.NumVTs - 1] != MVT::Glue) {
9636     FoldingSetNodeID ID;
9637     AddNodeIDNode(ID, Opcode, VTList, Ops);
9638     void *IP = nullptr;
9639     if (FindNodeOrInsertPos(ID, SDLoc(), IP))
9640       return true;
9641   }
9642   return false;
9643 }
9644 
9645 /// getDbgValue - Creates a SDDbgValue node.
9646 ///
9647 /// SDNode
9648 SDDbgValue *SelectionDAG::getDbgValue(DIVariable *Var, DIExpression *Expr,
9649                                       SDNode *N, unsigned R, bool IsIndirect,
9650                                       const DebugLoc &DL, unsigned O) {
9651   assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) &&
9652          "Expected inlined-at fields to agree");
9653   return new (DbgInfo->getAlloc())
9654       SDDbgValue(DbgInfo->getAlloc(), Var, Expr, SDDbgOperand::fromNode(N, R),
9655                  {}, IsIndirect, DL, O,
9656                  /*IsVariadic=*/false);
9657 }
9658 
9659 /// Constant
9660 SDDbgValue *SelectionDAG::getConstantDbgValue(DIVariable *Var,
9661                                               DIExpression *Expr,
9662                                               const Value *C,
9663                                               const DebugLoc &DL, unsigned O) {
9664   assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) &&
9665          "Expected inlined-at fields to agree");
9666   return new (DbgInfo->getAlloc())
9667       SDDbgValue(DbgInfo->getAlloc(), Var, Expr, SDDbgOperand::fromConst(C), {},
9668                  /*IsIndirect=*/false, DL, O,
9669                  /*IsVariadic=*/false);
9670 }
9671 
9672 /// FrameIndex
9673 SDDbgValue *SelectionDAG::getFrameIndexDbgValue(DIVariable *Var,
9674                                                 DIExpression *Expr, unsigned FI,
9675                                                 bool IsIndirect,
9676                                                 const DebugLoc &DL,
9677                                                 unsigned O) {
9678   assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) &&
9679          "Expected inlined-at fields to agree");
9680   return getFrameIndexDbgValue(Var, Expr, FI, {}, IsIndirect, DL, O);
9681 }
9682 
9683 /// FrameIndex with dependencies
9684 SDDbgValue *SelectionDAG::getFrameIndexDbgValue(DIVariable *Var,
9685                                                 DIExpression *Expr, unsigned FI,
9686                                                 ArrayRef<SDNode *> Dependencies,
9687                                                 bool IsIndirect,
9688                                                 const DebugLoc &DL,
9689                                                 unsigned O) {
9690   assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) &&
9691          "Expected inlined-at fields to agree");
9692   return new (DbgInfo->getAlloc())
9693       SDDbgValue(DbgInfo->getAlloc(), Var, Expr, SDDbgOperand::fromFrameIdx(FI),
9694                  Dependencies, IsIndirect, DL, O,
9695                  /*IsVariadic=*/false);
9696 }
9697 
9698 /// VReg
9699 SDDbgValue *SelectionDAG::getVRegDbgValue(DIVariable *Var, DIExpression *Expr,
9700                                           unsigned VReg, bool IsIndirect,
9701                                           const DebugLoc &DL, unsigned O) {
9702   assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) &&
9703          "Expected inlined-at fields to agree");
9704   return new (DbgInfo->getAlloc())
9705       SDDbgValue(DbgInfo->getAlloc(), Var, Expr, SDDbgOperand::fromVReg(VReg),
9706                  {}, IsIndirect, DL, O,
9707                  /*IsVariadic=*/false);
9708 }
9709 
9710 SDDbgValue *SelectionDAG::getDbgValueList(DIVariable *Var, DIExpression *Expr,
9711                                           ArrayRef<SDDbgOperand> Locs,
9712                                           ArrayRef<SDNode *> Dependencies,
9713                                           bool IsIndirect, const DebugLoc &DL,
9714                                           unsigned O, bool IsVariadic) {
9715   assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(DL) &&
9716          "Expected inlined-at fields to agree");
9717   return new (DbgInfo->getAlloc())
9718       SDDbgValue(DbgInfo->getAlloc(), Var, Expr, Locs, Dependencies, IsIndirect,
9719                  DL, O, IsVariadic);
9720 }
9721 
9722 void SelectionDAG::transferDbgValues(SDValue From, SDValue To,
9723                                      unsigned OffsetInBits, unsigned SizeInBits,
9724                                      bool InvalidateDbg) {
9725   SDNode *FromNode = From.getNode();
9726   SDNode *ToNode = To.getNode();
9727   assert(FromNode && ToNode && "Can't modify dbg values");
9728 
9729   // PR35338
9730   // TODO: assert(From != To && "Redundant dbg value transfer");
9731   // TODO: assert(FromNode != ToNode && "Intranode dbg value transfer");
9732   if (From == To || FromNode == ToNode)
9733     return;
9734 
9735   if (!FromNode->getHasDebugValue())
9736     return;
9737 
9738   SDDbgOperand FromLocOp =
9739       SDDbgOperand::fromNode(From.getNode(), From.getResNo());
9740   SDDbgOperand ToLocOp = SDDbgOperand::fromNode(To.getNode(), To.getResNo());
9741 
9742   SmallVector<SDDbgValue *, 2> ClonedDVs;
9743   for (SDDbgValue *Dbg : GetDbgValues(FromNode)) {
9744     if (Dbg->isInvalidated())
9745       continue;
9746 
9747     // TODO: assert(!Dbg->isInvalidated() && "Transfer of invalid dbg value");
9748 
9749     // Create a new location ops vector that is equal to the old vector, but
9750     // with each instance of FromLocOp replaced with ToLocOp.
9751     bool Changed = false;
9752     auto NewLocOps = Dbg->copyLocationOps();
9753     std::replace_if(
9754         NewLocOps.begin(), NewLocOps.end(),
9755         [&Changed, FromLocOp](const SDDbgOperand &Op) {
9756           bool Match = Op == FromLocOp;
9757           Changed |= Match;
9758           return Match;
9759         },
9760         ToLocOp);
9761     // Ignore this SDDbgValue if we didn't find a matching location.
9762     if (!Changed)
9763       continue;
9764 
9765     DIVariable *Var = Dbg->getVariable();
9766     auto *Expr = Dbg->getExpression();
9767     // If a fragment is requested, update the expression.
9768     if (SizeInBits) {
9769       // When splitting a larger (e.g., sign-extended) value whose
9770       // lower bits are described with an SDDbgValue, do not attempt
9771       // to transfer the SDDbgValue to the upper bits.
9772       if (auto FI = Expr->getFragmentInfo())
9773         if (OffsetInBits + SizeInBits > FI->SizeInBits)
9774           continue;
9775       auto Fragment = DIExpression::createFragmentExpression(Expr, OffsetInBits,
9776                                                              SizeInBits);
9777       if (!Fragment)
9778         continue;
9779       Expr = *Fragment;
9780     }
9781 
9782     auto AdditionalDependencies = Dbg->getAdditionalDependencies();
9783     // Clone the SDDbgValue and move it to To.
9784     SDDbgValue *Clone = getDbgValueList(
9785         Var, Expr, NewLocOps, AdditionalDependencies, Dbg->isIndirect(),
9786         Dbg->getDebugLoc(), std::max(ToNode->getIROrder(), Dbg->getOrder()),
9787         Dbg->isVariadic());
9788     ClonedDVs.push_back(Clone);
9789 
9790     if (InvalidateDbg) {
9791       // Invalidate value and indicate the SDDbgValue should not be emitted.
9792       Dbg->setIsInvalidated();
9793       Dbg->setIsEmitted();
9794     }
9795   }
9796 
9797   for (SDDbgValue *Dbg : ClonedDVs) {
9798     assert(is_contained(Dbg->getSDNodes(), ToNode) &&
9799            "Transferred DbgValues should depend on the new SDNode");
9800     AddDbgValue(Dbg, false);
9801   }
9802 }
9803 
9804 void SelectionDAG::salvageDebugInfo(SDNode &N) {
9805   if (!N.getHasDebugValue())
9806     return;
9807 
9808   SmallVector<SDDbgValue *, 2> ClonedDVs;
9809   for (auto DV : GetDbgValues(&N)) {
9810     if (DV->isInvalidated())
9811       continue;
9812     switch (N.getOpcode()) {
9813     default:
9814       break;
9815     case ISD::ADD:
9816       SDValue N0 = N.getOperand(0);
9817       SDValue N1 = N.getOperand(1);
9818       if (!isConstantIntBuildVectorOrConstantInt(N0) &&
9819           isConstantIntBuildVectorOrConstantInt(N1)) {
9820         uint64_t Offset = N.getConstantOperandVal(1);
9821 
9822         // Rewrite an ADD constant node into a DIExpression. Since we are
9823         // performing arithmetic to compute the variable's *value* in the
9824         // DIExpression, we need to mark the expression with a
9825         // DW_OP_stack_value.
9826         auto *DIExpr = DV->getExpression();
9827         auto NewLocOps = DV->copyLocationOps();
9828         bool Changed = false;
9829         for (size_t i = 0; i < NewLocOps.size(); ++i) {
9830           // We're not given a ResNo to compare against because the whole
9831           // node is going away. We know that any ISD::ADD only has one
9832           // result, so we can assume any node match is using the result.
9833           if (NewLocOps[i].getKind() != SDDbgOperand::SDNODE ||
9834               NewLocOps[i].getSDNode() != &N)
9835             continue;
9836           NewLocOps[i] = SDDbgOperand::fromNode(N0.getNode(), N0.getResNo());
9837           SmallVector<uint64_t, 3> ExprOps;
9838           DIExpression::appendOffset(ExprOps, Offset);
9839           DIExpr = DIExpression::appendOpsToArg(DIExpr, ExprOps, i, true);
9840           Changed = true;
9841         }
9842         (void)Changed;
9843         assert(Changed && "Salvage target doesn't use N");
9844 
9845         auto AdditionalDependencies = DV->getAdditionalDependencies();
9846         SDDbgValue *Clone = getDbgValueList(DV->getVariable(), DIExpr,
9847                                             NewLocOps, AdditionalDependencies,
9848                                             DV->isIndirect(), DV->getDebugLoc(),
9849                                             DV->getOrder(), DV->isVariadic());
9850         ClonedDVs.push_back(Clone);
9851         DV->setIsInvalidated();
9852         DV->setIsEmitted();
9853         LLVM_DEBUG(dbgs() << "SALVAGE: Rewriting";
9854                    N0.getNode()->dumprFull(this);
9855                    dbgs() << " into " << *DIExpr << '\n');
9856       }
9857     }
9858   }
9859 
9860   for (SDDbgValue *Dbg : ClonedDVs) {
9861     assert(!Dbg->getSDNodes().empty() &&
9862            "Salvaged DbgValue should depend on a new SDNode");
9863     AddDbgValue(Dbg, false);
9864   }
9865 }
9866 
9867 /// Creates a SDDbgLabel node.
9868 SDDbgLabel *SelectionDAG::getDbgLabel(DILabel *Label,
9869                                       const DebugLoc &DL, unsigned O) {
9870   assert(cast<DILabel>(Label)->isValidLocationForIntrinsic(DL) &&
9871          "Expected inlined-at fields to agree");
9872   return new (DbgInfo->getAlloc()) SDDbgLabel(Label, DL, O);
9873 }
9874 
9875 namespace {
9876 
9877 /// RAUWUpdateListener - Helper for ReplaceAllUsesWith - When the node
9878 /// pointed to by a use iterator is deleted, increment the use iterator
9879 /// so that it doesn't dangle.
9880 ///
9881 class RAUWUpdateListener : public SelectionDAG::DAGUpdateListener {
9882   SDNode::use_iterator &UI;
9883   SDNode::use_iterator &UE;
9884 
9885   void NodeDeleted(SDNode *N, SDNode *E) override {
9886     // Increment the iterator as needed.
9887     while (UI != UE && N == *UI)
9888       ++UI;
9889   }
9890 
9891 public:
9892   RAUWUpdateListener(SelectionDAG &d,
9893                      SDNode::use_iterator &ui,
9894                      SDNode::use_iterator &ue)
9895     : SelectionDAG::DAGUpdateListener(d), UI(ui), UE(ue) {}
9896 };
9897 
9898 } // end anonymous namespace
9899 
9900 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
9901 /// This can cause recursive merging of nodes in the DAG.
9902 ///
9903 /// This version assumes From has a single result value.
9904 ///
9905 void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To) {
9906   SDNode *From = FromN.getNode();
9907   assert(From->getNumValues() == 1 && FromN.getResNo() == 0 &&
9908          "Cannot replace with this method!");
9909   assert(From != To.getNode() && "Cannot replace uses of with self");
9910 
9911   // Preserve Debug Values
9912   transferDbgValues(FromN, To);
9913 
9914   // Iterate over all the existing uses of From. New uses will be added
9915   // to the beginning of the use list, which we avoid visiting.
9916   // This specifically avoids visiting uses of From that arise while the
9917   // replacement is happening, because any such uses would be the result
9918   // of CSE: If an existing node looks like From after one of its operands
9919   // is replaced by To, we don't want to replace of all its users with To
9920   // too. See PR3018 for more info.
9921   SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
9922   RAUWUpdateListener Listener(*this, UI, UE);
9923   while (UI != UE) {
9924     SDNode *User = *UI;
9925 
9926     // This node is about to morph, remove its old self from the CSE maps.
9927     RemoveNodeFromCSEMaps(User);
9928 
9929     // A user can appear in a use list multiple times, and when this
9930     // happens the uses are usually next to each other in the list.
9931     // To help reduce the number of CSE recomputations, process all
9932     // the uses of this user that we can find this way.
9933     do {
9934       SDUse &Use = UI.getUse();
9935       ++UI;
9936       Use.set(To);
9937       if (To->isDivergent() != From->isDivergent())
9938         updateDivergence(User);
9939     } while (UI != UE && *UI == User);
9940     // Now that we have modified User, add it back to the CSE maps.  If it
9941     // already exists there, recursively merge the results together.
9942     AddModifiedNodeToCSEMaps(User);
9943   }
9944 
9945   // If we just RAUW'd the root, take note.
9946   if (FromN == getRoot())
9947     setRoot(To);
9948 }
9949 
9950 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
9951 /// This can cause recursive merging of nodes in the DAG.
9952 ///
9953 /// This version assumes that for each value of From, there is a
9954 /// corresponding value in To in the same position with the same type.
9955 ///
9956 void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To) {
9957 #ifndef NDEBUG
9958   for (unsigned i = 0, e = From->getNumValues(); i != e; ++i)
9959     assert((!From->hasAnyUseOfValue(i) ||
9960             From->getValueType(i) == To->getValueType(i)) &&
9961            "Cannot use this version of ReplaceAllUsesWith!");
9962 #endif
9963 
9964   // Handle the trivial case.
9965   if (From == To)
9966     return;
9967 
9968   // Preserve Debug Info. Only do this if there's a use.
9969   for (unsigned i = 0, e = From->getNumValues(); i != e; ++i)
9970     if (From->hasAnyUseOfValue(i)) {
9971       assert((i < To->getNumValues()) && "Invalid To location");
9972       transferDbgValues(SDValue(From, i), SDValue(To, i));
9973     }
9974 
9975   // Iterate over just the existing users of From. See the comments in
9976   // the ReplaceAllUsesWith above.
9977   SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
9978   RAUWUpdateListener Listener(*this, UI, UE);
9979   while (UI != UE) {
9980     SDNode *User = *UI;
9981 
9982     // This node is about to morph, remove its old self from the CSE maps.
9983     RemoveNodeFromCSEMaps(User);
9984 
9985     // A user can appear in a use list multiple times, and when this
9986     // happens the uses are usually next to each other in the list.
9987     // To help reduce the number of CSE recomputations, process all
9988     // the uses of this user that we can find this way.
9989     do {
9990       SDUse &Use = UI.getUse();
9991       ++UI;
9992       Use.setNode(To);
9993       if (To->isDivergent() != From->isDivergent())
9994         updateDivergence(User);
9995     } while (UI != UE && *UI == User);
9996 
9997     // Now that we have modified User, add it back to the CSE maps.  If it
9998     // already exists there, recursively merge the results together.
9999     AddModifiedNodeToCSEMaps(User);
10000   }
10001 
10002   // If we just RAUW'd the root, take note.
10003   if (From == getRoot().getNode())
10004     setRoot(SDValue(To, getRoot().getResNo()));
10005 }
10006 
10007 /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
10008 /// This can cause recursive merging of nodes in the DAG.
10009 ///
10010 /// This version can replace From with any result values.  To must match the
10011 /// number and types of values returned by From.
10012 void SelectionDAG::ReplaceAllUsesWith(SDNode *From, const SDValue *To) {
10013   if (From->getNumValues() == 1)  // Handle the simple case efficiently.
10014     return ReplaceAllUsesWith(SDValue(From, 0), To[0]);
10015 
10016   // Preserve Debug Info.
10017   for (unsigned i = 0, e = From->getNumValues(); i != e; ++i)
10018     transferDbgValues(SDValue(From, i), To[i]);
10019 
10020   // Iterate over just the existing users of From. See the comments in
10021   // the ReplaceAllUsesWith above.
10022   SDNode::use_iterator UI = From->use_begin(), UE = From->use_end();
10023   RAUWUpdateListener Listener(*this, UI, UE);
10024   while (UI != UE) {
10025     SDNode *User = *UI;
10026 
10027     // This node is about to morph, remove its old self from the CSE maps.
10028     RemoveNodeFromCSEMaps(User);
10029 
10030     // A user can appear in a use list multiple times, and when this happens the
10031     // uses are usually next to each other in the list.  To help reduce the
10032     // number of CSE and divergence recomputations, process all the uses of this
10033     // user that we can find this way.
10034     bool To_IsDivergent = false;
10035     do {
10036       SDUse &Use = UI.getUse();
10037       const SDValue &ToOp = To[Use.getResNo()];
10038       ++UI;
10039       Use.set(ToOp);
10040       To_IsDivergent |= ToOp->isDivergent();
10041     } while (UI != UE && *UI == User);
10042 
10043     if (To_IsDivergent != From->isDivergent())
10044       updateDivergence(User);
10045 
10046     // Now that we have modified User, add it back to the CSE maps.  If it
10047     // already exists there, recursively merge the results together.
10048     AddModifiedNodeToCSEMaps(User);
10049   }
10050 
10051   // If we just RAUW'd the root, take note.
10052   if (From == getRoot().getNode())
10053     setRoot(SDValue(To[getRoot().getResNo()]));
10054 }
10055 
10056 /// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
10057 /// uses of other values produced by From.getNode() alone.  The Deleted
10058 /// vector is handled the same way as for ReplaceAllUsesWith.
10059 void SelectionDAG::ReplaceAllUsesOfValueWith(SDValue From, SDValue To){
10060   // Handle the really simple, really trivial case efficiently.
10061   if (From == To) return;
10062 
10063   // Handle the simple, trivial, case efficiently.
10064   if (From.getNode()->getNumValues() == 1) {
10065     ReplaceAllUsesWith(From, To);
10066     return;
10067   }
10068 
10069   // Preserve Debug Info.
10070   transferDbgValues(From, To);
10071 
10072   // Iterate over just the existing users of From. See the comments in
10073   // the ReplaceAllUsesWith above.
10074   SDNode::use_iterator UI = From.getNode()->use_begin(),
10075                        UE = From.getNode()->use_end();
10076   RAUWUpdateListener Listener(*this, UI, UE);
10077   while (UI != UE) {
10078     SDNode *User = *UI;
10079     bool UserRemovedFromCSEMaps = false;
10080 
10081     // A user can appear in a use list multiple times, and when this
10082     // happens the uses are usually next to each other in the list.
10083     // To help reduce the number of CSE recomputations, process all
10084     // the uses of this user that we can find this way.
10085     do {
10086       SDUse &Use = UI.getUse();
10087 
10088       // Skip uses of different values from the same node.
10089       if (Use.getResNo() != From.getResNo()) {
10090         ++UI;
10091         continue;
10092       }
10093 
10094       // If this node hasn't been modified yet, it's still in the CSE maps,
10095       // so remove its old self from the CSE maps.
10096       if (!UserRemovedFromCSEMaps) {
10097         RemoveNodeFromCSEMaps(User);
10098         UserRemovedFromCSEMaps = true;
10099       }
10100 
10101       ++UI;
10102       Use.set(To);
10103       if (To->isDivergent() != From->isDivergent())
10104         updateDivergence(User);
10105     } while (UI != UE && *UI == User);
10106     // We are iterating over all uses of the From node, so if a use
10107     // doesn't use the specific value, no changes are made.
10108     if (!UserRemovedFromCSEMaps)
10109       continue;
10110 
10111     // Now that we have modified User, add it back to the CSE maps.  If it
10112     // already exists there, recursively merge the results together.
10113     AddModifiedNodeToCSEMaps(User);
10114   }
10115 
10116   // If we just RAUW'd the root, take note.
10117   if (From == getRoot())
10118     setRoot(To);
10119 }
10120 
10121 namespace {
10122 
10123 /// UseMemo - This class is used by SelectionDAG::ReplaceAllUsesOfValuesWith
10124 /// to record information about a use.
10125 struct UseMemo {
10126   SDNode *User;
10127   unsigned Index;
10128   SDUse *Use;
10129 };
10130 
10131 /// operator< - Sort Memos by User.
10132 bool operator<(const UseMemo &L, const UseMemo &R) {
10133   return (intptr_t)L.User < (intptr_t)R.User;
10134 }
10135 
10136 /// RAUOVWUpdateListener - Helper for ReplaceAllUsesOfValuesWith - When the node
10137 /// pointed to by a UseMemo is deleted, set the User to nullptr to indicate that
10138 /// the node already has been taken care of recursively.
10139 class RAUOVWUpdateListener : public SelectionDAG::DAGUpdateListener {
10140   SmallVector<UseMemo, 4> &Uses;
10141 
10142   void NodeDeleted(SDNode *N, SDNode *E) override {
10143     for (UseMemo &Memo : Uses)
10144       if (Memo.User == N)
10145         Memo.User = nullptr;
10146   }
10147 
10148 public:
10149   RAUOVWUpdateListener(SelectionDAG &d, SmallVector<UseMemo, 4> &uses)
10150       : SelectionDAG::DAGUpdateListener(d), Uses(uses) {}
10151 };
10152 
10153 } // end anonymous namespace
10154 
10155 bool SelectionDAG::calculateDivergence(SDNode *N) {
10156   if (TLI->isSDNodeAlwaysUniform(N)) {
10157     assert(!TLI->isSDNodeSourceOfDivergence(N, FLI, DA) &&
10158            "Conflicting divergence information!");
10159     return false;
10160   }
10161   if (TLI->isSDNodeSourceOfDivergence(N, FLI, DA))
10162     return true;
10163   for (auto &Op : N->ops()) {
10164     if (Op.Val.getValueType() != MVT::Other && Op.getNode()->isDivergent())
10165       return true;
10166   }
10167   return false;
10168 }
10169 
10170 void SelectionDAG::updateDivergence(SDNode *N) {
10171   SmallVector<SDNode *, 16> Worklist(1, N);
10172   do {
10173     N = Worklist.pop_back_val();
10174     bool IsDivergent = calculateDivergence(N);
10175     if (N->SDNodeBits.IsDivergent != IsDivergent) {
10176       N->SDNodeBits.IsDivergent = IsDivergent;
10177       llvm::append_range(Worklist, N->uses());
10178     }
10179   } while (!Worklist.empty());
10180 }
10181 
10182 void SelectionDAG::CreateTopologicalOrder(std::vector<SDNode *> &Order) {
10183   DenseMap<SDNode *, unsigned> Degree;
10184   Order.reserve(AllNodes.size());
10185   for (auto &N : allnodes()) {
10186     unsigned NOps = N.getNumOperands();
10187     Degree[&N] = NOps;
10188     if (0 == NOps)
10189       Order.push_back(&N);
10190   }
10191   for (size_t I = 0; I != Order.size(); ++I) {
10192     SDNode *N = Order[I];
10193     for (auto U : N->uses()) {
10194       unsigned &UnsortedOps = Degree[U];
10195       if (0 == --UnsortedOps)
10196         Order.push_back(U);
10197     }
10198   }
10199 }
10200 
10201 #ifndef NDEBUG
10202 void SelectionDAG::VerifyDAGDivergence() {
10203   std::vector<SDNode *> TopoOrder;
10204   CreateTopologicalOrder(TopoOrder);
10205   for (auto *N : TopoOrder) {
10206     assert(calculateDivergence(N) == N->isDivergent() &&
10207            "Divergence bit inconsistency detected");
10208   }
10209 }
10210 #endif
10211 
10212 /// ReplaceAllUsesOfValuesWith - Replace any uses of From with To, leaving
10213 /// uses of other values produced by From.getNode() alone.  The same value
10214 /// may appear in both the From and To list.  The Deleted vector is
10215 /// handled the same way as for ReplaceAllUsesWith.
10216 void SelectionDAG::ReplaceAllUsesOfValuesWith(const SDValue *From,
10217                                               const SDValue *To,
10218                                               unsigned Num){
10219   // Handle the simple, trivial case efficiently.
10220   if (Num == 1)
10221     return ReplaceAllUsesOfValueWith(*From, *To);
10222 
10223   transferDbgValues(*From, *To);
10224 
10225   // Read up all the uses and make records of them. This helps
10226   // processing new uses that are introduced during the
10227   // replacement process.
10228   SmallVector<UseMemo, 4> Uses;
10229   for (unsigned i = 0; i != Num; ++i) {
10230     unsigned FromResNo = From[i].getResNo();
10231     SDNode *FromNode = From[i].getNode();
10232     for (SDNode::use_iterator UI = FromNode->use_begin(),
10233          E = FromNode->use_end(); UI != E; ++UI) {
10234       SDUse &Use = UI.getUse();
10235       if (Use.getResNo() == FromResNo) {
10236         UseMemo Memo = { *UI, i, &Use };
10237         Uses.push_back(Memo);
10238       }
10239     }
10240   }
10241 
10242   // Sort the uses, so that all the uses from a given User are together.
10243   llvm::sort(Uses);
10244   RAUOVWUpdateListener Listener(*this, Uses);
10245 
10246   for (unsigned UseIndex = 0, UseIndexEnd = Uses.size();
10247        UseIndex != UseIndexEnd; ) {
10248     // We know that this user uses some value of From.  If it is the right
10249     // value, update it.
10250     SDNode *User = Uses[UseIndex].User;
10251     // If the node has been deleted by recursive CSE updates when updating
10252     // another node, then just skip this entry.
10253     if (User == nullptr) {
10254       ++UseIndex;
10255       continue;
10256     }
10257 
10258     // This node is about to morph, remove its old self from the CSE maps.
10259     RemoveNodeFromCSEMaps(User);
10260 
10261     // The Uses array is sorted, so all the uses for a given User
10262     // are next to each other in the list.
10263     // To help reduce the number of CSE recomputations, process all
10264     // the uses of this user that we can find this way.
10265     do {
10266       unsigned i = Uses[UseIndex].Index;
10267       SDUse &Use = *Uses[UseIndex].Use;
10268       ++UseIndex;
10269 
10270       Use.set(To[i]);
10271     } while (UseIndex != UseIndexEnd && Uses[UseIndex].User == User);
10272 
10273     // Now that we have modified User, add it back to the CSE maps.  If it
10274     // already exists there, recursively merge the results together.
10275     AddModifiedNodeToCSEMaps(User);
10276   }
10277 }
10278 
10279 /// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
10280 /// based on their topological order. It returns the maximum id and a vector
10281 /// of the SDNodes* in assigned order by reference.
10282 unsigned SelectionDAG::AssignTopologicalOrder() {
10283   unsigned DAGSize = 0;
10284 
10285   // SortedPos tracks the progress of the algorithm. Nodes before it are
10286   // sorted, nodes after it are unsorted. When the algorithm completes
10287   // it is at the end of the list.
10288   allnodes_iterator SortedPos = allnodes_begin();
10289 
10290   // Visit all the nodes. Move nodes with no operands to the front of
10291   // the list immediately. Annotate nodes that do have operands with their
10292   // operand count. Before we do this, the Node Id fields of the nodes
10293   // may contain arbitrary values. After, the Node Id fields for nodes
10294   // before SortedPos will contain the topological sort index, and the
10295   // Node Id fields for nodes At SortedPos and after will contain the
10296   // count of outstanding operands.
10297   for (SDNode &N : llvm::make_early_inc_range(allnodes())) {
10298     checkForCycles(&N, this);
10299     unsigned Degree = N.getNumOperands();
10300     if (Degree == 0) {
10301       // A node with no uses, add it to the result array immediately.
10302       N.setNodeId(DAGSize++);
10303       allnodes_iterator Q(&N);
10304       if (Q != SortedPos)
10305         SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q));
10306       assert(SortedPos != AllNodes.end() && "Overran node list");
10307       ++SortedPos;
10308     } else {
10309       // Temporarily use the Node Id as scratch space for the degree count.
10310       N.setNodeId(Degree);
10311     }
10312   }
10313 
10314   // Visit all the nodes. As we iterate, move nodes into sorted order,
10315   // such that by the time the end is reached all nodes will be sorted.
10316   for (SDNode &Node : allnodes()) {
10317     SDNode *N = &Node;
10318     checkForCycles(N, this);
10319     // N is in sorted position, so all its uses have one less operand
10320     // that needs to be sorted.
10321     for (SDNode *P : N->uses()) {
10322       unsigned Degree = P->getNodeId();
10323       assert(Degree != 0 && "Invalid node degree");
10324       --Degree;
10325       if (Degree == 0) {
10326         // All of P's operands are sorted, so P may sorted now.
10327         P->setNodeId(DAGSize++);
10328         if (P->getIterator() != SortedPos)
10329           SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(P));
10330         assert(SortedPos != AllNodes.end() && "Overran node list");
10331         ++SortedPos;
10332       } else {
10333         // Update P's outstanding operand count.
10334         P->setNodeId(Degree);
10335       }
10336     }
10337     if (Node.getIterator() == SortedPos) {
10338 #ifndef NDEBUG
10339       allnodes_iterator I(N);
10340       SDNode *S = &*++I;
10341       dbgs() << "Overran sorted position:\n";
10342       S->dumprFull(this); dbgs() << "\n";
10343       dbgs() << "Checking if this is due to cycles\n";
10344       checkForCycles(this, true);
10345 #endif
10346       llvm_unreachable(nullptr);
10347     }
10348   }
10349 
10350   assert(SortedPos == AllNodes.end() &&
10351          "Topological sort incomplete!");
10352   assert(AllNodes.front().getOpcode() == ISD::EntryToken &&
10353          "First node in topological sort is not the entry token!");
10354   assert(AllNodes.front().getNodeId() == 0 &&
10355          "First node in topological sort has non-zero id!");
10356   assert(AllNodes.front().getNumOperands() == 0 &&
10357          "First node in topological sort has operands!");
10358   assert(AllNodes.back().getNodeId() == (int)DAGSize-1 &&
10359          "Last node in topologic sort has unexpected id!");
10360   assert(AllNodes.back().use_empty() &&
10361          "Last node in topologic sort has users!");
10362   assert(DAGSize == allnodes_size() && "Node count mismatch!");
10363   return DAGSize;
10364 }
10365 
10366 /// AddDbgValue - Add a dbg_value SDNode. If SD is non-null that means the
10367 /// value is produced by SD.
10368 void SelectionDAG::AddDbgValue(SDDbgValue *DB, bool isParameter) {
10369   for (SDNode *SD : DB->getSDNodes()) {
10370     if (!SD)
10371       continue;
10372     assert(DbgInfo->getSDDbgValues(SD).empty() || SD->getHasDebugValue());
10373     SD->setHasDebugValue(true);
10374   }
10375   DbgInfo->add(DB, isParameter);
10376 }
10377 
10378 void SelectionDAG::AddDbgLabel(SDDbgLabel *DB) { DbgInfo->add(DB); }
10379 
10380 SDValue SelectionDAG::makeEquivalentMemoryOrdering(SDValue OldChain,
10381                                                    SDValue NewMemOpChain) {
10382   assert(isa<MemSDNode>(NewMemOpChain) && "Expected a memop node");
10383   assert(NewMemOpChain.getValueType() == MVT::Other && "Expected a token VT");
10384   // The new memory operation must have the same position as the old load in
10385   // terms of memory dependency. Create a TokenFactor for the old load and new
10386   // memory operation and update uses of the old load's output chain to use that
10387   // TokenFactor.
10388   if (OldChain == NewMemOpChain || OldChain.use_empty())
10389     return NewMemOpChain;
10390 
10391   SDValue TokenFactor = getNode(ISD::TokenFactor, SDLoc(OldChain), MVT::Other,
10392                                 OldChain, NewMemOpChain);
10393   ReplaceAllUsesOfValueWith(OldChain, TokenFactor);
10394   UpdateNodeOperands(TokenFactor.getNode(), OldChain, NewMemOpChain);
10395   return TokenFactor;
10396 }
10397 
10398 SDValue SelectionDAG::makeEquivalentMemoryOrdering(LoadSDNode *OldLoad,
10399                                                    SDValue NewMemOp) {
10400   assert(isa<MemSDNode>(NewMemOp.getNode()) && "Expected a memop node");
10401   SDValue OldChain = SDValue(OldLoad, 1);
10402   SDValue NewMemOpChain = NewMemOp.getValue(1);
10403   return makeEquivalentMemoryOrdering(OldChain, NewMemOpChain);
10404 }
10405 
10406 SDValue SelectionDAG::getSymbolFunctionGlobalAddress(SDValue Op,
10407                                                      Function **OutFunction) {
10408   assert(isa<ExternalSymbolSDNode>(Op) && "Node should be an ExternalSymbol");
10409 
10410   auto *Symbol = cast<ExternalSymbolSDNode>(Op)->getSymbol();
10411   auto *Module = MF->getFunction().getParent();
10412   auto *Function = Module->getFunction(Symbol);
10413 
10414   if (OutFunction != nullptr)
10415       *OutFunction = Function;
10416 
10417   if (Function != nullptr) {
10418     auto PtrTy = TLI->getPointerTy(getDataLayout(), Function->getAddressSpace());
10419     return getGlobalAddress(Function, SDLoc(Op), PtrTy);
10420   }
10421 
10422   std::string ErrorStr;
10423   raw_string_ostream ErrorFormatter(ErrorStr);
10424   ErrorFormatter << "Undefined external symbol ";
10425   ErrorFormatter << '"' << Symbol << '"';
10426   report_fatal_error(Twine(ErrorFormatter.str()));
10427 }
10428 
10429 //===----------------------------------------------------------------------===//
10430 //                              SDNode Class
10431 //===----------------------------------------------------------------------===//
10432 
10433 bool llvm::isNullConstant(SDValue V) {
10434   ConstantSDNode *Const = dyn_cast<ConstantSDNode>(V);
10435   return Const != nullptr && Const->isZero();
10436 }
10437 
10438 bool llvm::isNullFPConstant(SDValue V) {
10439   ConstantFPSDNode *Const = dyn_cast<ConstantFPSDNode>(V);
10440   return Const != nullptr && Const->isZero() && !Const->isNegative();
10441 }
10442 
10443 bool llvm::isAllOnesConstant(SDValue V) {
10444   ConstantSDNode *Const = dyn_cast<ConstantSDNode>(V);
10445   return Const != nullptr && Const->isAllOnes();
10446 }
10447 
10448 bool llvm::isOneConstant(SDValue V) {
10449   ConstantSDNode *Const = dyn_cast<ConstantSDNode>(V);
10450   return Const != nullptr && Const->isOne();
10451 }
10452 
10453 bool llvm::isMinSignedConstant(SDValue V) {
10454   ConstantSDNode *Const = dyn_cast<ConstantSDNode>(V);
10455   return Const != nullptr && Const->isMinSignedValue();
10456 }
10457 
10458 SDValue llvm::peekThroughBitcasts(SDValue V) {
10459   while (V.getOpcode() == ISD::BITCAST)
10460     V = V.getOperand(0);
10461   return V;
10462 }
10463 
10464 SDValue llvm::peekThroughOneUseBitcasts(SDValue V) {
10465   while (V.getOpcode() == ISD::BITCAST && V.getOperand(0).hasOneUse())
10466     V = V.getOperand(0);
10467   return V;
10468 }
10469 
10470 SDValue llvm::peekThroughExtractSubvectors(SDValue V) {
10471   while (V.getOpcode() == ISD::EXTRACT_SUBVECTOR)
10472     V = V.getOperand(0);
10473   return V;
10474 }
10475 
10476 bool llvm::isBitwiseNot(SDValue V, bool AllowUndefs) {
10477   if (V.getOpcode() != ISD::XOR)
10478     return false;
10479   V = peekThroughBitcasts(V.getOperand(1));
10480   unsigned NumBits = V.getScalarValueSizeInBits();
10481   ConstantSDNode *C =
10482       isConstOrConstSplat(V, AllowUndefs, /*AllowTruncation*/ true);
10483   return C && (C->getAPIntValue().countTrailingOnes() >= NumBits);
10484 }
10485 
10486 ConstantSDNode *llvm::isConstOrConstSplat(SDValue N, bool AllowUndefs,
10487                                           bool AllowTruncation) {
10488   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N))
10489     return CN;
10490 
10491   // SplatVectors can truncate their operands. Ignore that case here unless
10492   // AllowTruncation is set.
10493   if (N->getOpcode() == ISD::SPLAT_VECTOR) {
10494     EVT VecEltVT = N->getValueType(0).getVectorElementType();
10495     if (auto *CN = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
10496       EVT CVT = CN->getValueType(0);
10497       assert(CVT.bitsGE(VecEltVT) && "Illegal splat_vector element extension");
10498       if (AllowTruncation || CVT == VecEltVT)
10499         return CN;
10500     }
10501   }
10502 
10503   if (BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N)) {
10504     BitVector UndefElements;
10505     ConstantSDNode *CN = BV->getConstantSplatNode(&UndefElements);
10506 
10507     // BuildVectors can truncate their operands. Ignore that case here unless
10508     // AllowTruncation is set.
10509     if (CN && (UndefElements.none() || AllowUndefs)) {
10510       EVT CVT = CN->getValueType(0);
10511       EVT NSVT = N.getValueType().getScalarType();
10512       assert(CVT.bitsGE(NSVT) && "Illegal build vector element extension");
10513       if (AllowTruncation || (CVT == NSVT))
10514         return CN;
10515     }
10516   }
10517 
10518   return nullptr;
10519 }
10520 
10521 ConstantSDNode *llvm::isConstOrConstSplat(SDValue N, const APInt &DemandedElts,
10522                                           bool AllowUndefs,
10523                                           bool AllowTruncation) {
10524   if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N))
10525     return CN;
10526 
10527   if (BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N)) {
10528     BitVector UndefElements;
10529     ConstantSDNode *CN = BV->getConstantSplatNode(DemandedElts, &UndefElements);
10530 
10531     // BuildVectors can truncate their operands. Ignore that case here unless
10532     // AllowTruncation is set.
10533     if (CN && (UndefElements.none() || AllowUndefs)) {
10534       EVT CVT = CN->getValueType(0);
10535       EVT NSVT = N.getValueType().getScalarType();
10536       assert(CVT.bitsGE(NSVT) && "Illegal build vector element extension");
10537       if (AllowTruncation || (CVT == NSVT))
10538         return CN;
10539     }
10540   }
10541 
10542   return nullptr;
10543 }
10544 
10545 ConstantFPSDNode *llvm::isConstOrConstSplatFP(SDValue N, bool AllowUndefs) {
10546   if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N))
10547     return CN;
10548 
10549   if (BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N)) {
10550     BitVector UndefElements;
10551     ConstantFPSDNode *CN = BV->getConstantFPSplatNode(&UndefElements);
10552     if (CN && (UndefElements.none() || AllowUndefs))
10553       return CN;
10554   }
10555 
10556   if (N.getOpcode() == ISD::SPLAT_VECTOR)
10557     if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N.getOperand(0)))
10558       return CN;
10559 
10560   return nullptr;
10561 }
10562 
10563 ConstantFPSDNode *llvm::isConstOrConstSplatFP(SDValue N,
10564                                               const APInt &DemandedElts,
10565                                               bool AllowUndefs) {
10566   if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(N))
10567     return CN;
10568 
10569   if (BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N)) {
10570     BitVector UndefElements;
10571     ConstantFPSDNode *CN =
10572         BV->getConstantFPSplatNode(DemandedElts, &UndefElements);
10573     if (CN && (UndefElements.none() || AllowUndefs))
10574       return CN;
10575   }
10576 
10577   return nullptr;
10578 }
10579 
10580 bool llvm::isNullOrNullSplat(SDValue N, bool AllowUndefs) {
10581   // TODO: may want to use peekThroughBitcast() here.
10582   ConstantSDNode *C =
10583       isConstOrConstSplat(N, AllowUndefs, /*AllowTruncation=*/true);
10584   return C && C->isZero();
10585 }
10586 
10587 bool llvm::isOneOrOneSplat(SDValue N, bool AllowUndefs) {
10588   // TODO: may want to use peekThroughBitcast() here.
10589   unsigned BitWidth = N.getScalarValueSizeInBits();
10590   ConstantSDNode *C = isConstOrConstSplat(N, AllowUndefs);
10591   return C && C->isOne() && C->getValueSizeInBits(0) == BitWidth;
10592 }
10593 
10594 bool llvm::isAllOnesOrAllOnesSplat(SDValue N, bool AllowUndefs) {
10595   N = peekThroughBitcasts(N);
10596   unsigned BitWidth = N.getScalarValueSizeInBits();
10597   ConstantSDNode *C = isConstOrConstSplat(N, AllowUndefs);
10598   return C && C->isAllOnes() && C->getValueSizeInBits(0) == BitWidth;
10599 }
10600 
10601 HandleSDNode::~HandleSDNode() {
10602   DropOperands();
10603 }
10604 
10605 GlobalAddressSDNode::GlobalAddressSDNode(unsigned Opc, unsigned Order,
10606                                          const DebugLoc &DL,
10607                                          const GlobalValue *GA, EVT VT,
10608                                          int64_t o, unsigned TF)
10609     : SDNode(Opc, Order, DL, getSDVTList(VT)), Offset(o), TargetFlags(TF) {
10610   TheGlobal = GA;
10611 }
10612 
10613 AddrSpaceCastSDNode::AddrSpaceCastSDNode(unsigned Order, const DebugLoc &dl,
10614                                          EVT VT, unsigned SrcAS,
10615                                          unsigned DestAS)
10616     : SDNode(ISD::ADDRSPACECAST, Order, dl, getSDVTList(VT)),
10617       SrcAddrSpace(SrcAS), DestAddrSpace(DestAS) {}
10618 
10619 MemSDNode::MemSDNode(unsigned Opc, unsigned Order, const DebugLoc &dl,
10620                      SDVTList VTs, EVT memvt, MachineMemOperand *mmo)
10621     : SDNode(Opc, Order, dl, VTs), MemoryVT(memvt), MMO(mmo) {
10622   MemSDNodeBits.IsVolatile = MMO->isVolatile();
10623   MemSDNodeBits.IsNonTemporal = MMO->isNonTemporal();
10624   MemSDNodeBits.IsDereferenceable = MMO->isDereferenceable();
10625   MemSDNodeBits.IsInvariant = MMO->isInvariant();
10626 
10627   // We check here that the size of the memory operand fits within the size of
10628   // the MMO. This is because the MMO might indicate only a possible address
10629   // range instead of specifying the affected memory addresses precisely.
10630   // TODO: Make MachineMemOperands aware of scalable vectors.
10631   assert(memvt.getStoreSize().getKnownMinSize() <= MMO->getSize() &&
10632          "Size mismatch!");
10633 }
10634 
10635 /// Profile - Gather unique data for the node.
10636 ///
10637 void SDNode::Profile(FoldingSetNodeID &ID) const {
10638   AddNodeIDNode(ID, this);
10639 }
10640 
10641 namespace {
10642 
10643   struct EVTArray {
10644     std::vector<EVT> VTs;
10645 
10646     EVTArray() {
10647       VTs.reserve(MVT::VALUETYPE_SIZE);
10648       for (unsigned i = 0; i < MVT::VALUETYPE_SIZE; ++i)
10649         VTs.push_back(MVT((MVT::SimpleValueType)i));
10650     }
10651   };
10652 
10653 } // end anonymous namespace
10654 
10655 static ManagedStatic<std::set<EVT, EVT::compareRawBits>> EVTs;
10656 static ManagedStatic<EVTArray> SimpleVTArray;
10657 static ManagedStatic<sys::SmartMutex<true>> VTMutex;
10658 
10659 /// getValueTypeList - Return a pointer to the specified value type.
10660 ///
10661 const EVT *SDNode::getValueTypeList(EVT VT) {
10662   if (VT.isExtended()) {
10663     sys::SmartScopedLock<true> Lock(*VTMutex);
10664     return &(*EVTs->insert(VT).first);
10665   }
10666   assert(VT.getSimpleVT() < MVT::VALUETYPE_SIZE && "Value type out of range!");
10667   return &SimpleVTArray->VTs[VT.getSimpleVT().SimpleTy];
10668 }
10669 
10670 /// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
10671 /// indicated value.  This method ignores uses of other values defined by this
10672 /// operation.
10673 bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
10674   assert(Value < getNumValues() && "Bad value!");
10675 
10676   // TODO: Only iterate over uses of a given value of the node
10677   for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
10678     if (UI.getUse().getResNo() == Value) {
10679       if (NUses == 0)
10680         return false;
10681       --NUses;
10682     }
10683   }
10684 
10685   // Found exactly the right number of uses?
10686   return NUses == 0;
10687 }
10688 
10689 /// hasAnyUseOfValue - Return true if there are any use of the indicated
10690 /// value. This method ignores uses of other values defined by this operation.
10691 bool SDNode::hasAnyUseOfValue(unsigned Value) const {
10692   assert(Value < getNumValues() && "Bad value!");
10693 
10694   for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI)
10695     if (UI.getUse().getResNo() == Value)
10696       return true;
10697 
10698   return false;
10699 }
10700 
10701 /// isOnlyUserOf - Return true if this node is the only use of N.
10702 bool SDNode::isOnlyUserOf(const SDNode *N) const {
10703   bool Seen = false;
10704   for (const SDNode *User : N->uses()) {
10705     if (User == this)
10706       Seen = true;
10707     else
10708       return false;
10709   }
10710 
10711   return Seen;
10712 }
10713 
10714 /// Return true if the only users of N are contained in Nodes.
10715 bool SDNode::areOnlyUsersOf(ArrayRef<const SDNode *> Nodes, const SDNode *N) {
10716   bool Seen = false;
10717   for (const SDNode *User : N->uses()) {
10718     if (llvm::is_contained(Nodes, User))
10719       Seen = true;
10720     else
10721       return false;
10722   }
10723 
10724   return Seen;
10725 }
10726 
10727 /// isOperand - Return true if this node is an operand of N.
10728 bool SDValue::isOperandOf(const SDNode *N) const {
10729   return is_contained(N->op_values(), *this);
10730 }
10731 
10732 bool SDNode::isOperandOf(const SDNode *N) const {
10733   return any_of(N->op_values(),
10734                 [this](SDValue Op) { return this == Op.getNode(); });
10735 }
10736 
10737 /// reachesChainWithoutSideEffects - Return true if this operand (which must
10738 /// be a chain) reaches the specified operand without crossing any
10739 /// side-effecting instructions on any chain path.  In practice, this looks
10740 /// through token factors and non-volatile loads.  In order to remain efficient,
10741 /// this only looks a couple of nodes in, it does not do an exhaustive search.
10742 ///
10743 /// Note that we only need to examine chains when we're searching for
10744 /// side-effects; SelectionDAG requires that all side-effects are represented
10745 /// by chains, even if another operand would force a specific ordering. This
10746 /// constraint is necessary to allow transformations like splitting loads.
10747 bool SDValue::reachesChainWithoutSideEffects(SDValue Dest,
10748                                              unsigned Depth) const {
10749   if (*this == Dest) return true;
10750 
10751   // Don't search too deeply, we just want to be able to see through
10752   // TokenFactor's etc.
10753   if (Depth == 0) return false;
10754 
10755   // If this is a token factor, all inputs to the TF happen in parallel.
10756   if (getOpcode() == ISD::TokenFactor) {
10757     // First, try a shallow search.
10758     if (is_contained((*this)->ops(), Dest)) {
10759       // We found the chain we want as an operand of this TokenFactor.
10760       // Essentially, we reach the chain without side-effects if we could
10761       // serialize the TokenFactor into a simple chain of operations with
10762       // Dest as the last operation. This is automatically true if the
10763       // chain has one use: there are no other ordering constraints.
10764       // If the chain has more than one use, we give up: some other
10765       // use of Dest might force a side-effect between Dest and the current
10766       // node.
10767       if (Dest.hasOneUse())
10768         return true;
10769     }
10770     // Next, try a deep search: check whether every operand of the TokenFactor
10771     // reaches Dest.
10772     return llvm::all_of((*this)->ops(), [=](SDValue Op) {
10773       return Op.reachesChainWithoutSideEffects(Dest, Depth - 1);
10774     });
10775   }
10776 
10777   // Loads don't have side effects, look through them.
10778   if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
10779     if (Ld->isUnordered())
10780       return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
10781   }
10782   return false;
10783 }
10784 
10785 bool SDNode::hasPredecessor(const SDNode *N) const {
10786   SmallPtrSet<const SDNode *, 32> Visited;
10787   SmallVector<const SDNode *, 16> Worklist;
10788   Worklist.push_back(this);
10789   return hasPredecessorHelper(N, Visited, Worklist);
10790 }
10791 
10792 void SDNode::intersectFlagsWith(const SDNodeFlags Flags) {
10793   this->Flags.intersectWith(Flags);
10794 }
10795 
10796 SDValue
10797 SelectionDAG::matchBinOpReduction(SDNode *Extract, ISD::NodeType &BinOp,
10798                                   ArrayRef<ISD::NodeType> CandidateBinOps,
10799                                   bool AllowPartials) {
10800   // The pattern must end in an extract from index 0.
10801   if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
10802       !isNullConstant(Extract->getOperand(1)))
10803     return SDValue();
10804 
10805   // Match against one of the candidate binary ops.
10806   SDValue Op = Extract->getOperand(0);
10807   if (llvm::none_of(CandidateBinOps, [Op](ISD::NodeType BinOp) {
10808         return Op.getOpcode() == unsigned(BinOp);
10809       }))
10810     return SDValue();
10811 
10812   // Floating-point reductions may require relaxed constraints on the final step
10813   // of the reduction because they may reorder intermediate operations.
10814   unsigned CandidateBinOp = Op.getOpcode();
10815   if (Op.getValueType().isFloatingPoint()) {
10816     SDNodeFlags Flags = Op->getFlags();
10817     switch (CandidateBinOp) {
10818     case ISD::FADD:
10819       if (!Flags.hasNoSignedZeros() || !Flags.hasAllowReassociation())
10820         return SDValue();
10821       break;
10822     default:
10823       llvm_unreachable("Unhandled FP opcode for binop reduction");
10824     }
10825   }
10826 
10827   // Matching failed - attempt to see if we did enough stages that a partial
10828   // reduction from a subvector is possible.
10829   auto PartialReduction = [&](SDValue Op, unsigned NumSubElts) {
10830     if (!AllowPartials || !Op)
10831       return SDValue();
10832     EVT OpVT = Op.getValueType();
10833     EVT OpSVT = OpVT.getScalarType();
10834     EVT SubVT = EVT::getVectorVT(*getContext(), OpSVT, NumSubElts);
10835     if (!TLI->isExtractSubvectorCheap(SubVT, OpVT, 0))
10836       return SDValue();
10837     BinOp = (ISD::NodeType)CandidateBinOp;
10838     return getNode(ISD::EXTRACT_SUBVECTOR, SDLoc(Op), SubVT, Op,
10839                    getVectorIdxConstant(0, SDLoc(Op)));
10840   };
10841 
10842   // At each stage, we're looking for something that looks like:
10843   // %s = shufflevector <8 x i32> %op, <8 x i32> undef,
10844   //                    <8 x i32> <i32 2, i32 3, i32 undef, i32 undef,
10845   //                               i32 undef, i32 undef, i32 undef, i32 undef>
10846   // %a = binop <8 x i32> %op, %s
10847   // Where the mask changes according to the stage. E.g. for a 3-stage pyramid,
10848   // we expect something like:
10849   // <4,5,6,7,u,u,u,u>
10850   // <2,3,u,u,u,u,u,u>
10851   // <1,u,u,u,u,u,u,u>
10852   // While a partial reduction match would be:
10853   // <2,3,u,u,u,u,u,u>
10854   // <1,u,u,u,u,u,u,u>
10855   unsigned Stages = Log2_32(Op.getValueType().getVectorNumElements());
10856   SDValue PrevOp;
10857   for (unsigned i = 0; i < Stages; ++i) {
10858     unsigned MaskEnd = (1 << i);
10859 
10860     if (Op.getOpcode() != CandidateBinOp)
10861       return PartialReduction(PrevOp, MaskEnd);
10862 
10863     SDValue Op0 = Op.getOperand(0);
10864     SDValue Op1 = Op.getOperand(1);
10865 
10866     ShuffleVectorSDNode *Shuffle = dyn_cast<ShuffleVectorSDNode>(Op0);
10867     if (Shuffle) {
10868       Op = Op1;
10869     } else {
10870       Shuffle = dyn_cast<ShuffleVectorSDNode>(Op1);
10871       Op = Op0;
10872     }
10873 
10874     // The first operand of the shuffle should be the same as the other operand
10875     // of the binop.
10876     if (!Shuffle || Shuffle->getOperand(0) != Op)
10877       return PartialReduction(PrevOp, MaskEnd);
10878 
10879     // Verify the shuffle has the expected (at this stage of the pyramid) mask.
10880     for (int Index = 0; Index < (int)MaskEnd; ++Index)
10881       if (Shuffle->getMaskElt(Index) != (int)(MaskEnd + Index))
10882         return PartialReduction(PrevOp, MaskEnd);
10883 
10884     PrevOp = Op;
10885   }
10886 
10887   // Handle subvector reductions, which tend to appear after the shuffle
10888   // reduction stages.
10889   while (Op.getOpcode() == CandidateBinOp) {
10890     unsigned NumElts = Op.getValueType().getVectorNumElements();
10891     SDValue Op0 = Op.getOperand(0);
10892     SDValue Op1 = Op.getOperand(1);
10893     if (Op0.getOpcode() != ISD::EXTRACT_SUBVECTOR ||
10894         Op1.getOpcode() != ISD::EXTRACT_SUBVECTOR ||
10895         Op0.getOperand(0) != Op1.getOperand(0))
10896       break;
10897     SDValue Src = Op0.getOperand(0);
10898     unsigned NumSrcElts = Src.getValueType().getVectorNumElements();
10899     if (NumSrcElts != (2 * NumElts))
10900       break;
10901     if (!(Op0.getConstantOperandAPInt(1) == 0 &&
10902           Op1.getConstantOperandAPInt(1) == NumElts) &&
10903         !(Op1.getConstantOperandAPInt(1) == 0 &&
10904           Op0.getConstantOperandAPInt(1) == NumElts))
10905       break;
10906     Op = Src;
10907   }
10908 
10909   BinOp = (ISD::NodeType)CandidateBinOp;
10910   return Op;
10911 }
10912 
10913 SDValue SelectionDAG::UnrollVectorOp(SDNode *N, unsigned ResNE) {
10914   assert(N->getNumValues() == 1 &&
10915          "Can't unroll a vector with multiple results!");
10916 
10917   EVT VT = N->getValueType(0);
10918   unsigned NE = VT.getVectorNumElements();
10919   EVT EltVT = VT.getVectorElementType();
10920   SDLoc dl(N);
10921 
10922   SmallVector<SDValue, 8> Scalars;
10923   SmallVector<SDValue, 4> Operands(N->getNumOperands());
10924 
10925   // If ResNE is 0, fully unroll the vector op.
10926   if (ResNE == 0)
10927     ResNE = NE;
10928   else if (NE > ResNE)
10929     NE = ResNE;
10930 
10931   unsigned i;
10932   for (i= 0; i != NE; ++i) {
10933     for (unsigned j = 0, e = N->getNumOperands(); j != e; ++j) {
10934       SDValue Operand = N->getOperand(j);
10935       EVT OperandVT = Operand.getValueType();
10936       if (OperandVT.isVector()) {
10937         // A vector operand; extract a single element.
10938         EVT OperandEltVT = OperandVT.getVectorElementType();
10939         Operands[j] = getNode(ISD::EXTRACT_VECTOR_ELT, dl, OperandEltVT,
10940                               Operand, getVectorIdxConstant(i, dl));
10941       } else {
10942         // A scalar operand; just use it as is.
10943         Operands[j] = Operand;
10944       }
10945     }
10946 
10947     switch (N->getOpcode()) {
10948     default: {
10949       Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, Operands,
10950                                 N->getFlags()));
10951       break;
10952     }
10953     case ISD::VSELECT:
10954       Scalars.push_back(getNode(ISD::SELECT, dl, EltVT, Operands));
10955       break;
10956     case ISD::SHL:
10957     case ISD::SRA:
10958     case ISD::SRL:
10959     case ISD::ROTL:
10960     case ISD::ROTR:
10961       Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, Operands[0],
10962                                getShiftAmountOperand(Operands[0].getValueType(),
10963                                                      Operands[1])));
10964       break;
10965     case ISD::SIGN_EXTEND_INREG: {
10966       EVT ExtVT = cast<VTSDNode>(Operands[1])->getVT().getVectorElementType();
10967       Scalars.push_back(getNode(N->getOpcode(), dl, EltVT,
10968                                 Operands[0],
10969                                 getValueType(ExtVT)));
10970     }
10971     }
10972   }
10973 
10974   for (; i < ResNE; ++i)
10975     Scalars.push_back(getUNDEF(EltVT));
10976 
10977   EVT VecVT = EVT::getVectorVT(*getContext(), EltVT, ResNE);
10978   return getBuildVector(VecVT, dl, Scalars);
10979 }
10980 
10981 std::pair<SDValue, SDValue> SelectionDAG::UnrollVectorOverflowOp(
10982     SDNode *N, unsigned ResNE) {
10983   unsigned Opcode = N->getOpcode();
10984   assert((Opcode == ISD::UADDO || Opcode == ISD::SADDO ||
10985           Opcode == ISD::USUBO || Opcode == ISD::SSUBO ||
10986           Opcode == ISD::UMULO || Opcode == ISD::SMULO) &&
10987          "Expected an overflow opcode");
10988 
10989   EVT ResVT = N->getValueType(0);
10990   EVT OvVT = N->getValueType(1);
10991   EVT ResEltVT = ResVT.getVectorElementType();
10992   EVT OvEltVT = OvVT.getVectorElementType();
10993   SDLoc dl(N);
10994 
10995   // If ResNE is 0, fully unroll the vector op.
10996   unsigned NE = ResVT.getVectorNumElements();
10997   if (ResNE == 0)
10998     ResNE = NE;
10999   else if (NE > ResNE)
11000     NE = ResNE;
11001 
11002   SmallVector<SDValue, 8> LHSScalars;
11003   SmallVector<SDValue, 8> RHSScalars;
11004   ExtractVectorElements(N->getOperand(0), LHSScalars, 0, NE);
11005   ExtractVectorElements(N->getOperand(1), RHSScalars, 0, NE);
11006 
11007   EVT SVT = TLI->getSetCCResultType(getDataLayout(), *getContext(), ResEltVT);
11008   SDVTList VTs = getVTList(ResEltVT, SVT);
11009   SmallVector<SDValue, 8> ResScalars;
11010   SmallVector<SDValue, 8> OvScalars;
11011   for (unsigned i = 0; i < NE; ++i) {
11012     SDValue Res = getNode(Opcode, dl, VTs, LHSScalars[i], RHSScalars[i]);
11013     SDValue Ov =
11014         getSelect(dl, OvEltVT, Res.getValue(1),
11015                   getBoolConstant(true, dl, OvEltVT, ResVT),
11016                   getConstant(0, dl, OvEltVT));
11017 
11018     ResScalars.push_back(Res);
11019     OvScalars.push_back(Ov);
11020   }
11021 
11022   ResScalars.append(ResNE - NE, getUNDEF(ResEltVT));
11023   OvScalars.append(ResNE - NE, getUNDEF(OvEltVT));
11024 
11025   EVT NewResVT = EVT::getVectorVT(*getContext(), ResEltVT, ResNE);
11026   EVT NewOvVT = EVT::getVectorVT(*getContext(), OvEltVT, ResNE);
11027   return std::make_pair(getBuildVector(NewResVT, dl, ResScalars),
11028                         getBuildVector(NewOvVT, dl, OvScalars));
11029 }
11030 
11031 bool SelectionDAG::areNonVolatileConsecutiveLoads(LoadSDNode *LD,
11032                                                   LoadSDNode *Base,
11033                                                   unsigned Bytes,
11034                                                   int Dist) const {
11035   if (LD->isVolatile() || Base->isVolatile())
11036     return false;
11037   // TODO: probably too restrictive for atomics, revisit
11038   if (!LD->isSimple())
11039     return false;
11040   if (LD->isIndexed() || Base->isIndexed())
11041     return false;
11042   if (LD->getChain() != Base->getChain())
11043     return false;
11044   EVT VT = LD->getValueType(0);
11045   if (VT.getSizeInBits() / 8 != Bytes)
11046     return false;
11047 
11048   auto BaseLocDecomp = BaseIndexOffset::match(Base, *this);
11049   auto LocDecomp = BaseIndexOffset::match(LD, *this);
11050 
11051   int64_t Offset = 0;
11052   if (BaseLocDecomp.equalBaseIndex(LocDecomp, *this, Offset))
11053     return (Dist * Bytes == Offset);
11054   return false;
11055 }
11056 
11057 /// InferPtrAlignment - Infer alignment of a load / store address. Return None
11058 /// if it cannot be inferred.
11059 MaybeAlign SelectionDAG::InferPtrAlign(SDValue Ptr) const {
11060   // If this is a GlobalAddress + cst, return the alignment.
11061   const GlobalValue *GV = nullptr;
11062   int64_t GVOffset = 0;
11063   if (TLI->isGAPlusOffset(Ptr.getNode(), GV, GVOffset)) {
11064     unsigned PtrWidth = getDataLayout().getPointerTypeSizeInBits(GV->getType());
11065     KnownBits Known(PtrWidth);
11066     llvm::computeKnownBits(GV, Known, getDataLayout());
11067     unsigned AlignBits = Known.countMinTrailingZeros();
11068     if (AlignBits)
11069       return commonAlignment(Align(1ull << std::min(31U, AlignBits)), GVOffset);
11070   }
11071 
11072   // If this is a direct reference to a stack slot, use information about the
11073   // stack slot's alignment.
11074   int FrameIdx = INT_MIN;
11075   int64_t FrameOffset = 0;
11076   if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr)) {
11077     FrameIdx = FI->getIndex();
11078   } else if (isBaseWithConstantOffset(Ptr) &&
11079              isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
11080     // Handle FI+Cst
11081     FrameIdx = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
11082     FrameOffset = Ptr.getConstantOperandVal(1);
11083   }
11084 
11085   if (FrameIdx != INT_MIN) {
11086     const MachineFrameInfo &MFI = getMachineFunction().getFrameInfo();
11087     return commonAlignment(MFI.getObjectAlign(FrameIdx), FrameOffset);
11088   }
11089 
11090   return None;
11091 }
11092 
11093 /// GetSplitDestVTs - Compute the VTs needed for the low/hi parts of a type
11094 /// which is split (or expanded) into two not necessarily identical pieces.
11095 std::pair<EVT, EVT> SelectionDAG::GetSplitDestVTs(const EVT &VT) const {
11096   // Currently all types are split in half.
11097   EVT LoVT, HiVT;
11098   if (!VT.isVector())
11099     LoVT = HiVT = TLI->getTypeToTransformTo(*getContext(), VT);
11100   else
11101     LoVT = HiVT = VT.getHalfNumVectorElementsVT(*getContext());
11102 
11103   return std::make_pair(LoVT, HiVT);
11104 }
11105 
11106 /// GetDependentSplitDestVTs - Compute the VTs needed for the low/hi parts of a
11107 /// type, dependent on an enveloping VT that has been split into two identical
11108 /// pieces. Sets the HiIsEmpty flag when hi type has zero storage size.
11109 std::pair<EVT, EVT>
11110 SelectionDAG::GetDependentSplitDestVTs(const EVT &VT, const EVT &EnvVT,
11111                                        bool *HiIsEmpty) const {
11112   EVT EltTp = VT.getVectorElementType();
11113   // Examples:
11114   //   custom VL=8  with enveloping VL=8/8 yields 8/0 (hi empty)
11115   //   custom VL=9  with enveloping VL=8/8 yields 8/1
11116   //   custom VL=10 with enveloping VL=8/8 yields 8/2
11117   //   etc.
11118   ElementCount VTNumElts = VT.getVectorElementCount();
11119   ElementCount EnvNumElts = EnvVT.getVectorElementCount();
11120   assert(VTNumElts.isScalable() == EnvNumElts.isScalable() &&
11121          "Mixing fixed width and scalable vectors when enveloping a type");
11122   EVT LoVT, HiVT;
11123   if (VTNumElts.getKnownMinValue() > EnvNumElts.getKnownMinValue()) {
11124     LoVT = EVT::getVectorVT(*getContext(), EltTp, EnvNumElts);
11125     HiVT = EVT::getVectorVT(*getContext(), EltTp, VTNumElts - EnvNumElts);
11126     *HiIsEmpty = false;
11127   } else {
11128     // Flag that hi type has zero storage size, but return split envelop type
11129     // (this would be easier if vector types with zero elements were allowed).
11130     LoVT = EVT::getVectorVT(*getContext(), EltTp, VTNumElts);
11131     HiVT = EVT::getVectorVT(*getContext(), EltTp, EnvNumElts);
11132     *HiIsEmpty = true;
11133   }
11134   return std::make_pair(LoVT, HiVT);
11135 }
11136 
11137 /// SplitVector - Split the vector with EXTRACT_SUBVECTOR and return the
11138 /// low/high part.
11139 std::pair<SDValue, SDValue>
11140 SelectionDAG::SplitVector(const SDValue &N, const SDLoc &DL, const EVT &LoVT,
11141                           const EVT &HiVT) {
11142   assert(LoVT.isScalableVector() == HiVT.isScalableVector() &&
11143          LoVT.isScalableVector() == N.getValueType().isScalableVector() &&
11144          "Splitting vector with an invalid mixture of fixed and scalable "
11145          "vector types");
11146   assert(LoVT.getVectorMinNumElements() + HiVT.getVectorMinNumElements() <=
11147              N.getValueType().getVectorMinNumElements() &&
11148          "More vector elements requested than available!");
11149   SDValue Lo, Hi;
11150   Lo =
11151       getNode(ISD::EXTRACT_SUBVECTOR, DL, LoVT, N, getVectorIdxConstant(0, DL));
11152   // For scalable vectors it is safe to use LoVT.getVectorMinNumElements()
11153   // (rather than having to use ElementCount), because EXTRACT_SUBVECTOR scales
11154   // IDX with the runtime scaling factor of the result vector type. For
11155   // fixed-width result vectors, that runtime scaling factor is 1.
11156   Hi = getNode(ISD::EXTRACT_SUBVECTOR, DL, HiVT, N,
11157                getVectorIdxConstant(LoVT.getVectorMinNumElements(), DL));
11158   return std::make_pair(Lo, Hi);
11159 }
11160 
11161 std::pair<SDValue, SDValue> SelectionDAG::SplitEVL(SDValue N, EVT VecVT,
11162                                                    const SDLoc &DL) {
11163   // Split the vector length parameter.
11164   // %evl -> umin(%evl, %halfnumelts) and usubsat(%evl - %halfnumelts).
11165   EVT VT = N.getValueType();
11166   assert(VecVT.getVectorElementCount().isKnownEven() &&
11167          "Expecting the mask to be an evenly-sized vector");
11168   unsigned HalfMinNumElts = VecVT.getVectorMinNumElements() / 2;
11169   SDValue HalfNumElts =
11170       VecVT.isFixedLengthVector()
11171           ? getConstant(HalfMinNumElts, DL, VT)
11172           : getVScale(DL, VT, APInt(VT.getScalarSizeInBits(), HalfMinNumElts));
11173   SDValue Lo = getNode(ISD::UMIN, DL, VT, N, HalfNumElts);
11174   SDValue Hi = getNode(ISD::USUBSAT, DL, VT, N, HalfNumElts);
11175   return std::make_pair(Lo, Hi);
11176 }
11177 
11178 /// Widen the vector up to the next power of two using INSERT_SUBVECTOR.
11179 SDValue SelectionDAG::WidenVector(const SDValue &N, const SDLoc &DL) {
11180   EVT VT = N.getValueType();
11181   EVT WideVT = EVT::getVectorVT(*getContext(), VT.getVectorElementType(),
11182                                 NextPowerOf2(VT.getVectorNumElements()));
11183   return getNode(ISD::INSERT_SUBVECTOR, DL, WideVT, getUNDEF(WideVT), N,
11184                  getVectorIdxConstant(0, DL));
11185 }
11186 
11187 void SelectionDAG::ExtractVectorElements(SDValue Op,
11188                                          SmallVectorImpl<SDValue> &Args,
11189                                          unsigned Start, unsigned Count,
11190                                          EVT EltVT) {
11191   EVT VT = Op.getValueType();
11192   if (Count == 0)
11193     Count = VT.getVectorNumElements();
11194   if (EltVT == EVT())
11195     EltVT = VT.getVectorElementType();
11196   SDLoc SL(Op);
11197   for (unsigned i = Start, e = Start + Count; i != e; ++i) {
11198     Args.push_back(getNode(ISD::EXTRACT_VECTOR_ELT, SL, EltVT, Op,
11199                            getVectorIdxConstant(i, SL)));
11200   }
11201 }
11202 
11203 // getAddressSpace - Return the address space this GlobalAddress belongs to.
11204 unsigned GlobalAddressSDNode::getAddressSpace() const {
11205   return getGlobal()->getType()->getAddressSpace();
11206 }
11207 
11208 Type *ConstantPoolSDNode::getType() const {
11209   if (isMachineConstantPoolEntry())
11210     return Val.MachineCPVal->getType();
11211   return Val.ConstVal->getType();
11212 }
11213 
11214 bool BuildVectorSDNode::isConstantSplat(APInt &SplatValue, APInt &SplatUndef,
11215                                         unsigned &SplatBitSize,
11216                                         bool &HasAnyUndefs,
11217                                         unsigned MinSplatBits,
11218                                         bool IsBigEndian) const {
11219   EVT VT = getValueType(0);
11220   assert(VT.isVector() && "Expected a vector type");
11221   unsigned VecWidth = VT.getSizeInBits();
11222   if (MinSplatBits > VecWidth)
11223     return false;
11224 
11225   // FIXME: The widths are based on this node's type, but build vectors can
11226   // truncate their operands.
11227   SplatValue = APInt(VecWidth, 0);
11228   SplatUndef = APInt(VecWidth, 0);
11229 
11230   // Get the bits. Bits with undefined values (when the corresponding element
11231   // of the vector is an ISD::UNDEF value) are set in SplatUndef and cleared
11232   // in SplatValue. If any of the values are not constant, give up and return
11233   // false.
11234   unsigned int NumOps = getNumOperands();
11235   assert(NumOps > 0 && "isConstantSplat has 0-size build vector");
11236   unsigned EltWidth = VT.getScalarSizeInBits();
11237 
11238   for (unsigned j = 0; j < NumOps; ++j) {
11239     unsigned i = IsBigEndian ? NumOps - 1 - j : j;
11240     SDValue OpVal = getOperand(i);
11241     unsigned BitPos = j * EltWidth;
11242 
11243     if (OpVal.isUndef())
11244       SplatUndef.setBits(BitPos, BitPos + EltWidth);
11245     else if (auto *CN = dyn_cast<ConstantSDNode>(OpVal))
11246       SplatValue.insertBits(CN->getAPIntValue().zextOrTrunc(EltWidth), BitPos);
11247     else if (auto *CN = dyn_cast<ConstantFPSDNode>(OpVal))
11248       SplatValue.insertBits(CN->getValueAPF().bitcastToAPInt(), BitPos);
11249     else
11250       return false;
11251   }
11252 
11253   // The build_vector is all constants or undefs. Find the smallest element
11254   // size that splats the vector.
11255   HasAnyUndefs = (SplatUndef != 0);
11256 
11257   // FIXME: This does not work for vectors with elements less than 8 bits.
11258   while (VecWidth > 8) {
11259     unsigned HalfSize = VecWidth / 2;
11260     APInt HighValue = SplatValue.extractBits(HalfSize, HalfSize);
11261     APInt LowValue = SplatValue.extractBits(HalfSize, 0);
11262     APInt HighUndef = SplatUndef.extractBits(HalfSize, HalfSize);
11263     APInt LowUndef = SplatUndef.extractBits(HalfSize, 0);
11264 
11265     // If the two halves do not match (ignoring undef bits), stop here.
11266     if ((HighValue & ~LowUndef) != (LowValue & ~HighUndef) ||
11267         MinSplatBits > HalfSize)
11268       break;
11269 
11270     SplatValue = HighValue | LowValue;
11271     SplatUndef = HighUndef & LowUndef;
11272 
11273     VecWidth = HalfSize;
11274   }
11275 
11276   SplatBitSize = VecWidth;
11277   return true;
11278 }
11279 
11280 SDValue BuildVectorSDNode::getSplatValue(const APInt &DemandedElts,
11281                                          BitVector *UndefElements) const {
11282   unsigned NumOps = getNumOperands();
11283   if (UndefElements) {
11284     UndefElements->clear();
11285     UndefElements->resize(NumOps);
11286   }
11287   assert(NumOps == DemandedElts.getBitWidth() && "Unexpected vector size");
11288   if (!DemandedElts)
11289     return SDValue();
11290   SDValue Splatted;
11291   for (unsigned i = 0; i != NumOps; ++i) {
11292     if (!DemandedElts[i])
11293       continue;
11294     SDValue Op = getOperand(i);
11295     if (Op.isUndef()) {
11296       if (UndefElements)
11297         (*UndefElements)[i] = true;
11298     } else if (!Splatted) {
11299       Splatted = Op;
11300     } else if (Splatted != Op) {
11301       return SDValue();
11302     }
11303   }
11304 
11305   if (!Splatted) {
11306     unsigned FirstDemandedIdx = DemandedElts.countTrailingZeros();
11307     assert(getOperand(FirstDemandedIdx).isUndef() &&
11308            "Can only have a splat without a constant for all undefs.");
11309     return getOperand(FirstDemandedIdx);
11310   }
11311 
11312   return Splatted;
11313 }
11314 
11315 SDValue BuildVectorSDNode::getSplatValue(BitVector *UndefElements) const {
11316   APInt DemandedElts = APInt::getAllOnes(getNumOperands());
11317   return getSplatValue(DemandedElts, UndefElements);
11318 }
11319 
11320 bool BuildVectorSDNode::getRepeatedSequence(const APInt &DemandedElts,
11321                                             SmallVectorImpl<SDValue> &Sequence,
11322                                             BitVector *UndefElements) const {
11323   unsigned NumOps = getNumOperands();
11324   Sequence.clear();
11325   if (UndefElements) {
11326     UndefElements->clear();
11327     UndefElements->resize(NumOps);
11328   }
11329   assert(NumOps == DemandedElts.getBitWidth() && "Unexpected vector size");
11330   if (!DemandedElts || NumOps < 2 || !isPowerOf2_32(NumOps))
11331     return false;
11332 
11333   // Set the undefs even if we don't find a sequence (like getSplatValue).
11334   if (UndefElements)
11335     for (unsigned I = 0; I != NumOps; ++I)
11336       if (DemandedElts[I] && getOperand(I).isUndef())
11337         (*UndefElements)[I] = true;
11338 
11339   // Iteratively widen the sequence length looking for repetitions.
11340   for (unsigned SeqLen = 1; SeqLen < NumOps; SeqLen *= 2) {
11341     Sequence.append(SeqLen, SDValue());
11342     for (unsigned I = 0; I != NumOps; ++I) {
11343       if (!DemandedElts[I])
11344         continue;
11345       SDValue &SeqOp = Sequence[I % SeqLen];
11346       SDValue Op = getOperand(I);
11347       if (Op.isUndef()) {
11348         if (!SeqOp)
11349           SeqOp = Op;
11350         continue;
11351       }
11352       if (SeqOp && !SeqOp.isUndef() && SeqOp != Op) {
11353         Sequence.clear();
11354         break;
11355       }
11356       SeqOp = Op;
11357     }
11358     if (!Sequence.empty())
11359       return true;
11360   }
11361 
11362   assert(Sequence.empty() && "Failed to empty non-repeating sequence pattern");
11363   return false;
11364 }
11365 
11366 bool BuildVectorSDNode::getRepeatedSequence(SmallVectorImpl<SDValue> &Sequence,
11367                                             BitVector *UndefElements) const {
11368   APInt DemandedElts = APInt::getAllOnes(getNumOperands());
11369   return getRepeatedSequence(DemandedElts, Sequence, UndefElements);
11370 }
11371 
11372 ConstantSDNode *
11373 BuildVectorSDNode::getConstantSplatNode(const APInt &DemandedElts,
11374                                         BitVector *UndefElements) const {
11375   return dyn_cast_or_null<ConstantSDNode>(
11376       getSplatValue(DemandedElts, UndefElements));
11377 }
11378 
11379 ConstantSDNode *
11380 BuildVectorSDNode::getConstantSplatNode(BitVector *UndefElements) const {
11381   return dyn_cast_or_null<ConstantSDNode>(getSplatValue(UndefElements));
11382 }
11383 
11384 ConstantFPSDNode *
11385 BuildVectorSDNode::getConstantFPSplatNode(const APInt &DemandedElts,
11386                                           BitVector *UndefElements) const {
11387   return dyn_cast_or_null<ConstantFPSDNode>(
11388       getSplatValue(DemandedElts, UndefElements));
11389 }
11390 
11391 ConstantFPSDNode *
11392 BuildVectorSDNode::getConstantFPSplatNode(BitVector *UndefElements) const {
11393   return dyn_cast_or_null<ConstantFPSDNode>(getSplatValue(UndefElements));
11394 }
11395 
11396 int32_t
11397 BuildVectorSDNode::getConstantFPSplatPow2ToLog2Int(BitVector *UndefElements,
11398                                                    uint32_t BitWidth) const {
11399   if (ConstantFPSDNode *CN =
11400           dyn_cast_or_null<ConstantFPSDNode>(getSplatValue(UndefElements))) {
11401     bool IsExact;
11402     APSInt IntVal(BitWidth);
11403     const APFloat &APF = CN->getValueAPF();
11404     if (APF.convertToInteger(IntVal, APFloat::rmTowardZero, &IsExact) !=
11405             APFloat::opOK ||
11406         !IsExact)
11407       return -1;
11408 
11409     return IntVal.exactLogBase2();
11410   }
11411   return -1;
11412 }
11413 
11414 bool BuildVectorSDNode::getConstantRawBits(
11415     bool IsLittleEndian, unsigned DstEltSizeInBits,
11416     SmallVectorImpl<APInt> &RawBitElements, BitVector &UndefElements) const {
11417   // Early-out if this contains anything but Undef/Constant/ConstantFP.
11418   if (!isConstant())
11419     return false;
11420 
11421   unsigned NumSrcOps = getNumOperands();
11422   unsigned SrcEltSizeInBits = getValueType(0).getScalarSizeInBits();
11423   assert(((NumSrcOps * SrcEltSizeInBits) % DstEltSizeInBits) == 0 &&
11424          "Invalid bitcast scale");
11425 
11426   // Extract raw src bits.
11427   SmallVector<APInt> SrcBitElements(NumSrcOps,
11428                                     APInt::getNullValue(SrcEltSizeInBits));
11429   BitVector SrcUndeElements(NumSrcOps, false);
11430 
11431   for (unsigned I = 0; I != NumSrcOps; ++I) {
11432     SDValue Op = getOperand(I);
11433     if (Op.isUndef()) {
11434       SrcUndeElements.set(I);
11435       continue;
11436     }
11437     auto *CInt = dyn_cast<ConstantSDNode>(Op);
11438     auto *CFP = dyn_cast<ConstantFPSDNode>(Op);
11439     assert((CInt || CFP) && "Unknown constant");
11440     SrcBitElements[I] =
11441         CInt ? CInt->getAPIntValue().truncOrSelf(SrcEltSizeInBits)
11442              : CFP->getValueAPF().bitcastToAPInt();
11443   }
11444 
11445   // Recast to dst width.
11446   recastRawBits(IsLittleEndian, DstEltSizeInBits, RawBitElements,
11447                 SrcBitElements, UndefElements, SrcUndeElements);
11448   return true;
11449 }
11450 
11451 void BuildVectorSDNode::recastRawBits(bool IsLittleEndian,
11452                                       unsigned DstEltSizeInBits,
11453                                       SmallVectorImpl<APInt> &DstBitElements,
11454                                       ArrayRef<APInt> SrcBitElements,
11455                                       BitVector &DstUndefElements,
11456                                       const BitVector &SrcUndefElements) {
11457   unsigned NumSrcOps = SrcBitElements.size();
11458   unsigned SrcEltSizeInBits = SrcBitElements[0].getBitWidth();
11459   assert(((NumSrcOps * SrcEltSizeInBits) % DstEltSizeInBits) == 0 &&
11460          "Invalid bitcast scale");
11461   assert(NumSrcOps == SrcUndefElements.size() &&
11462          "Vector size mismatch");
11463 
11464   unsigned NumDstOps = (NumSrcOps * SrcEltSizeInBits) / DstEltSizeInBits;
11465   DstUndefElements.clear();
11466   DstUndefElements.resize(NumDstOps, false);
11467   DstBitElements.assign(NumDstOps, APInt::getNullValue(DstEltSizeInBits));
11468 
11469   // Concatenate src elements constant bits together into dst element.
11470   if (SrcEltSizeInBits <= DstEltSizeInBits) {
11471     unsigned Scale = DstEltSizeInBits / SrcEltSizeInBits;
11472     for (unsigned I = 0; I != NumDstOps; ++I) {
11473       DstUndefElements.set(I);
11474       APInt &DstBits = DstBitElements[I];
11475       for (unsigned J = 0; J != Scale; ++J) {
11476         unsigned Idx = (I * Scale) + (IsLittleEndian ? J : (Scale - J - 1));
11477         if (SrcUndefElements[Idx])
11478           continue;
11479         DstUndefElements.reset(I);
11480         const APInt &SrcBits = SrcBitElements[Idx];
11481         assert(SrcBits.getBitWidth() == SrcEltSizeInBits &&
11482                "Illegal constant bitwidths");
11483         DstBits.insertBits(SrcBits, J * SrcEltSizeInBits);
11484       }
11485     }
11486     return;
11487   }
11488 
11489   // Split src element constant bits into dst elements.
11490   unsigned Scale = SrcEltSizeInBits / DstEltSizeInBits;
11491   for (unsigned I = 0; I != NumSrcOps; ++I) {
11492     if (SrcUndefElements[I]) {
11493       DstUndefElements.set(I * Scale, (I + 1) * Scale);
11494       continue;
11495     }
11496     const APInt &SrcBits = SrcBitElements[I];
11497     for (unsigned J = 0; J != Scale; ++J) {
11498       unsigned Idx = (I * Scale) + (IsLittleEndian ? J : (Scale - J - 1));
11499       APInt &DstBits = DstBitElements[Idx];
11500       DstBits = SrcBits.extractBits(DstEltSizeInBits, J * DstEltSizeInBits);
11501     }
11502   }
11503 }
11504 
11505 bool BuildVectorSDNode::isConstant() const {
11506   for (const SDValue &Op : op_values()) {
11507     unsigned Opc = Op.getOpcode();
11508     if (Opc != ISD::UNDEF && Opc != ISD::Constant && Opc != ISD::ConstantFP)
11509       return false;
11510   }
11511   return true;
11512 }
11513 
11514 bool ShuffleVectorSDNode::isSplatMask(const int *Mask, EVT VT) {
11515   // Find the first non-undef value in the shuffle mask.
11516   unsigned i, e;
11517   for (i = 0, e = VT.getVectorNumElements(); i != e && Mask[i] < 0; ++i)
11518     /* search */;
11519 
11520   // If all elements are undefined, this shuffle can be considered a splat
11521   // (although it should eventually get simplified away completely).
11522   if (i == e)
11523     return true;
11524 
11525   // Make sure all remaining elements are either undef or the same as the first
11526   // non-undef value.
11527   for (int Idx = Mask[i]; i != e; ++i)
11528     if (Mask[i] >= 0 && Mask[i] != Idx)
11529       return false;
11530   return true;
11531 }
11532 
11533 // Returns the SDNode if it is a constant integer BuildVector
11534 // or constant integer.
11535 SDNode *SelectionDAG::isConstantIntBuildVectorOrConstantInt(SDValue N) const {
11536   if (isa<ConstantSDNode>(N))
11537     return N.getNode();
11538   if (ISD::isBuildVectorOfConstantSDNodes(N.getNode()))
11539     return N.getNode();
11540   // Treat a GlobalAddress supporting constant offset folding as a
11541   // constant integer.
11542   if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N))
11543     if (GA->getOpcode() == ISD::GlobalAddress &&
11544         TLI->isOffsetFoldingLegal(GA))
11545       return GA;
11546   if ((N.getOpcode() == ISD::SPLAT_VECTOR) &&
11547       isa<ConstantSDNode>(N.getOperand(0)))
11548     return N.getNode();
11549   return nullptr;
11550 }
11551 
11552 // Returns the SDNode if it is a constant float BuildVector
11553 // or constant float.
11554 SDNode *SelectionDAG::isConstantFPBuildVectorOrConstantFP(SDValue N) const {
11555   if (isa<ConstantFPSDNode>(N))
11556     return N.getNode();
11557 
11558   if (ISD::isBuildVectorOfConstantFPSDNodes(N.getNode()))
11559     return N.getNode();
11560 
11561   if ((N.getOpcode() == ISD::SPLAT_VECTOR) &&
11562       isa<ConstantFPSDNode>(N.getOperand(0)))
11563     return N.getNode();
11564 
11565   return nullptr;
11566 }
11567 
11568 void SelectionDAG::createOperands(SDNode *Node, ArrayRef<SDValue> Vals) {
11569   assert(!Node->OperandList && "Node already has operands");
11570   assert(SDNode::getMaxNumOperands() >= Vals.size() &&
11571          "too many operands to fit into SDNode");
11572   SDUse *Ops = OperandRecycler.allocate(
11573       ArrayRecycler<SDUse>::Capacity::get(Vals.size()), OperandAllocator);
11574 
11575   bool IsDivergent = false;
11576   for (unsigned I = 0; I != Vals.size(); ++I) {
11577     Ops[I].setUser(Node);
11578     Ops[I].setInitial(Vals[I]);
11579     if (Ops[I].Val.getValueType() != MVT::Other) // Skip Chain. It does not carry divergence.
11580       IsDivergent |= Ops[I].getNode()->isDivergent();
11581   }
11582   Node->NumOperands = Vals.size();
11583   Node->OperandList = Ops;
11584   if (!TLI->isSDNodeAlwaysUniform(Node)) {
11585     IsDivergent |= TLI->isSDNodeSourceOfDivergence(Node, FLI, DA);
11586     Node->SDNodeBits.IsDivergent = IsDivergent;
11587   }
11588   checkForCycles(Node);
11589 }
11590 
11591 SDValue SelectionDAG::getTokenFactor(const SDLoc &DL,
11592                                      SmallVectorImpl<SDValue> &Vals) {
11593   size_t Limit = SDNode::getMaxNumOperands();
11594   while (Vals.size() > Limit) {
11595     unsigned SliceIdx = Vals.size() - Limit;
11596     auto ExtractedTFs = ArrayRef<SDValue>(Vals).slice(SliceIdx, Limit);
11597     SDValue NewTF = getNode(ISD::TokenFactor, DL, MVT::Other, ExtractedTFs);
11598     Vals.erase(Vals.begin() + SliceIdx, Vals.end());
11599     Vals.emplace_back(NewTF);
11600   }
11601   return getNode(ISD::TokenFactor, DL, MVT::Other, Vals);
11602 }
11603 
11604 SDValue SelectionDAG::getNeutralElement(unsigned Opcode, const SDLoc &DL,
11605                                         EVT VT, SDNodeFlags Flags) {
11606   switch (Opcode) {
11607   default:
11608     return SDValue();
11609   case ISD::ADD:
11610   case ISD::OR:
11611   case ISD::XOR:
11612   case ISD::UMAX:
11613     return getConstant(0, DL, VT);
11614   case ISD::MUL:
11615     return getConstant(1, DL, VT);
11616   case ISD::AND:
11617   case ISD::UMIN:
11618     return getAllOnesConstant(DL, VT);
11619   case ISD::SMAX:
11620     return getConstant(APInt::getSignedMinValue(VT.getSizeInBits()), DL, VT);
11621   case ISD::SMIN:
11622     return getConstant(APInt::getSignedMaxValue(VT.getSizeInBits()), DL, VT);
11623   case ISD::FADD:
11624     return getConstantFP(-0.0, DL, VT);
11625   case ISD::FMUL:
11626     return getConstantFP(1.0, DL, VT);
11627   case ISD::FMINNUM:
11628   case ISD::FMAXNUM: {
11629     // Neutral element for fminnum is NaN, Inf or FLT_MAX, depending on FMF.
11630     const fltSemantics &Semantics = EVTToAPFloatSemantics(VT);
11631     APFloat NeutralAF = !Flags.hasNoNaNs() ? APFloat::getQNaN(Semantics) :
11632                         !Flags.hasNoInfs() ? APFloat::getInf(Semantics) :
11633                         APFloat::getLargest(Semantics);
11634     if (Opcode == ISD::FMAXNUM)
11635       NeutralAF.changeSign();
11636 
11637     return getConstantFP(NeutralAF, DL, VT);
11638   }
11639   }
11640 }
11641 
11642 #ifndef NDEBUG
11643 static void checkForCyclesHelper(const SDNode *N,
11644                                  SmallPtrSetImpl<const SDNode*> &Visited,
11645                                  SmallPtrSetImpl<const SDNode*> &Checked,
11646                                  const llvm::SelectionDAG *DAG) {
11647   // If this node has already been checked, don't check it again.
11648   if (Checked.count(N))
11649     return;
11650 
11651   // If a node has already been visited on this depth-first walk, reject it as
11652   // a cycle.
11653   if (!Visited.insert(N).second) {
11654     errs() << "Detected cycle in SelectionDAG\n";
11655     dbgs() << "Offending node:\n";
11656     N->dumprFull(DAG); dbgs() << "\n";
11657     abort();
11658   }
11659 
11660   for (const SDValue &Op : N->op_values())
11661     checkForCyclesHelper(Op.getNode(), Visited, Checked, DAG);
11662 
11663   Checked.insert(N);
11664   Visited.erase(N);
11665 }
11666 #endif
11667 
11668 void llvm::checkForCycles(const llvm::SDNode *N,
11669                           const llvm::SelectionDAG *DAG,
11670                           bool force) {
11671 #ifndef NDEBUG
11672   bool check = force;
11673 #ifdef EXPENSIVE_CHECKS
11674   check = true;
11675 #endif  // EXPENSIVE_CHECKS
11676   if (check) {
11677     assert(N && "Checking nonexistent SDNode");
11678     SmallPtrSet<const SDNode*, 32> visited;
11679     SmallPtrSet<const SDNode*, 32> checked;
11680     checkForCyclesHelper(N, visited, checked, DAG);
11681   }
11682 #endif  // !NDEBUG
11683 }
11684 
11685 void llvm::checkForCycles(const llvm::SelectionDAG *DAG, bool force) {
11686   checkForCycles(DAG->getRoot().getNode(), DAG, force);
11687 }
11688