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