SelectionDAG.cpp revision cf576fd7d2bf5153fce9e451b1fcb1456a49c6bc
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#include "llvm/CodeGen/SelectionDAG.h"
14#include "llvm/Constants.h"
15#include "llvm/Analysis/ValueTracking.h"
16#include "llvm/GlobalAlias.h"
17#include "llvm/GlobalVariable.h"
18#include "llvm/Intrinsics.h"
19#include "llvm/DerivedTypes.h"
20#include "llvm/Assembly/Writer.h"
21#include "llvm/CallingConv.h"
22#include "llvm/CodeGen/MachineBasicBlock.h"
23#include "llvm/CodeGen/MachineConstantPool.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
25#include "llvm/CodeGen/MachineModuleInfo.h"
26#include "llvm/CodeGen/PseudoSourceValue.h"
27#include "llvm/Target/TargetRegisterInfo.h"
28#include "llvm/Target/TargetData.h"
29#include "llvm/Target/TargetLowering.h"
30#include "llvm/Target/TargetInstrInfo.h"
31#include "llvm/Target/TargetMachine.h"
32#include "llvm/Support/CommandLine.h"
33#include "llvm/Support/MathExtras.h"
34#include "llvm/Support/raw_ostream.h"
35#include "llvm/ADT/SetVector.h"
36#include "llvm/ADT/SmallPtrSet.h"
37#include "llvm/ADT/SmallSet.h"
38#include "llvm/ADT/SmallVector.h"
39#include "llvm/ADT/StringExtras.h"
40#include <algorithm>
41#include <cmath>
42using namespace llvm;
43
44/// makeVTList - Return an instance of the SDVTList struct initialized with the
45/// specified members.
46static SDVTList makeVTList(const MVT *VTs, unsigned NumVTs) {
47  SDVTList Res = {VTs, NumVTs};
48  return Res;
49}
50
51static const fltSemantics *MVTToAPFloatSemantics(MVT VT) {
52  switch (VT.getSimpleVT()) {
53  default: assert(0 && "Unknown FP format");
54  case MVT::f32:     return &APFloat::IEEEsingle;
55  case MVT::f64:     return &APFloat::IEEEdouble;
56  case MVT::f80:     return &APFloat::x87DoubleExtended;
57  case MVT::f128:    return &APFloat::IEEEquad;
58  case MVT::ppcf128: return &APFloat::PPCDoubleDouble;
59  }
60}
61
62SelectionDAG::DAGUpdateListener::~DAGUpdateListener() {}
63
64//===----------------------------------------------------------------------===//
65//                              ConstantFPSDNode Class
66//===----------------------------------------------------------------------===//
67
68/// isExactlyValue - We don't rely on operator== working on double values, as
69/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
70/// As such, this method can be used to do an exact bit-for-bit comparison of
71/// two floating point values.
72bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const {
73  return getValueAPF().bitwiseIsEqual(V);
74}
75
76bool ConstantFPSDNode::isValueValidForType(MVT VT,
77                                           const APFloat& Val) {
78  assert(VT.isFloatingPoint() && "Can only convert between FP types");
79
80  // PPC long double cannot be converted to any other type.
81  if (VT == MVT::ppcf128 ||
82      &Val.getSemantics() == &APFloat::PPCDoubleDouble)
83    return false;
84
85  // convert modifies in place, so make a copy.
86  APFloat Val2 = APFloat(Val);
87  bool losesInfo;
88  (void) Val2.convert(*MVTToAPFloatSemantics(VT), APFloat::rmNearestTiesToEven,
89                      &losesInfo);
90  return !losesInfo;
91}
92
93//===----------------------------------------------------------------------===//
94//                              ISD Namespace
95//===----------------------------------------------------------------------===//
96
97/// isBuildVectorAllOnes - Return true if the specified node is a
98/// BUILD_VECTOR where all of the elements are ~0 or undef.
99bool ISD::isBuildVectorAllOnes(const SDNode *N) {
100  // Look through a bit convert.
101  if (N->getOpcode() == ISD::BIT_CONVERT)
102    N = N->getOperand(0).getNode();
103
104  if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
105
106  unsigned i = 0, e = N->getNumOperands();
107
108  // Skip over all of the undef values.
109  while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
110    ++i;
111
112  // Do not accept an all-undef vector.
113  if (i == e) return false;
114
115  // Do not accept build_vectors that aren't all constants or which have non-~0
116  // elements.
117  SDValue NotZero = N->getOperand(i);
118  if (isa<ConstantSDNode>(NotZero)) {
119    if (!cast<ConstantSDNode>(NotZero)->isAllOnesValue())
120      return false;
121  } else if (isa<ConstantFPSDNode>(NotZero)) {
122    if (!cast<ConstantFPSDNode>(NotZero)->getValueAPF().
123                bitcastToAPInt().isAllOnesValue())
124      return false;
125  } else
126    return false;
127
128  // Okay, we have at least one ~0 value, check to see if the rest match or are
129  // undefs.
130  for (++i; i != e; ++i)
131    if (N->getOperand(i) != NotZero &&
132        N->getOperand(i).getOpcode() != ISD::UNDEF)
133      return false;
134  return true;
135}
136
137
138/// isBuildVectorAllZeros - Return true if the specified node is a
139/// BUILD_VECTOR where all of the elements are 0 or undef.
140bool ISD::isBuildVectorAllZeros(const SDNode *N) {
141  // Look through a bit convert.
142  if (N->getOpcode() == ISD::BIT_CONVERT)
143    N = N->getOperand(0).getNode();
144
145  if (N->getOpcode() != ISD::BUILD_VECTOR) return false;
146
147  unsigned i = 0, e = N->getNumOperands();
148
149  // Skip over all of the undef values.
150  while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF)
151    ++i;
152
153  // Do not accept an all-undef vector.
154  if (i == e) return false;
155
156  // Do not accept build_vectors that aren't all constants or which have non-~0
157  // elements.
158  SDValue Zero = N->getOperand(i);
159  if (isa<ConstantSDNode>(Zero)) {
160    if (!cast<ConstantSDNode>(Zero)->isNullValue())
161      return false;
162  } else if (isa<ConstantFPSDNode>(Zero)) {
163    if (!cast<ConstantFPSDNode>(Zero)->getValueAPF().isPosZero())
164      return false;
165  } else
166    return false;
167
168  // Okay, we have at least one ~0 value, check to see if the rest match or are
169  // undefs.
170  for (++i; i != e; ++i)
171    if (N->getOperand(i) != Zero &&
172        N->getOperand(i).getOpcode() != ISD::UNDEF)
173      return false;
174  return true;
175}
176
177/// isScalarToVector - Return true if the specified node is a
178/// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low
179/// element is not an undef.
180bool ISD::isScalarToVector(const SDNode *N) {
181  if (N->getOpcode() == ISD::SCALAR_TO_VECTOR)
182    return true;
183
184  if (N->getOpcode() != ISD::BUILD_VECTOR)
185    return false;
186  if (N->getOperand(0).getOpcode() == ISD::UNDEF)
187    return false;
188  unsigned NumElems = N->getNumOperands();
189  for (unsigned i = 1; i < NumElems; ++i) {
190    SDValue V = N->getOperand(i);
191    if (V.getOpcode() != ISD::UNDEF)
192      return false;
193  }
194  return true;
195}
196
197
198/// isDebugLabel - Return true if the specified node represents a debug
199/// label (i.e. ISD::DBG_LABEL or TargetInstrInfo::DBG_LABEL node).
200bool ISD::isDebugLabel(const SDNode *N) {
201  SDValue Zero;
202  if (N->getOpcode() == ISD::DBG_LABEL)
203    return true;
204  if (N->isMachineOpcode() &&
205      N->getMachineOpcode() == TargetInstrInfo::DBG_LABEL)
206    return true;
207  return false;
208}
209
210/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
211/// when given the operation for (X op Y).
212ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
213  // To perform this operation, we just need to swap the L and G bits of the
214  // operation.
215  unsigned OldL = (Operation >> 2) & 1;
216  unsigned OldG = (Operation >> 1) & 1;
217  return ISD::CondCode((Operation & ~6) |  // Keep the N, U, E bits
218                       (OldL << 1) |       // New G bit
219                       (OldG << 2));       // New L bit.
220}
221
222/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
223/// 'op' is a valid SetCC operation.
224ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
225  unsigned Operation = Op;
226  if (isInteger)
227    Operation ^= 7;   // Flip L, G, E bits, but not U.
228  else
229    Operation ^= 15;  // Flip all of the condition bits.
230
231  if (Operation > ISD::SETTRUE2)
232    Operation &= ~8;  // Don't let N and U bits get set.
233
234  return ISD::CondCode(Operation);
235}
236
237
238/// isSignedOp - For an integer comparison, return 1 if the comparison is a
239/// signed operation and 2 if the result is an unsigned comparison.  Return zero
240/// if the operation does not depend on the sign of the input (setne and seteq).
241static int isSignedOp(ISD::CondCode Opcode) {
242  switch (Opcode) {
243  default: assert(0 && "Illegal integer setcc operation!");
244  case ISD::SETEQ:
245  case ISD::SETNE: return 0;
246  case ISD::SETLT:
247  case ISD::SETLE:
248  case ISD::SETGT:
249  case ISD::SETGE: return 1;
250  case ISD::SETULT:
251  case ISD::SETULE:
252  case ISD::SETUGT:
253  case ISD::SETUGE: return 2;
254  }
255}
256
257/// getSetCCOrOperation - Return the result of a logical OR between different
258/// comparisons of identical values: ((X op1 Y) | (X op2 Y)).  This function
259/// returns SETCC_INVALID if it is not possible to represent the resultant
260/// comparison.
261ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
262                                       bool isInteger) {
263  if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
264    // Cannot fold a signed integer setcc with an unsigned integer setcc.
265    return ISD::SETCC_INVALID;
266
267  unsigned Op = Op1 | Op2;  // Combine all of the condition bits.
268
269  // If the N and U bits get set then the resultant comparison DOES suddenly
270  // care about orderedness, and is true when ordered.
271  if (Op > ISD::SETTRUE2)
272    Op &= ~16;     // Clear the U bit if the N bit is set.
273
274  // Canonicalize illegal integer setcc's.
275  if (isInteger && Op == ISD::SETUNE)  // e.g. SETUGT | SETULT
276    Op = ISD::SETNE;
277
278  return ISD::CondCode(Op);
279}
280
281/// getSetCCAndOperation - Return the result of a logical AND between different
282/// comparisons of identical values: ((X op1 Y) & (X op2 Y)).  This
283/// function returns zero if it is not possible to represent the resultant
284/// comparison.
285ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
286                                        bool isInteger) {
287  if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
288    // Cannot fold a signed setcc with an unsigned setcc.
289    return ISD::SETCC_INVALID;
290
291  // Combine all of the condition bits.
292  ISD::CondCode Result = ISD::CondCode(Op1 & Op2);
293
294  // Canonicalize illegal integer setcc's.
295  if (isInteger) {
296    switch (Result) {
297    default: break;
298    case ISD::SETUO : Result = ISD::SETFALSE; break;  // SETUGT & SETULT
299    case ISD::SETOEQ:                                 // SETEQ  & SETU[LG]E
300    case ISD::SETUEQ: Result = ISD::SETEQ   ; break;  // SETUGE & SETULE
301    case ISD::SETOLT: Result = ISD::SETULT  ; break;  // SETULT & SETNE
302    case ISD::SETOGT: Result = ISD::SETUGT  ; break;  // SETUGT & SETNE
303    }
304  }
305
306  return Result;
307}
308
309const TargetMachine &SelectionDAG::getTarget() const {
310  return MF->getTarget();
311}
312
313//===----------------------------------------------------------------------===//
314//                           SDNode Profile Support
315//===----------------------------------------------------------------------===//
316
317/// AddNodeIDOpcode - Add the node opcode to the NodeID data.
318///
319static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC)  {
320  ID.AddInteger(OpC);
321}
322
323/// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them
324/// solely with their pointer.
325static void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) {
326  ID.AddPointer(VTList.VTs);
327}
328
329/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
330///
331static void AddNodeIDOperands(FoldingSetNodeID &ID,
332                              const SDValue *Ops, unsigned NumOps) {
333  for (; NumOps; --NumOps, ++Ops) {
334    ID.AddPointer(Ops->getNode());
335    ID.AddInteger(Ops->getResNo());
336  }
337}
338
339/// AddNodeIDOperands - Various routines for adding operands to the NodeID data.
340///
341static void AddNodeIDOperands(FoldingSetNodeID &ID,
342                              const SDUse *Ops, unsigned NumOps) {
343  for (; NumOps; --NumOps, ++Ops) {
344    ID.AddPointer(Ops->getVal());
345    ID.AddInteger(Ops->getSDValue().getResNo());
346  }
347}
348
349static void AddNodeIDNode(FoldingSetNodeID &ID,
350                          unsigned short OpC, SDVTList VTList,
351                          const SDValue *OpList, unsigned N) {
352  AddNodeIDOpcode(ID, OpC);
353  AddNodeIDValueTypes(ID, VTList);
354  AddNodeIDOperands(ID, OpList, N);
355}
356
357/// AddNodeIDCustom - If this is an SDNode with special info, add this info to
358/// the NodeID data.
359static void AddNodeIDCustom(FoldingSetNodeID &ID, const SDNode *N) {
360  switch (N->getOpcode()) {
361  default: break;  // Normal nodes don't need extra info.
362  case ISD::ARG_FLAGS:
363    ID.AddInteger(cast<ARG_FLAGSSDNode>(N)->getArgFlags().getRawBits());
364    break;
365  case ISD::TargetConstant:
366  case ISD::Constant:
367    ID.AddPointer(cast<ConstantSDNode>(N)->getConstantIntValue());
368    break;
369  case ISD::TargetConstantFP:
370  case ISD::ConstantFP: {
371    ID.AddPointer(cast<ConstantFPSDNode>(N)->getConstantFPValue());
372    break;
373  }
374  case ISD::TargetGlobalAddress:
375  case ISD::GlobalAddress:
376  case ISD::TargetGlobalTLSAddress:
377  case ISD::GlobalTLSAddress: {
378    const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
379    ID.AddPointer(GA->getGlobal());
380    ID.AddInteger(GA->getOffset());
381    break;
382  }
383  case ISD::BasicBlock:
384    ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock());
385    break;
386  case ISD::Register:
387    ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
388    break;
389  case ISD::DBG_STOPPOINT: {
390    const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(N);
391    ID.AddInteger(DSP->getLine());
392    ID.AddInteger(DSP->getColumn());
393    ID.AddPointer(DSP->getCompileUnit());
394    break;
395  }
396  case ISD::SRCVALUE:
397    ID.AddPointer(cast<SrcValueSDNode>(N)->getValue());
398    break;
399  case ISD::MEMOPERAND: {
400    const MachineMemOperand &MO = cast<MemOperandSDNode>(N)->MO;
401    MO.Profile(ID);
402    break;
403  }
404  case ISD::FrameIndex:
405  case ISD::TargetFrameIndex:
406    ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
407    break;
408  case ISD::JumpTable:
409  case ISD::TargetJumpTable:
410    ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
411    break;
412  case ISD::ConstantPool:
413  case ISD::TargetConstantPool: {
414    const ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N);
415    ID.AddInteger(CP->getAlignment());
416    ID.AddInteger(CP->getOffset());
417    if (CP->isMachineConstantPoolEntry())
418      CP->getMachineCPVal()->AddSelectionDAGCSEId(ID);
419    else
420      ID.AddPointer(CP->getConstVal());
421    break;
422  }
423  case ISD::CALL: {
424    const CallSDNode *Call = cast<CallSDNode>(N);
425    ID.AddInteger(Call->getCallingConv());
426    ID.AddInteger(Call->isVarArg());
427    break;
428  }
429  case ISD::LOAD: {
430    const LoadSDNode *LD = cast<LoadSDNode>(N);
431    ID.AddInteger(LD->getAddressingMode());
432    ID.AddInteger(LD->getExtensionType());
433    ID.AddInteger(LD->getMemoryVT().getRawBits());
434    ID.AddInteger(LD->getRawFlags());
435    break;
436  }
437  case ISD::STORE: {
438    const StoreSDNode *ST = cast<StoreSDNode>(N);
439    ID.AddInteger(ST->getAddressingMode());
440    ID.AddInteger(ST->isTruncatingStore());
441    ID.AddInteger(ST->getMemoryVT().getRawBits());
442    ID.AddInteger(ST->getRawFlags());
443    break;
444  }
445  case ISD::ATOMIC_CMP_SWAP_8:
446  case ISD::ATOMIC_SWAP_8:
447  case ISD::ATOMIC_LOAD_ADD_8:
448  case ISD::ATOMIC_LOAD_SUB_8:
449  case ISD::ATOMIC_LOAD_AND_8:
450  case ISD::ATOMIC_LOAD_OR_8:
451  case ISD::ATOMIC_LOAD_XOR_8:
452  case ISD::ATOMIC_LOAD_NAND_8:
453  case ISD::ATOMIC_LOAD_MIN_8:
454  case ISD::ATOMIC_LOAD_MAX_8:
455  case ISD::ATOMIC_LOAD_UMIN_8:
456  case ISD::ATOMIC_LOAD_UMAX_8:
457  case ISD::ATOMIC_CMP_SWAP_16:
458  case ISD::ATOMIC_SWAP_16:
459  case ISD::ATOMIC_LOAD_ADD_16:
460  case ISD::ATOMIC_LOAD_SUB_16:
461  case ISD::ATOMIC_LOAD_AND_16:
462  case ISD::ATOMIC_LOAD_OR_16:
463  case ISD::ATOMIC_LOAD_XOR_16:
464  case ISD::ATOMIC_LOAD_NAND_16:
465  case ISD::ATOMIC_LOAD_MIN_16:
466  case ISD::ATOMIC_LOAD_MAX_16:
467  case ISD::ATOMIC_LOAD_UMIN_16:
468  case ISD::ATOMIC_LOAD_UMAX_16:
469  case ISD::ATOMIC_CMP_SWAP_32:
470  case ISD::ATOMIC_SWAP_32:
471  case ISD::ATOMIC_LOAD_ADD_32:
472  case ISD::ATOMIC_LOAD_SUB_32:
473  case ISD::ATOMIC_LOAD_AND_32:
474  case ISD::ATOMIC_LOAD_OR_32:
475  case ISD::ATOMIC_LOAD_XOR_32:
476  case ISD::ATOMIC_LOAD_NAND_32:
477  case ISD::ATOMIC_LOAD_MIN_32:
478  case ISD::ATOMIC_LOAD_MAX_32:
479  case ISD::ATOMIC_LOAD_UMIN_32:
480  case ISD::ATOMIC_LOAD_UMAX_32:
481  case ISD::ATOMIC_CMP_SWAP_64:
482  case ISD::ATOMIC_SWAP_64:
483  case ISD::ATOMIC_LOAD_ADD_64:
484  case ISD::ATOMIC_LOAD_SUB_64:
485  case ISD::ATOMIC_LOAD_AND_64:
486  case ISD::ATOMIC_LOAD_OR_64:
487  case ISD::ATOMIC_LOAD_XOR_64:
488  case ISD::ATOMIC_LOAD_NAND_64:
489  case ISD::ATOMIC_LOAD_MIN_64:
490  case ISD::ATOMIC_LOAD_MAX_64:
491  case ISD::ATOMIC_LOAD_UMIN_64:
492  case ISD::ATOMIC_LOAD_UMAX_64: {
493    const AtomicSDNode *AT = cast<AtomicSDNode>(N);
494    ID.AddInteger(AT->getRawFlags());
495    break;
496  }
497  } // end switch (N->getOpcode())
498}
499
500/// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID
501/// data.
502static void AddNodeIDNode(FoldingSetNodeID &ID, const SDNode *N) {
503  AddNodeIDOpcode(ID, N->getOpcode());
504  // Add the return value info.
505  AddNodeIDValueTypes(ID, N->getVTList());
506  // Add the operand info.
507  AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands());
508
509  // Handle SDNode leafs with special info.
510  AddNodeIDCustom(ID, N);
511}
512
513/// encodeMemSDNodeFlags - Generic routine for computing a value for use in
514/// the CSE map that carries both alignment and volatility information.
515///
516static inline unsigned
517encodeMemSDNodeFlags(bool isVolatile, unsigned Alignment) {
518  return isVolatile | ((Log2_32(Alignment) + 1) << 1);
519}
520
521//===----------------------------------------------------------------------===//
522//                              SelectionDAG Class
523//===----------------------------------------------------------------------===//
524
525/// doNotCSE - Return true if CSE should not be performed for this node.
526static bool doNotCSE(SDNode *N) {
527  if (N->getValueType(0) == MVT::Flag)
528    return true; // Never CSE anything that produces a flag.
529
530  switch (N->getOpcode()) {
531  default: break;
532  case ISD::HANDLENODE:
533  case ISD::DBG_LABEL:
534  case ISD::DBG_STOPPOINT:
535  case ISD::EH_LABEL:
536  case ISD::DECLARE:
537    return true;   // Never CSE these nodes.
538  }
539
540  // Check that remaining values produced are not flags.
541  for (unsigned i = 1, e = N->getNumValues(); i != e; ++i)
542    if (N->getValueType(i) == MVT::Flag)
543      return true; // Never CSE anything that produces a flag.
544
545  return false;
546}
547
548/// RemoveDeadNodes - This method deletes all unreachable nodes in the
549/// SelectionDAG.
550void SelectionDAG::RemoveDeadNodes() {
551  // Create a dummy node (which is not added to allnodes), that adds a reference
552  // to the root node, preventing it from being deleted.
553  HandleSDNode Dummy(getRoot());
554
555  SmallVector<SDNode*, 128> DeadNodes;
556
557  // Add all obviously-dead nodes to the DeadNodes worklist.
558  for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I)
559    if (I->use_empty())
560      DeadNodes.push_back(I);
561
562  RemoveDeadNodes(DeadNodes);
563
564  // If the root changed (e.g. it was a dead load, update the root).
565  setRoot(Dummy.getValue());
566}
567
568/// RemoveDeadNodes - This method deletes the unreachable nodes in the
569/// given list, and any nodes that become unreachable as a result.
570void SelectionDAG::RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes,
571                                   DAGUpdateListener *UpdateListener) {
572
573  // Process the worklist, deleting the nodes and adding their uses to the
574  // worklist.
575  while (!DeadNodes.empty()) {
576    SDNode *N = DeadNodes.back();
577    DeadNodes.pop_back();
578
579    if (UpdateListener)
580      UpdateListener->NodeDeleted(N, 0);
581
582    // Take the node out of the appropriate CSE map.
583    RemoveNodeFromCSEMaps(N);
584
585    // Next, brutally remove the operand list.  This is safe to do, as there are
586    // no cycles in the graph.
587    for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) {
588      SDNode *Operand = I->getVal();
589      Operand->removeUser(std::distance(N->op_begin(), I), N);
590
591      // Now that we removed this operand, see if there are no uses of it left.
592      if (Operand->use_empty())
593        DeadNodes.push_back(Operand);
594    }
595
596    if (N->OperandsNeedDelete)
597      delete[] N->OperandList;
598
599    N->OperandList = 0;
600    N->NumOperands = 0;
601
602    // Finally, remove N itself.
603    NodeAllocator.Deallocate(AllNodes.remove(N));
604  }
605}
606
607void SelectionDAG::RemoveDeadNode(SDNode *N, DAGUpdateListener *UpdateListener){
608  SmallVector<SDNode*, 16> DeadNodes(1, N);
609  RemoveDeadNodes(DeadNodes, UpdateListener);
610}
611
612void SelectionDAG::DeleteNode(SDNode *N) {
613  assert(N->use_empty() && "Cannot delete a node that is not dead!");
614
615  // First take this out of the appropriate CSE map.
616  RemoveNodeFromCSEMaps(N);
617
618  // Finally, remove uses due to operands of this node, remove from the
619  // AllNodes list, and delete the node.
620  DeleteNodeNotInCSEMaps(N);
621}
622
623void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
624  // Drop all of the operands and decrement used node's use counts.
625  for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
626    I->getVal()->removeUser(std::distance(N->op_begin(), I), N);
627
628  if (N->OperandsNeedDelete) {
629    delete[] N->OperandList;
630    N->OperandList = 0;
631  }
632
633  assert(N != AllNodes.begin());
634  NodeAllocator.Deallocate(AllNodes.remove(N));
635}
636
637/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
638/// correspond to it.  This is useful when we're about to delete or repurpose
639/// the node.  We don't want future request for structurally identical nodes
640/// to return N anymore.
641bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
642  bool Erased = false;
643  switch (N->getOpcode()) {
644  case ISD::EntryToken:
645    assert(0 && "EntryToken should not be in CSEMaps!");
646    return false;
647  case ISD::HANDLENODE: return false;  // noop.
648  case ISD::CONDCODE:
649    assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
650           "Cond code doesn't exist!");
651    Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
652    CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
653    break;
654  case ISD::ExternalSymbol:
655    Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
656    break;
657  case ISD::TargetExternalSymbol:
658    Erased =
659      TargetExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
660    break;
661  case ISD::VALUETYPE: {
662    MVT VT = cast<VTSDNode>(N)->getVT();
663    if (VT.isExtended()) {
664      Erased = ExtendedValueTypeNodes.erase(VT);
665    } else {
666      Erased = ValueTypeNodes[VT.getSimpleVT()] != 0;
667      ValueTypeNodes[VT.getSimpleVT()] = 0;
668    }
669    break;
670  }
671  default:
672    // Remove it from the CSE Map.
673    Erased = CSEMap.RemoveNode(N);
674    break;
675  }
676#ifndef NDEBUG
677  // Verify that the node was actually in one of the CSE maps, unless it has a
678  // flag result (which cannot be CSE'd) or is one of the special cases that are
679  // not subject to CSE.
680  if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
681      !N->isMachineOpcode() && !doNotCSE(N)) {
682    N->dump(this);
683    cerr << "\n";
684    assert(0 && "Node is not in map!");
685  }
686#endif
687  return Erased;
688}
689
690/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps.  It
691/// has been taken out and modified in some way.  If the specified node already
692/// exists in the CSE maps, do not modify the maps, but return the existing node
693/// instead.  If it doesn't exist, add it and return null.
694///
695SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
696  assert(N->getNumOperands() && "This is a leaf node!");
697
698  if (doNotCSE(N))
699    return 0;
700
701  SDNode *New = CSEMap.GetOrInsertNode(N);
702  if (New != N) return New;  // Node already existed.
703  return 0;
704}
705
706/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
707/// were replaced with those specified.  If this node is never memoized,
708/// return null, otherwise return a pointer to the slot it would take.  If a
709/// node already exists with these operands, the slot will be non-null.
710SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDValue Op,
711                                           void *&InsertPos) {
712  if (doNotCSE(N))
713    return 0;
714
715  SDValue Ops[] = { Op };
716  FoldingSetNodeID ID;
717  AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1);
718  AddNodeIDCustom(ID, N);
719  return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
720}
721
722/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
723/// were replaced with those specified.  If this node is never memoized,
724/// return null, otherwise return a pointer to the slot it would take.  If a
725/// node already exists with these operands, the slot will be non-null.
726SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
727                                           SDValue Op1, SDValue Op2,
728                                           void *&InsertPos) {
729  if (doNotCSE(N))
730    return 0;
731
732  SDValue Ops[] = { Op1, Op2 };
733  FoldingSetNodeID ID;
734  AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2);
735  AddNodeIDCustom(ID, N);
736  return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
737}
738
739
740/// FindModifiedNodeSlot - Find a slot for the specified node if its operands
741/// were replaced with those specified.  If this node is never memoized,
742/// return null, otherwise return a pointer to the slot it would take.  If a
743/// node already exists with these operands, the slot will be non-null.
744SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N,
745                                           const SDValue *Ops,unsigned NumOps,
746                                           void *&InsertPos) {
747  if (doNotCSE(N))
748    return 0;
749
750  FoldingSetNodeID ID;
751  AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps);
752  AddNodeIDCustom(ID, N);
753  return CSEMap.FindNodeOrInsertPos(ID, InsertPos);
754}
755
756/// VerifyNode - Sanity check the given node.  Aborts if it is invalid.
757void SelectionDAG::VerifyNode(SDNode *N) {
758  switch (N->getOpcode()) {
759  default:
760    break;
761  case ISD::BUILD_PAIR: {
762    MVT VT = N->getValueType(0);
763    assert(N->getNumValues() == 1 && "Too many results!");
764    assert(!VT.isVector() && (VT.isInteger() || VT.isFloatingPoint()) &&
765           "Wrong return type!");
766    assert(N->getNumOperands() == 2 && "Wrong number of operands!");
767    assert(N->getOperand(0).getValueType() == N->getOperand(1).getValueType() &&
768           "Mismatched operand types!");
769    assert(N->getOperand(0).getValueType().isInteger() == VT.isInteger() &&
770           "Wrong operand type!");
771    assert(VT.getSizeInBits() == 2 * N->getOperand(0).getValueSizeInBits() &&
772           "Wrong return type size");
773    break;
774  }
775  case ISD::BUILD_VECTOR: {
776    assert(N->getNumValues() == 1 && "Too many results!");
777    assert(N->getValueType(0).isVector() && "Wrong return type!");
778    assert(N->getNumOperands() == N->getValueType(0).getVectorNumElements() &&
779           "Wrong number of operands!");
780    // FIXME: Change vector_shuffle to a variadic node with mask elements being
781    // operands of the node.  Currently the mask is a BUILD_VECTOR passed as an
782    // operand, and it is not always possible to legalize it.  Turning off the
783    // following checks at least makes it possible to legalize most of the time.
784//    MVT EltVT = N->getValueType(0).getVectorElementType();
785//    for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I)
786//      assert(I->getSDValue().getValueType() == EltVT &&
787//             "Wrong operand type!");
788    break;
789  }
790  }
791}
792
793/// getMVTAlignment - Compute the default alignment value for the
794/// given type.
795///
796unsigned SelectionDAG::getMVTAlignment(MVT VT) const {
797  const Type *Ty = VT == MVT::iPTR ?
798                   PointerType::get(Type::Int8Ty, 0) :
799                   VT.getTypeForMVT();
800
801  return TLI.getTargetData()->getABITypeAlignment(Ty);
802}
803
804SelectionDAG::SelectionDAG(TargetLowering &tli, FunctionLoweringInfo &fli)
805  : TLI(tli), FLI(fli),
806    EntryNode(ISD::EntryToken, getVTList(MVT::Other)),
807    Root(getEntryNode()) {
808  AllNodes.push_back(&EntryNode);
809}
810
811void SelectionDAG::init(MachineFunction &mf, MachineModuleInfo *mmi) {
812  MF = &mf;
813  MMI = mmi;
814}
815
816SelectionDAG::~SelectionDAG() {
817  allnodes_clear();
818}
819
820void SelectionDAG::allnodes_clear() {
821  assert(&*AllNodes.begin() == &EntryNode);
822  AllNodes.remove(AllNodes.begin());
823  while (!AllNodes.empty()) {
824    SDNode *N = AllNodes.remove(AllNodes.begin());
825    N->SetNextInBucket(0);
826
827    if (N->OperandsNeedDelete) {
828      delete [] N->OperandList;
829      N->OperandList = 0;
830    }
831
832    NodeAllocator.Deallocate(N);
833  }
834}
835
836void SelectionDAG::clear() {
837  allnodes_clear();
838  OperandAllocator.Reset();
839  CSEMap.clear();
840
841  ExtendedValueTypeNodes.clear();
842  ExternalSymbols.clear();
843  TargetExternalSymbols.clear();
844  std::fill(CondCodeNodes.begin(), CondCodeNodes.end(),
845            static_cast<CondCodeSDNode*>(0));
846  std::fill(ValueTypeNodes.begin(), ValueTypeNodes.end(),
847            static_cast<SDNode*>(0));
848
849  EntryNode.Uses = 0;
850  AllNodes.push_back(&EntryNode);
851  Root = getEntryNode();
852}
853
854SDValue SelectionDAG::getZeroExtendInReg(SDValue Op, MVT VT) {
855  if (Op.getValueType() == VT) return Op;
856  APInt Imm = APInt::getLowBitsSet(Op.getValueSizeInBits(),
857                                   VT.getSizeInBits());
858  return getNode(ISD::AND, Op.getValueType(), Op,
859                 getConstant(Imm, Op.getValueType()));
860}
861
862SDValue SelectionDAG::getConstant(uint64_t Val, MVT VT, bool isT) {
863  MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
864  return getConstant(APInt(EltVT.getSizeInBits(), Val), VT, isT);
865}
866
867SDValue SelectionDAG::getConstant(const APInt &Val, MVT VT, bool isT) {
868  return getConstant(*ConstantInt::get(Val), VT, isT);
869}
870
871SDValue SelectionDAG::getConstant(const ConstantInt &Val, MVT VT, bool isT) {
872  assert(VT.isInteger() && "Cannot create FP integer constant!");
873
874  MVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
875  assert(Val.getBitWidth() == EltVT.getSizeInBits() &&
876         "APInt size does not match type size!");
877
878  unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant;
879  FoldingSetNodeID ID;
880  AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
881  ID.AddPointer(&Val);
882  void *IP = 0;
883  SDNode *N = NULL;
884  if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
885    if (!VT.isVector())
886      return SDValue(N, 0);
887  if (!N) {
888    N = NodeAllocator.Allocate<ConstantSDNode>();
889    new (N) ConstantSDNode(isT, &Val, EltVT);
890    CSEMap.InsertNode(N, IP);
891    AllNodes.push_back(N);
892  }
893
894  SDValue Result(N, 0);
895  if (VT.isVector()) {
896    SmallVector<SDValue, 8> Ops;
897    Ops.assign(VT.getVectorNumElements(), Result);
898    Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
899  }
900  return Result;
901}
902
903SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) {
904  return getConstant(Val, TLI.getPointerTy(), isTarget);
905}
906
907
908SDValue SelectionDAG::getConstantFP(const APFloat& V, MVT VT, bool isTarget) {
909  return getConstantFP(*ConstantFP::get(V), VT, isTarget);
910}
911
912SDValue SelectionDAG::getConstantFP(const ConstantFP& V, MVT VT, bool isTarget){
913  assert(VT.isFloatingPoint() && "Cannot create integer FP constant!");
914
915  MVT EltVT =
916    VT.isVector() ? VT.getVectorElementType() : VT;
917
918  // Do the map lookup using the actual bit pattern for the floating point
919  // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
920  // we don't have issues with SNANs.
921  unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP;
922  FoldingSetNodeID ID;
923  AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0);
924  ID.AddPointer(&V);
925  void *IP = 0;
926  SDNode *N = NULL;
927  if ((N = CSEMap.FindNodeOrInsertPos(ID, IP)))
928    if (!VT.isVector())
929      return SDValue(N, 0);
930  if (!N) {
931    N = NodeAllocator.Allocate<ConstantFPSDNode>();
932    new (N) ConstantFPSDNode(isTarget, &V, EltVT);
933    CSEMap.InsertNode(N, IP);
934    AllNodes.push_back(N);
935  }
936
937  SDValue Result(N, 0);
938  if (VT.isVector()) {
939    SmallVector<SDValue, 8> Ops;
940    Ops.assign(VT.getVectorNumElements(), Result);
941    Result = getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
942  }
943  return Result;
944}
945
946SDValue SelectionDAG::getConstantFP(double Val, MVT VT, bool isTarget) {
947  MVT EltVT =
948    VT.isVector() ? VT.getVectorElementType() : VT;
949  if (EltVT==MVT::f32)
950    return getConstantFP(APFloat((float)Val), VT, isTarget);
951  else
952    return getConstantFP(APFloat(Val), VT, isTarget);
953}
954
955SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV,
956                                       MVT VT, int64_t Offset,
957                                       bool isTargetGA) {
958  unsigned Opc;
959
960  // Truncate (with sign-extension) the offset value to the pointer size.
961  unsigned BitWidth = TLI.getPointerTy().getSizeInBits();
962  if (BitWidth < 64)
963    Offset = (Offset << (64 - BitWidth) >> (64 - BitWidth));
964
965  const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV);
966  if (!GVar) {
967    // If GV is an alias then use the aliasee for determining thread-localness.
968    if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
969      GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal(false));
970  }
971
972  if (GVar && GVar->isThreadLocal())
973    Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress;
974  else
975    Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress;
976
977  FoldingSetNodeID ID;
978  AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
979  ID.AddPointer(GV);
980  ID.AddInteger(Offset);
981  void *IP = 0;
982  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
983   return SDValue(E, 0);
984  SDNode *N = NodeAllocator.Allocate<GlobalAddressSDNode>();
985  new (N) GlobalAddressSDNode(isTargetGA, GV, VT, Offset);
986  CSEMap.InsertNode(N, IP);
987  AllNodes.push_back(N);
988  return SDValue(N, 0);
989}
990
991SDValue SelectionDAG::getFrameIndex(int FI, MVT VT, bool isTarget) {
992  unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex;
993  FoldingSetNodeID ID;
994  AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
995  ID.AddInteger(FI);
996  void *IP = 0;
997  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
998    return SDValue(E, 0);
999  SDNode *N = NodeAllocator.Allocate<FrameIndexSDNode>();
1000  new (N) FrameIndexSDNode(FI, VT, isTarget);
1001  CSEMap.InsertNode(N, IP);
1002  AllNodes.push_back(N);
1003  return SDValue(N, 0);
1004}
1005
1006SDValue SelectionDAG::getJumpTable(int JTI, MVT VT, bool isTarget){
1007  unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable;
1008  FoldingSetNodeID ID;
1009  AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
1010  ID.AddInteger(JTI);
1011  void *IP = 0;
1012  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1013    return SDValue(E, 0);
1014  SDNode *N = NodeAllocator.Allocate<JumpTableSDNode>();
1015  new (N) JumpTableSDNode(JTI, VT, isTarget);
1016  CSEMap.InsertNode(N, IP);
1017  AllNodes.push_back(N);
1018  return SDValue(N, 0);
1019}
1020
1021SDValue SelectionDAG::getConstantPool(Constant *C, MVT VT,
1022                                      unsigned Alignment, int Offset,
1023                                      bool isTarget) {
1024  if (Alignment == 0)
1025    Alignment =
1026      TLI.getTargetData()->getPreferredTypeAlignmentShift(C->getType());
1027  unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
1028  FoldingSetNodeID ID;
1029  AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
1030  ID.AddInteger(Alignment);
1031  ID.AddInteger(Offset);
1032  ID.AddPointer(C);
1033  void *IP = 0;
1034  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1035    return SDValue(E, 0);
1036  SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
1037  new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
1038  CSEMap.InsertNode(N, IP);
1039  AllNodes.push_back(N);
1040  return SDValue(N, 0);
1041}
1042
1043
1044SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, MVT VT,
1045                                      unsigned Alignment, int Offset,
1046                                      bool isTarget) {
1047  if (Alignment == 0)
1048    Alignment =
1049      TLI.getTargetData()->getPreferredTypeAlignmentShift(C->getType());
1050  unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool;
1051  FoldingSetNodeID ID;
1052  AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0);
1053  ID.AddInteger(Alignment);
1054  ID.AddInteger(Offset);
1055  C->AddSelectionDAGCSEId(ID);
1056  void *IP = 0;
1057  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1058    return SDValue(E, 0);
1059  SDNode *N = NodeAllocator.Allocate<ConstantPoolSDNode>();
1060  new (N) ConstantPoolSDNode(isTarget, C, VT, Offset, Alignment);
1061  CSEMap.InsertNode(N, IP);
1062  AllNodes.push_back(N);
1063  return SDValue(N, 0);
1064}
1065
1066
1067SDValue SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
1068  FoldingSetNodeID ID;
1069  AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0);
1070  ID.AddPointer(MBB);
1071  void *IP = 0;
1072  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1073    return SDValue(E, 0);
1074  SDNode *N = NodeAllocator.Allocate<BasicBlockSDNode>();
1075  new (N) BasicBlockSDNode(MBB);
1076  CSEMap.InsertNode(N, IP);
1077  AllNodes.push_back(N);
1078  return SDValue(N, 0);
1079}
1080
1081SDValue SelectionDAG::getArgFlags(ISD::ArgFlagsTy Flags) {
1082  FoldingSetNodeID ID;
1083  AddNodeIDNode(ID, ISD::ARG_FLAGS, getVTList(MVT::Other), 0, 0);
1084  ID.AddInteger(Flags.getRawBits());
1085  void *IP = 0;
1086  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1087    return SDValue(E, 0);
1088  SDNode *N = NodeAllocator.Allocate<ARG_FLAGSSDNode>();
1089  new (N) ARG_FLAGSSDNode(Flags);
1090  CSEMap.InsertNode(N, IP);
1091  AllNodes.push_back(N);
1092  return SDValue(N, 0);
1093}
1094
1095SDValue SelectionDAG::getValueType(MVT VT) {
1096  if (VT.isSimple() && (unsigned)VT.getSimpleVT() >= ValueTypeNodes.size())
1097    ValueTypeNodes.resize(VT.getSimpleVT()+1);
1098
1099  SDNode *&N = VT.isExtended() ?
1100    ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT()];
1101
1102  if (N) return SDValue(N, 0);
1103  N = NodeAllocator.Allocate<VTSDNode>();
1104  new (N) VTSDNode(VT);
1105  AllNodes.push_back(N);
1106  return SDValue(N, 0);
1107}
1108
1109SDValue SelectionDAG::getExternalSymbol(const char *Sym, MVT VT) {
1110  SDNode *&N = ExternalSymbols[Sym];
1111  if (N) return SDValue(N, 0);
1112  N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1113  new (N) ExternalSymbolSDNode(false, Sym, VT);
1114  AllNodes.push_back(N);
1115  return SDValue(N, 0);
1116}
1117
1118SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, MVT VT) {
1119  SDNode *&N = TargetExternalSymbols[Sym];
1120  if (N) return SDValue(N, 0);
1121  N = NodeAllocator.Allocate<ExternalSymbolSDNode>();
1122  new (N) ExternalSymbolSDNode(true, Sym, VT);
1123  AllNodes.push_back(N);
1124  return SDValue(N, 0);
1125}
1126
1127SDValue SelectionDAG::getCondCode(ISD::CondCode Cond) {
1128  if ((unsigned)Cond >= CondCodeNodes.size())
1129    CondCodeNodes.resize(Cond+1);
1130
1131  if (CondCodeNodes[Cond] == 0) {
1132    CondCodeSDNode *N = NodeAllocator.Allocate<CondCodeSDNode>();
1133    new (N) CondCodeSDNode(Cond);
1134    CondCodeNodes[Cond] = N;
1135    AllNodes.push_back(N);
1136  }
1137  return SDValue(CondCodeNodes[Cond], 0);
1138}
1139
1140SDValue SelectionDAG::getConvertRndSat(MVT VT, SDValue Val, SDValue DTy,
1141                                       SDValue STy, SDValue Rnd, SDValue Sat,
1142                                       ISD::CvtCode Code) {
1143  FoldingSetNodeID ID;
1144  void* IP = 0;
1145  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1146    return SDValue(E, 0);
1147  CvtRndSatSDNode *N = NodeAllocator.Allocate<CvtRndSatSDNode>();
1148  SDValue Ops[] = { Val, DTy, STy, Rnd, Sat };
1149  new (N) CvtRndSatSDNode(VT, Ops, 5, Code);
1150  CSEMap.InsertNode(N, IP);
1151  AllNodes.push_back(N);
1152  return SDValue(N, 0);
1153}
1154
1155SDValue SelectionDAG::getRegister(unsigned RegNo, MVT VT) {
1156  FoldingSetNodeID ID;
1157  AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0);
1158  ID.AddInteger(RegNo);
1159  void *IP = 0;
1160  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1161    return SDValue(E, 0);
1162  SDNode *N = NodeAllocator.Allocate<RegisterSDNode>();
1163  new (N) RegisterSDNode(RegNo, VT);
1164  CSEMap.InsertNode(N, IP);
1165  AllNodes.push_back(N);
1166  return SDValue(N, 0);
1167}
1168
1169SDValue SelectionDAG::getDbgStopPoint(SDValue Root,
1170                                        unsigned Line, unsigned Col,
1171                                        const CompileUnitDesc *CU) {
1172  SDNode *N = NodeAllocator.Allocate<DbgStopPointSDNode>();
1173  new (N) DbgStopPointSDNode(Root, Line, Col, CU);
1174  AllNodes.push_back(N);
1175  return SDValue(N, 0);
1176}
1177
1178SDValue SelectionDAG::getLabel(unsigned Opcode,
1179                               SDValue Root,
1180                               unsigned LabelID) {
1181  FoldingSetNodeID ID;
1182  SDValue Ops[] = { Root };
1183  AddNodeIDNode(ID, Opcode, getVTList(MVT::Other), &Ops[0], 1);
1184  ID.AddInteger(LabelID);
1185  void *IP = 0;
1186  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1187    return SDValue(E, 0);
1188  SDNode *N = NodeAllocator.Allocate<LabelSDNode>();
1189  new (N) LabelSDNode(Opcode, Root, LabelID);
1190  CSEMap.InsertNode(N, IP);
1191  AllNodes.push_back(N);
1192  return SDValue(N, 0);
1193}
1194
1195SDValue SelectionDAG::getSrcValue(const Value *V) {
1196  assert((!V || isa<PointerType>(V->getType())) &&
1197         "SrcValue is not a pointer?");
1198
1199  FoldingSetNodeID ID;
1200  AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0);
1201  ID.AddPointer(V);
1202
1203  void *IP = 0;
1204  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1205    return SDValue(E, 0);
1206
1207  SDNode *N = NodeAllocator.Allocate<SrcValueSDNode>();
1208  new (N) SrcValueSDNode(V);
1209  CSEMap.InsertNode(N, IP);
1210  AllNodes.push_back(N);
1211  return SDValue(N, 0);
1212}
1213
1214SDValue SelectionDAG::getMemOperand(const MachineMemOperand &MO) {
1215#ifndef NDEBUG
1216  const Value *v = MO.getValue();
1217  assert((!v || isa<PointerType>(v->getType())) &&
1218         "SrcValue is not a pointer?");
1219#endif
1220
1221  FoldingSetNodeID ID;
1222  AddNodeIDNode(ID, ISD::MEMOPERAND, getVTList(MVT::Other), 0, 0);
1223  MO.Profile(ID);
1224
1225  void *IP = 0;
1226  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
1227    return SDValue(E, 0);
1228
1229  SDNode *N = NodeAllocator.Allocate<MemOperandSDNode>();
1230  new (N) MemOperandSDNode(MO);
1231  CSEMap.InsertNode(N, IP);
1232  AllNodes.push_back(N);
1233  return SDValue(N, 0);
1234}
1235
1236/// CreateStackTemporary - Create a stack temporary, suitable for holding the
1237/// specified value type.
1238SDValue SelectionDAG::CreateStackTemporary(MVT VT, unsigned minAlign) {
1239  MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo();
1240  unsigned ByteSize = VT.getSizeInBits()/8;
1241  const Type *Ty = VT.getTypeForMVT();
1242  unsigned StackAlign =
1243  std::max((unsigned)TLI.getTargetData()->getPrefTypeAlignment(Ty), minAlign);
1244
1245  int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign);
1246  return getFrameIndex(FrameIdx, TLI.getPointerTy());
1247}
1248
1249SDValue SelectionDAG::FoldSetCC(MVT VT, SDValue N1,
1250                                SDValue N2, ISD::CondCode Cond) {
1251  // These setcc operations always fold.
1252  switch (Cond) {
1253  default: break;
1254  case ISD::SETFALSE:
1255  case ISD::SETFALSE2: return getConstant(0, VT);
1256  case ISD::SETTRUE:
1257  case ISD::SETTRUE2:  return getConstant(1, VT);
1258
1259  case ISD::SETOEQ:
1260  case ISD::SETOGT:
1261  case ISD::SETOGE:
1262  case ISD::SETOLT:
1263  case ISD::SETOLE:
1264  case ISD::SETONE:
1265  case ISD::SETO:
1266  case ISD::SETUO:
1267  case ISD::SETUEQ:
1268  case ISD::SETUNE:
1269    assert(!N1.getValueType().isInteger() && "Illegal setcc for integer!");
1270    break;
1271  }
1272
1273  if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode())) {
1274    const APInt &C2 = N2C->getAPIntValue();
1275    if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) {
1276      const APInt &C1 = N1C->getAPIntValue();
1277
1278      switch (Cond) {
1279      default: assert(0 && "Unknown integer setcc!");
1280      case ISD::SETEQ:  return getConstant(C1 == C2, VT);
1281      case ISD::SETNE:  return getConstant(C1 != C2, VT);
1282      case ISD::SETULT: return getConstant(C1.ult(C2), VT);
1283      case ISD::SETUGT: return getConstant(C1.ugt(C2), VT);
1284      case ISD::SETULE: return getConstant(C1.ule(C2), VT);
1285      case ISD::SETUGE: return getConstant(C1.uge(C2), VT);
1286      case ISD::SETLT:  return getConstant(C1.slt(C2), VT);
1287      case ISD::SETGT:  return getConstant(C1.sgt(C2), VT);
1288      case ISD::SETLE:  return getConstant(C1.sle(C2), VT);
1289      case ISD::SETGE:  return getConstant(C1.sge(C2), VT);
1290      }
1291    }
1292  }
1293  if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.getNode())) {
1294    if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.getNode())) {
1295      // No compile time operations on this type yet.
1296      if (N1C->getValueType(0) == MVT::ppcf128)
1297        return SDValue();
1298
1299      APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF());
1300      switch (Cond) {
1301      default: break;
1302      case ISD::SETEQ:  if (R==APFloat::cmpUnordered)
1303                          return getNode(ISD::UNDEF, VT);
1304                        // fall through
1305      case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT);
1306      case ISD::SETNE:  if (R==APFloat::cmpUnordered)
1307                          return getNode(ISD::UNDEF, VT);
1308                        // fall through
1309      case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan ||
1310                                           R==APFloat::cmpLessThan, VT);
1311      case ISD::SETLT:  if (R==APFloat::cmpUnordered)
1312                          return getNode(ISD::UNDEF, VT);
1313                        // fall through
1314      case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT);
1315      case ISD::SETGT:  if (R==APFloat::cmpUnordered)
1316                          return getNode(ISD::UNDEF, VT);
1317                        // fall through
1318      case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT);
1319      case ISD::SETLE:  if (R==APFloat::cmpUnordered)
1320                          return getNode(ISD::UNDEF, VT);
1321                        // fall through
1322      case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan ||
1323                                           R==APFloat::cmpEqual, VT);
1324      case ISD::SETGE:  if (R==APFloat::cmpUnordered)
1325                          return getNode(ISD::UNDEF, VT);
1326                        // fall through
1327      case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan ||
1328                                           R==APFloat::cmpEqual, VT);
1329      case ISD::SETO:   return getConstant(R!=APFloat::cmpUnordered, VT);
1330      case ISD::SETUO:  return getConstant(R==APFloat::cmpUnordered, VT);
1331      case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered ||
1332                                           R==APFloat::cmpEqual, VT);
1333      case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT);
1334      case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered ||
1335                                           R==APFloat::cmpLessThan, VT);
1336      case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan ||
1337                                           R==APFloat::cmpUnordered, VT);
1338      case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT);
1339      case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT);
1340      }
1341    } else {
1342      // Ensure that the constant occurs on the RHS.
1343      return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
1344    }
1345  }
1346
1347  // Could not fold it.
1348  return SDValue();
1349}
1350
1351/// SignBitIsZero - Return true if the sign bit of Op is known to be zero.  We
1352/// use this predicate to simplify operations downstream.
1353bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const {
1354  unsigned BitWidth = Op.getValueSizeInBits();
1355  return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth);
1356}
1357
1358/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero.  We use
1359/// this predicate to simplify operations downstream.  Mask is known to be zero
1360/// for bits that V cannot have.
1361bool SelectionDAG::MaskedValueIsZero(SDValue Op, const APInt &Mask,
1362                                     unsigned Depth) const {
1363  APInt KnownZero, KnownOne;
1364  ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
1365  assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1366  return (KnownZero & Mask) == Mask;
1367}
1368
1369/// ComputeMaskedBits - Determine which of the bits specified in Mask are
1370/// known to be either zero or one and return them in the KnownZero/KnownOne
1371/// bitsets.  This code only analyzes bits in Mask, in order to short-circuit
1372/// processing.
1373void SelectionDAG::ComputeMaskedBits(SDValue Op, const APInt &Mask,
1374                                     APInt &KnownZero, APInt &KnownOne,
1375                                     unsigned Depth) const {
1376  unsigned BitWidth = Mask.getBitWidth();
1377  assert(BitWidth == Op.getValueType().getSizeInBits() &&
1378         "Mask size mismatches value type size!");
1379
1380  KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
1381  if (Depth == 6 || Mask == 0)
1382    return;  // Limit search depth.
1383
1384  APInt KnownZero2, KnownOne2;
1385
1386  switch (Op.getOpcode()) {
1387  case ISD::Constant:
1388    // We know all of the bits for a constant!
1389    KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & Mask;
1390    KnownZero = ~KnownOne & Mask;
1391    return;
1392  case ISD::AND:
1393    // If either the LHS or the RHS are Zero, the result is zero.
1394    ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1395    ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownZero,
1396                      KnownZero2, KnownOne2, Depth+1);
1397    assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1398    assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1399
1400    // Output known-1 bits are only known if set in both the LHS & RHS.
1401    KnownOne &= KnownOne2;
1402    // Output known-0 are known to be clear if zero in either the LHS | RHS.
1403    KnownZero |= KnownZero2;
1404    return;
1405  case ISD::OR:
1406    ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1407    ComputeMaskedBits(Op.getOperand(0), Mask & ~KnownOne,
1408                      KnownZero2, KnownOne2, Depth+1);
1409    assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1410    assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1411
1412    // Output known-0 bits are only known if clear in both the LHS & RHS.
1413    KnownZero &= KnownZero2;
1414    // Output known-1 are known to be set if set in either the LHS | RHS.
1415    KnownOne |= KnownOne2;
1416    return;
1417  case ISD::XOR: {
1418    ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1419    ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero2, KnownOne2, Depth+1);
1420    assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1421    assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1422
1423    // Output known-0 bits are known if clear or set in both the LHS & RHS.
1424    APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
1425    // Output known-1 are known to be set if set in only one of the LHS, RHS.
1426    KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
1427    KnownZero = KnownZeroOut;
1428    return;
1429  }
1430  case ISD::MUL: {
1431    APInt Mask2 = APInt::getAllOnesValue(BitWidth);
1432    ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero, KnownOne, Depth+1);
1433    ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1434    assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1435    assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1436
1437    // If low bits are zero in either operand, output low known-0 bits.
1438    // Also compute a conserative estimate for high known-0 bits.
1439    // More trickiness is possible, but this is sufficient for the
1440    // interesting case of alignment computation.
1441    KnownOne.clear();
1442    unsigned TrailZ = KnownZero.countTrailingOnes() +
1443                      KnownZero2.countTrailingOnes();
1444    unsigned LeadZ =  std::max(KnownZero.countLeadingOnes() +
1445                               KnownZero2.countLeadingOnes(),
1446                               BitWidth) - BitWidth;
1447
1448    TrailZ = std::min(TrailZ, BitWidth);
1449    LeadZ = std::min(LeadZ, BitWidth);
1450    KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) |
1451                APInt::getHighBitsSet(BitWidth, LeadZ);
1452    KnownZero &= Mask;
1453    return;
1454  }
1455  case ISD::UDIV: {
1456    // For the purposes of computing leading zeros we can conservatively
1457    // treat a udiv as a logical right shift by the power of 2 known to
1458    // be less than the denominator.
1459    APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1460    ComputeMaskedBits(Op.getOperand(0),
1461                      AllOnes, KnownZero2, KnownOne2, Depth+1);
1462    unsigned LeadZ = KnownZero2.countLeadingOnes();
1463
1464    KnownOne2.clear();
1465    KnownZero2.clear();
1466    ComputeMaskedBits(Op.getOperand(1),
1467                      AllOnes, KnownZero2, KnownOne2, Depth+1);
1468    unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros();
1469    if (RHSUnknownLeadingOnes != BitWidth)
1470      LeadZ = std::min(BitWidth,
1471                       LeadZ + BitWidth - RHSUnknownLeadingOnes - 1);
1472
1473    KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ) & Mask;
1474    return;
1475  }
1476  case ISD::SELECT:
1477    ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero, KnownOne, Depth+1);
1478    ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero2, KnownOne2, Depth+1);
1479    assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1480    assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1481
1482    // Only known if known in both the LHS and RHS.
1483    KnownOne &= KnownOne2;
1484    KnownZero &= KnownZero2;
1485    return;
1486  case ISD::SELECT_CC:
1487    ComputeMaskedBits(Op.getOperand(3), Mask, KnownZero, KnownOne, Depth+1);
1488    ComputeMaskedBits(Op.getOperand(2), Mask, KnownZero2, KnownOne2, Depth+1);
1489    assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1490    assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1491
1492    // Only known if known in both the LHS and RHS.
1493    KnownOne &= KnownOne2;
1494    KnownZero &= KnownZero2;
1495    return;
1496  case ISD::SADDO:
1497  case ISD::UADDO:
1498    if (Op.getResNo() != 1)
1499      return;
1500    // The boolean result conforms to getBooleanContents.  Fall through.
1501  case ISD::SETCC:
1502    // If we know the result of a setcc has the top bits zero, use this info.
1503    if (TLI.getBooleanContents() == TargetLowering::ZeroOrOneBooleanContent &&
1504        BitWidth > 1)
1505      KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
1506    return;
1507  case ISD::SHL:
1508    // (shl X, C1) & C2 == 0   iff   (X & C2 >>u C1) == 0
1509    if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1510      unsigned ShAmt = SA->getZExtValue();
1511
1512      // If the shift count is an invalid immediate, don't do anything.
1513      if (ShAmt >= BitWidth)
1514        return;
1515
1516      ComputeMaskedBits(Op.getOperand(0), Mask.lshr(ShAmt),
1517                        KnownZero, KnownOne, Depth+1);
1518      assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1519      KnownZero <<= ShAmt;
1520      KnownOne  <<= ShAmt;
1521      // low bits known zero.
1522      KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt);
1523    }
1524    return;
1525  case ISD::SRL:
1526    // (ushr X, C1) & C2 == 0   iff  (-1 >> C1) & C2 == 0
1527    if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1528      unsigned ShAmt = SA->getZExtValue();
1529
1530      // If the shift count is an invalid immediate, don't do anything.
1531      if (ShAmt >= BitWidth)
1532        return;
1533
1534      ComputeMaskedBits(Op.getOperand(0), (Mask << ShAmt),
1535                        KnownZero, KnownOne, Depth+1);
1536      assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1537      KnownZero = KnownZero.lshr(ShAmt);
1538      KnownOne  = KnownOne.lshr(ShAmt);
1539
1540      APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1541      KnownZero |= HighBits;  // High bits known zero.
1542    }
1543    return;
1544  case ISD::SRA:
1545    if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1546      unsigned ShAmt = SA->getZExtValue();
1547
1548      // If the shift count is an invalid immediate, don't do anything.
1549      if (ShAmt >= BitWidth)
1550        return;
1551
1552      APInt InDemandedMask = (Mask << ShAmt);
1553      // If any of the demanded bits are produced by the sign extension, we also
1554      // demand the input sign bit.
1555      APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt) & Mask;
1556      if (HighBits.getBoolValue())
1557        InDemandedMask |= APInt::getSignBit(BitWidth);
1558
1559      ComputeMaskedBits(Op.getOperand(0), InDemandedMask, KnownZero, KnownOne,
1560                        Depth+1);
1561      assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1562      KnownZero = KnownZero.lshr(ShAmt);
1563      KnownOne  = KnownOne.lshr(ShAmt);
1564
1565      // Handle the sign bits.
1566      APInt SignBit = APInt::getSignBit(BitWidth);
1567      SignBit = SignBit.lshr(ShAmt);  // Adjust to where it is now in the mask.
1568
1569      if (KnownZero.intersects(SignBit)) {
1570        KnownZero |= HighBits;  // New bits are known zero.
1571      } else if (KnownOne.intersects(SignBit)) {
1572        KnownOne  |= HighBits;  // New bits are known one.
1573      }
1574    }
1575    return;
1576  case ISD::SIGN_EXTEND_INREG: {
1577    MVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1578    unsigned EBits = EVT.getSizeInBits();
1579
1580    // Sign extension.  Compute the demanded bits in the result that are not
1581    // present in the input.
1582    APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits) & Mask;
1583
1584    APInt InSignBit = APInt::getSignBit(EBits);
1585    APInt InputDemandedBits = Mask & APInt::getLowBitsSet(BitWidth, EBits);
1586
1587    // If the sign extended bits are demanded, we know that the sign
1588    // bit is demanded.
1589    InSignBit.zext(BitWidth);
1590    if (NewBits.getBoolValue())
1591      InputDemandedBits |= InSignBit;
1592
1593    ComputeMaskedBits(Op.getOperand(0), InputDemandedBits,
1594                      KnownZero, KnownOne, Depth+1);
1595    assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1596
1597    // If the sign bit of the input is known set or clear, then we know the
1598    // top bits of the result.
1599    if (KnownZero.intersects(InSignBit)) {         // Input sign bit known clear
1600      KnownZero |= NewBits;
1601      KnownOne  &= ~NewBits;
1602    } else if (KnownOne.intersects(InSignBit)) {   // Input sign bit known set
1603      KnownOne  |= NewBits;
1604      KnownZero &= ~NewBits;
1605    } else {                              // Input sign bit unknown
1606      KnownZero &= ~NewBits;
1607      KnownOne  &= ~NewBits;
1608    }
1609    return;
1610  }
1611  case ISD::CTTZ:
1612  case ISD::CTLZ:
1613  case ISD::CTPOP: {
1614    unsigned LowBits = Log2_32(BitWidth)+1;
1615    KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits);
1616    KnownOne.clear();
1617    return;
1618  }
1619  case ISD::LOAD: {
1620    if (ISD::isZEXTLoad(Op.getNode())) {
1621      LoadSDNode *LD = cast<LoadSDNode>(Op);
1622      MVT VT = LD->getMemoryVT();
1623      unsigned MemBits = VT.getSizeInBits();
1624      KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits) & Mask;
1625    }
1626    return;
1627  }
1628  case ISD::ZERO_EXTEND: {
1629    MVT InVT = Op.getOperand(0).getValueType();
1630    unsigned InBits = InVT.getSizeInBits();
1631    APInt NewBits   = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1632    APInt InMask    = Mask;
1633    InMask.trunc(InBits);
1634    KnownZero.trunc(InBits);
1635    KnownOne.trunc(InBits);
1636    ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1637    KnownZero.zext(BitWidth);
1638    KnownOne.zext(BitWidth);
1639    KnownZero |= NewBits;
1640    return;
1641  }
1642  case ISD::SIGN_EXTEND: {
1643    MVT InVT = Op.getOperand(0).getValueType();
1644    unsigned InBits = InVT.getSizeInBits();
1645    APInt InSignBit = APInt::getSignBit(InBits);
1646    APInt NewBits   = APInt::getHighBitsSet(BitWidth, BitWidth - InBits) & Mask;
1647    APInt InMask = Mask;
1648    InMask.trunc(InBits);
1649
1650    // If any of the sign extended bits are demanded, we know that the sign
1651    // bit is demanded. Temporarily set this bit in the mask for our callee.
1652    if (NewBits.getBoolValue())
1653      InMask |= InSignBit;
1654
1655    KnownZero.trunc(InBits);
1656    KnownOne.trunc(InBits);
1657    ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1658
1659    // Note if the sign bit is known to be zero or one.
1660    bool SignBitKnownZero = KnownZero.isNegative();
1661    bool SignBitKnownOne  = KnownOne.isNegative();
1662    assert(!(SignBitKnownZero && SignBitKnownOne) &&
1663           "Sign bit can't be known to be both zero and one!");
1664
1665    // If the sign bit wasn't actually demanded by our caller, we don't
1666    // want it set in the KnownZero and KnownOne result values. Reset the
1667    // mask and reapply it to the result values.
1668    InMask = Mask;
1669    InMask.trunc(InBits);
1670    KnownZero &= InMask;
1671    KnownOne  &= InMask;
1672
1673    KnownZero.zext(BitWidth);
1674    KnownOne.zext(BitWidth);
1675
1676    // If the sign bit is known zero or one, the top bits match.
1677    if (SignBitKnownZero)
1678      KnownZero |= NewBits;
1679    else if (SignBitKnownOne)
1680      KnownOne  |= NewBits;
1681    return;
1682  }
1683  case ISD::ANY_EXTEND: {
1684    MVT InVT = Op.getOperand(0).getValueType();
1685    unsigned InBits = InVT.getSizeInBits();
1686    APInt InMask = Mask;
1687    InMask.trunc(InBits);
1688    KnownZero.trunc(InBits);
1689    KnownOne.trunc(InBits);
1690    ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1691    KnownZero.zext(BitWidth);
1692    KnownOne.zext(BitWidth);
1693    return;
1694  }
1695  case ISD::TRUNCATE: {
1696    MVT InVT = Op.getOperand(0).getValueType();
1697    unsigned InBits = InVT.getSizeInBits();
1698    APInt InMask = Mask;
1699    InMask.zext(InBits);
1700    KnownZero.zext(InBits);
1701    KnownOne.zext(InBits);
1702    ComputeMaskedBits(Op.getOperand(0), InMask, KnownZero, KnownOne, Depth+1);
1703    assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1704    KnownZero.trunc(BitWidth);
1705    KnownOne.trunc(BitWidth);
1706    break;
1707  }
1708  case ISD::AssertZext: {
1709    MVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
1710    APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits());
1711    ComputeMaskedBits(Op.getOperand(0), Mask & InMask, KnownZero,
1712                      KnownOne, Depth+1);
1713    KnownZero |= (~InMask) & Mask;
1714    return;
1715  }
1716  case ISD::FGETSIGN:
1717    // All bits are zero except the low bit.
1718    KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1);
1719    return;
1720
1721  case ISD::SUB: {
1722    if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) {
1723      // We know that the top bits of C-X are clear if X contains less bits
1724      // than C (i.e. no wrap-around can happen).  For example, 20-X is
1725      // positive if we can prove that X is >= 0 and < 16.
1726      if (CLHS->getAPIntValue().isNonNegative()) {
1727        unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros();
1728        // NLZ can't be BitWidth with no sign bit
1729        APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1);
1730        ComputeMaskedBits(Op.getOperand(1), MaskV, KnownZero2, KnownOne2,
1731                          Depth+1);
1732
1733        // If all of the MaskV bits are known to be zero, then we know the
1734        // output top bits are zero, because we now know that the output is
1735        // from [0-C].
1736        if ((KnownZero2 & MaskV) == MaskV) {
1737          unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros();
1738          // Top bits known zero.
1739          KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2) & Mask;
1740        }
1741      }
1742    }
1743  }
1744  // fall through
1745  case ISD::ADD: {
1746    // Output known-0 bits are known if clear or set in both the low clear bits
1747    // common to both LHS & RHS.  For example, 8+(X<<3) is known to have the
1748    // low 3 bits clear.
1749    APInt Mask2 = APInt::getLowBitsSet(BitWidth, Mask.countTrailingOnes());
1750    ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero2, KnownOne2, Depth+1);
1751    assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1752    unsigned KnownZeroOut = KnownZero2.countTrailingOnes();
1753
1754    ComputeMaskedBits(Op.getOperand(1), Mask2, KnownZero2, KnownOne2, Depth+1);
1755    assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
1756    KnownZeroOut = std::min(KnownZeroOut,
1757                            KnownZero2.countTrailingOnes());
1758
1759    KnownZero |= APInt::getLowBitsSet(BitWidth, KnownZeroOut);
1760    return;
1761  }
1762  case ISD::SREM:
1763    if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1764      const APInt &RA = Rem->getAPIntValue();
1765      if (RA.isPowerOf2() || (-RA).isPowerOf2()) {
1766        APInt LowBits = RA.isStrictlyPositive() ? (RA - 1) : ~RA;
1767        APInt Mask2 = LowBits | APInt::getSignBit(BitWidth);
1768        ComputeMaskedBits(Op.getOperand(0), Mask2,KnownZero2,KnownOne2,Depth+1);
1769
1770        // If the sign bit of the first operand is zero, the sign bit of
1771        // the result is zero. If the first operand has no one bits below
1772        // the second operand's single 1 bit, its sign will be zero.
1773        if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits))
1774          KnownZero2 |= ~LowBits;
1775
1776        KnownZero |= KnownZero2 & Mask;
1777
1778        assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
1779      }
1780    }
1781    return;
1782  case ISD::UREM: {
1783    if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1784      const APInt &RA = Rem->getAPIntValue();
1785      if (RA.isPowerOf2()) {
1786        APInt LowBits = (RA - 1);
1787        APInt Mask2 = LowBits & Mask;
1788        KnownZero |= ~LowBits & Mask;
1789        ComputeMaskedBits(Op.getOperand(0), Mask2, KnownZero, KnownOne,Depth+1);
1790        assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?");
1791        break;
1792      }
1793    }
1794
1795    // Since the result is less than or equal to either operand, any leading
1796    // zero bits in either operand must also exist in the result.
1797    APInt AllOnes = APInt::getAllOnesValue(BitWidth);
1798    ComputeMaskedBits(Op.getOperand(0), AllOnes, KnownZero, KnownOne,
1799                      Depth+1);
1800    ComputeMaskedBits(Op.getOperand(1), AllOnes, KnownZero2, KnownOne2,
1801                      Depth+1);
1802
1803    uint32_t Leaders = std::max(KnownZero.countLeadingOnes(),
1804                                KnownZero2.countLeadingOnes());
1805    KnownOne.clear();
1806    KnownZero = APInt::getHighBitsSet(BitWidth, Leaders) & Mask;
1807    return;
1808  }
1809  default:
1810    // Allow the target to implement this method for its nodes.
1811    if (Op.getOpcode() >= ISD::BUILTIN_OP_END) {
1812  case ISD::INTRINSIC_WO_CHAIN:
1813  case ISD::INTRINSIC_W_CHAIN:
1814  case ISD::INTRINSIC_VOID:
1815      TLI.computeMaskedBitsForTargetNode(Op, Mask, KnownZero, KnownOne, *this);
1816    }
1817    return;
1818  }
1819}
1820
1821/// ComputeNumSignBits - Return the number of times the sign bit of the
1822/// register is replicated into the other bits.  We know that at least 1 bit
1823/// is always equal to the sign bit (itself), but other cases can give us
1824/// information.  For example, immediately after an "SRA X, 2", we know that
1825/// the top 3 bits are all equal to each other, so we return 3.
1826unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const{
1827  MVT VT = Op.getValueType();
1828  assert(VT.isInteger() && "Invalid VT!");
1829  unsigned VTBits = VT.getSizeInBits();
1830  unsigned Tmp, Tmp2;
1831  unsigned FirstAnswer = 1;
1832
1833  if (Depth == 6)
1834    return 1;  // Limit search depth.
1835
1836  switch (Op.getOpcode()) {
1837  default: break;
1838  case ISD::AssertSext:
1839    Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
1840    return VTBits-Tmp+1;
1841  case ISD::AssertZext:
1842    Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
1843    return VTBits-Tmp;
1844
1845  case ISD::Constant: {
1846    const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue();
1847    // If negative, return # leading ones.
1848    if (Val.isNegative())
1849      return Val.countLeadingOnes();
1850
1851    // Return # leading zeros.
1852    return Val.countLeadingZeros();
1853  }
1854
1855  case ISD::SIGN_EXTEND:
1856    Tmp = VTBits-Op.getOperand(0).getValueType().getSizeInBits();
1857    return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp;
1858
1859  case ISD::SIGN_EXTEND_INREG:
1860    // Max of the input and what this extends.
1861    Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits();
1862    Tmp = VTBits-Tmp+1;
1863
1864    Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1865    return std::max(Tmp, Tmp2);
1866
1867  case ISD::SRA:
1868    Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1869    // SRA X, C   -> adds C sign bits.
1870    if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1871      Tmp += C->getZExtValue();
1872      if (Tmp > VTBits) Tmp = VTBits;
1873    }
1874    return Tmp;
1875  case ISD::SHL:
1876    if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1877      // shl destroys sign bits.
1878      Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1879      if (C->getZExtValue() >= VTBits ||      // Bad shift.
1880          C->getZExtValue() >= Tmp) break;    // Shifted all sign bits out.
1881      return Tmp - C->getZExtValue();
1882    }
1883    break;
1884  case ISD::AND:
1885  case ISD::OR:
1886  case ISD::XOR:    // NOT is handled here.
1887    // Logical binary ops preserve the number of sign bits at the worst.
1888    Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1889    if (Tmp != 1) {
1890      Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1891      FirstAnswer = std::min(Tmp, Tmp2);
1892      // We computed what we know about the sign bits as our first
1893      // answer. Now proceed to the generic code that uses
1894      // ComputeMaskedBits, and pick whichever answer is better.
1895    }
1896    break;
1897
1898  case ISD::SELECT:
1899    Tmp = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1900    if (Tmp == 1) return 1;  // Early out.
1901    Tmp2 = ComputeNumSignBits(Op.getOperand(2), Depth+1);
1902    return std::min(Tmp, Tmp2);
1903
1904  case ISD::SADDO:
1905  case ISD::UADDO:
1906    if (Op.getResNo() != 1)
1907      break;
1908    // The boolean result conforms to getBooleanContents.  Fall through.
1909  case ISD::SETCC:
1910    // If setcc returns 0/-1, all bits are sign bits.
1911    if (TLI.getBooleanContents() ==
1912        TargetLowering::ZeroOrNegativeOneBooleanContent)
1913      return VTBits;
1914    break;
1915  case ISD::ROTL:
1916  case ISD::ROTR:
1917    if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
1918      unsigned RotAmt = C->getZExtValue() & (VTBits-1);
1919
1920      // Handle rotate right by N like a rotate left by 32-N.
1921      if (Op.getOpcode() == ISD::ROTR)
1922        RotAmt = (VTBits-RotAmt) & (VTBits-1);
1923
1924      // If we aren't rotating out all of the known-in sign bits, return the
1925      // number that are left.  This handles rotl(sext(x), 1) for example.
1926      Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1927      if (Tmp > RotAmt+1) return Tmp-RotAmt;
1928    }
1929    break;
1930  case ISD::ADD:
1931    // Add can have at most one carry bit.  Thus we know that the output
1932    // is, at worst, one more bit than the inputs.
1933    Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1934    if (Tmp == 1) return 1;  // Early out.
1935
1936    // Special case decrementing a value (ADD X, -1):
1937    if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1938      if (CRHS->isAllOnesValue()) {
1939        APInt KnownZero, KnownOne;
1940        APInt Mask = APInt::getAllOnesValue(VTBits);
1941        ComputeMaskedBits(Op.getOperand(0), Mask, KnownZero, KnownOne, Depth+1);
1942
1943        // If the input is known to be 0 or 1, the output is 0/-1, which is all
1944        // sign bits set.
1945        if ((KnownZero | APInt(VTBits, 1)) == Mask)
1946          return VTBits;
1947
1948        // If we are subtracting one from a positive number, there is no carry
1949        // out of the result.
1950        if (KnownZero.isNegative())
1951          return Tmp;
1952      }
1953
1954    Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1955    if (Tmp2 == 1) return 1;
1956      return std::min(Tmp, Tmp2)-1;
1957    break;
1958
1959  case ISD::SUB:
1960    Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1);
1961    if (Tmp2 == 1) return 1;
1962
1963    // Handle NEG.
1964    if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0)))
1965      if (CLHS->isNullValue()) {
1966        APInt KnownZero, KnownOne;
1967        APInt Mask = APInt::getAllOnesValue(VTBits);
1968        ComputeMaskedBits(Op.getOperand(1), Mask, KnownZero, KnownOne, Depth+1);
1969        // If the input is known to be 0 or 1, the output is 0/-1, which is all
1970        // sign bits set.
1971        if ((KnownZero | APInt(VTBits, 1)) == Mask)
1972          return VTBits;
1973
1974        // If the input is known to be positive (the sign bit is known clear),
1975        // the output of the NEG has the same number of sign bits as the input.
1976        if (KnownZero.isNegative())
1977          return Tmp2;
1978
1979        // Otherwise, we treat this like a SUB.
1980      }
1981
1982    // Sub can have at most one carry bit.  Thus we know that the output
1983    // is, at worst, one more bit than the inputs.
1984    Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1);
1985    if (Tmp == 1) return 1;  // Early out.
1986      return std::min(Tmp, Tmp2)-1;
1987    break;
1988  case ISD::TRUNCATE:
1989    // FIXME: it's tricky to do anything useful for this, but it is an important
1990    // case for targets like X86.
1991    break;
1992  }
1993
1994  // Handle LOADX separately here. EXTLOAD case will fallthrough.
1995  if (Op.getOpcode() == ISD::LOAD) {
1996    LoadSDNode *LD = cast<LoadSDNode>(Op);
1997    unsigned ExtType = LD->getExtensionType();
1998    switch (ExtType) {
1999    default: break;
2000    case ISD::SEXTLOAD:    // '17' bits known
2001      Tmp = LD->getMemoryVT().getSizeInBits();
2002      return VTBits-Tmp+1;
2003    case ISD::ZEXTLOAD:    // '16' bits known
2004      Tmp = LD->getMemoryVT().getSizeInBits();
2005      return VTBits-Tmp;
2006    }
2007  }
2008
2009  // Allow the target to implement this method for its nodes.
2010  if (Op.getOpcode() >= ISD::BUILTIN_OP_END ||
2011      Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
2012      Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
2013      Op.getOpcode() == ISD::INTRINSIC_VOID) {
2014    unsigned NumBits = TLI.ComputeNumSignBitsForTargetNode(Op, Depth);
2015    if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits);
2016  }
2017
2018  // Finally, if we can prove that the top bits of the result are 0's or 1's,
2019  // use this information.
2020  APInt KnownZero, KnownOne;
2021  APInt Mask = APInt::getAllOnesValue(VTBits);
2022  ComputeMaskedBits(Op, Mask, KnownZero, KnownOne, Depth);
2023
2024  if (KnownZero.isNegative()) {        // sign bit is 0
2025    Mask = KnownZero;
2026  } else if (KnownOne.isNegative()) {  // sign bit is 1;
2027    Mask = KnownOne;
2028  } else {
2029    // Nothing known.
2030    return FirstAnswer;
2031  }
2032
2033  // Okay, we know that the sign bit in Mask is set.  Use CLZ to determine
2034  // the number of identical bits in the top of the input value.
2035  Mask = ~Mask;
2036  Mask <<= Mask.getBitWidth()-VTBits;
2037  // Return # leading zeros.  We use 'min' here in case Val was zero before
2038  // shifting.  We don't want to return '64' as for an i32 "0".
2039  return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros()));
2040}
2041
2042
2043bool SelectionDAG::isVerifiedDebugInfoDesc(SDValue Op) const {
2044  GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
2045  if (!GA) return false;
2046  if (GA->getOffset() != 0) return false;
2047  GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal());
2048  if (!GV) return false;
2049  MachineModuleInfo *MMI = getMachineModuleInfo();
2050  return MMI && MMI->hasDebugInfo() && MMI->isVerified(GV);
2051}
2052
2053
2054/// getShuffleScalarElt - Returns the scalar element that will make up the ith
2055/// element of the result of the vector shuffle.
2056SDValue SelectionDAG::getShuffleScalarElt(const SDNode *N, unsigned i) {
2057  MVT VT = N->getValueType(0);
2058  SDValue PermMask = N->getOperand(2);
2059  SDValue Idx = PermMask.getOperand(i);
2060  if (Idx.getOpcode() == ISD::UNDEF)
2061    return getNode(ISD::UNDEF, VT.getVectorElementType());
2062  unsigned Index = cast<ConstantSDNode>(Idx)->getZExtValue();
2063  unsigned NumElems = PermMask.getNumOperands();
2064  SDValue V = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
2065  Index %= NumElems;
2066
2067  if (V.getOpcode() == ISD::BIT_CONVERT) {
2068    V = V.getOperand(0);
2069    if (V.getValueType().getVectorNumElements() != NumElems)
2070      return SDValue();
2071  }
2072  if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
2073    return (Index == 0) ? V.getOperand(0)
2074                      : getNode(ISD::UNDEF, VT.getVectorElementType());
2075  if (V.getOpcode() == ISD::BUILD_VECTOR)
2076    return V.getOperand(Index);
2077  if (V.getOpcode() == ISD::VECTOR_SHUFFLE)
2078    return getShuffleScalarElt(V.getNode(), Index);
2079  return SDValue();
2080}
2081
2082
2083/// getNode - Gets or creates the specified node.
2084///
2085SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT) {
2086  FoldingSetNodeID ID;
2087  AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0);
2088  void *IP = 0;
2089  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2090    return SDValue(E, 0);
2091  SDNode *N = NodeAllocator.Allocate<SDNode>();
2092  new (N) SDNode(Opcode, SDNode::getSDVTList(VT));
2093  CSEMap.InsertNode(N, IP);
2094
2095  AllNodes.push_back(N);
2096#ifndef NDEBUG
2097  VerifyNode(N);
2098#endif
2099  return SDValue(N, 0);
2100}
2101
2102SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT, SDValue Operand) {
2103  // Constant fold unary operations with an integer constant operand.
2104  if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.getNode())) {
2105    const APInt &Val = C->getAPIntValue();
2106    unsigned BitWidth = VT.getSizeInBits();
2107    switch (Opcode) {
2108    default: break;
2109    case ISD::SIGN_EXTEND:
2110      return getConstant(APInt(Val).sextOrTrunc(BitWidth), VT);
2111    case ISD::ANY_EXTEND:
2112    case ISD::ZERO_EXTEND:
2113    case ISD::TRUNCATE:
2114      return getConstant(APInt(Val).zextOrTrunc(BitWidth), VT);
2115    case ISD::UINT_TO_FP:
2116    case ISD::SINT_TO_FP: {
2117      const uint64_t zero[] = {0, 0};
2118      // No compile time operations on this type.
2119      if (VT==MVT::ppcf128)
2120        break;
2121      APFloat apf = APFloat(APInt(BitWidth, 2, zero));
2122      (void)apf.convertFromAPInt(Val,
2123                                 Opcode==ISD::SINT_TO_FP,
2124                                 APFloat::rmNearestTiesToEven);
2125      return getConstantFP(apf, VT);
2126    }
2127    case ISD::BIT_CONVERT:
2128      if (VT == MVT::f32 && C->getValueType(0) == MVT::i32)
2129        return getConstantFP(Val.bitsToFloat(), VT);
2130      else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64)
2131        return getConstantFP(Val.bitsToDouble(), VT);
2132      break;
2133    case ISD::BSWAP:
2134      return getConstant(Val.byteSwap(), VT);
2135    case ISD::CTPOP:
2136      return getConstant(Val.countPopulation(), VT);
2137    case ISD::CTLZ:
2138      return getConstant(Val.countLeadingZeros(), VT);
2139    case ISD::CTTZ:
2140      return getConstant(Val.countTrailingZeros(), VT);
2141    }
2142  }
2143
2144  // Constant fold unary operations with a floating point constant operand.
2145  if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.getNode())) {
2146    APFloat V = C->getValueAPF();    // make copy
2147    if (VT != MVT::ppcf128 && Operand.getValueType() != MVT::ppcf128) {
2148      switch (Opcode) {
2149      case ISD::FNEG:
2150        V.changeSign();
2151        return getConstantFP(V, VT);
2152      case ISD::FABS:
2153        V.clearSign();
2154        return getConstantFP(V, VT);
2155      case ISD::FP_ROUND:
2156      case ISD::FP_EXTEND: {
2157        bool ignored;
2158        // This can return overflow, underflow, or inexact; we don't care.
2159        // FIXME need to be more flexible about rounding mode.
2160        (void)V.convert(*MVTToAPFloatSemantics(VT),
2161                        APFloat::rmNearestTiesToEven, &ignored);
2162        return getConstantFP(V, VT);
2163      }
2164      case ISD::FP_TO_SINT:
2165      case ISD::FP_TO_UINT: {
2166        integerPart x;
2167        bool ignored;
2168        assert(integerPartWidth >= 64);
2169        // FIXME need to be more flexible about rounding mode.
2170        APFloat::opStatus s = V.convertToInteger(&x, 64U,
2171                              Opcode==ISD::FP_TO_SINT,
2172                              APFloat::rmTowardZero, &ignored);
2173        if (s==APFloat::opInvalidOp)     // inexact is OK, in fact usual
2174          break;
2175        return getConstant(x, VT);
2176      }
2177      case ISD::BIT_CONVERT:
2178        if (VT == MVT::i32 && C->getValueType(0) == MVT::f32)
2179          return getConstant((uint32_t)V.bitcastToAPInt().getZExtValue(), VT);
2180        else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64)
2181          return getConstant(V.bitcastToAPInt().getZExtValue(), VT);
2182        break;
2183      }
2184    }
2185  }
2186
2187  unsigned OpOpcode = Operand.getNode()->getOpcode();
2188  switch (Opcode) {
2189  case ISD::TokenFactor:
2190  case ISD::CONCAT_VECTORS:
2191    return Operand;         // Factor or concat of one node?  No need.
2192  case ISD::FP_ROUND: assert(0 && "Invalid method to make FP_ROUND node");
2193  case ISD::FP_EXTEND:
2194    assert(VT.isFloatingPoint() &&
2195           Operand.getValueType().isFloatingPoint() && "Invalid FP cast!");
2196    if (Operand.getValueType() == VT) return Operand;  // noop conversion.
2197    if (Operand.getOpcode() == ISD::UNDEF)
2198      return getNode(ISD::UNDEF, VT);
2199    break;
2200  case ISD::SIGN_EXTEND:
2201    assert(VT.isInteger() && Operand.getValueType().isInteger() &&
2202           "Invalid SIGN_EXTEND!");
2203    if (Operand.getValueType() == VT) return Operand;   // noop extension
2204    assert(Operand.getValueType().bitsLT(VT)
2205           && "Invalid sext node, dst < src!");
2206    if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
2207      return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
2208    break;
2209  case ISD::ZERO_EXTEND:
2210    assert(VT.isInteger() && Operand.getValueType().isInteger() &&
2211           "Invalid ZERO_EXTEND!");
2212    if (Operand.getValueType() == VT) return Operand;   // noop extension
2213    assert(Operand.getValueType().bitsLT(VT)
2214           && "Invalid zext node, dst < src!");
2215    if (OpOpcode == ISD::ZERO_EXTEND)   // (zext (zext x)) -> (zext x)
2216      return getNode(ISD::ZERO_EXTEND, VT, Operand.getNode()->getOperand(0));
2217    break;
2218  case ISD::ANY_EXTEND:
2219    assert(VT.isInteger() && Operand.getValueType().isInteger() &&
2220           "Invalid ANY_EXTEND!");
2221    if (Operand.getValueType() == VT) return Operand;   // noop extension
2222    assert(Operand.getValueType().bitsLT(VT)
2223           && "Invalid anyext node, dst < src!");
2224    if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
2225      // (ext (zext x)) -> (zext x)  and  (ext (sext x)) -> (sext x)
2226      return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
2227    break;
2228  case ISD::TRUNCATE:
2229    assert(VT.isInteger() && Operand.getValueType().isInteger() &&
2230           "Invalid TRUNCATE!");
2231    if (Operand.getValueType() == VT) return Operand;   // noop truncate
2232    assert(Operand.getValueType().bitsGT(VT)
2233           && "Invalid truncate node, src < dst!");
2234    if (OpOpcode == ISD::TRUNCATE)
2235      return getNode(ISD::TRUNCATE, VT, Operand.getNode()->getOperand(0));
2236    else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
2237             OpOpcode == ISD::ANY_EXTEND) {
2238      // If the source is smaller than the dest, we still need an extend.
2239      if (Operand.getNode()->getOperand(0).getValueType().bitsLT(VT))
2240        return getNode(OpOpcode, VT, Operand.getNode()->getOperand(0));
2241      else if (Operand.getNode()->getOperand(0).getValueType().bitsGT(VT))
2242        return getNode(ISD::TRUNCATE, VT, Operand.getNode()->getOperand(0));
2243      else
2244        return Operand.getNode()->getOperand(0);
2245    }
2246    break;
2247  case ISD::BIT_CONVERT:
2248    // Basic sanity checking.
2249    assert(VT.getSizeInBits() == Operand.getValueType().getSizeInBits()
2250           && "Cannot BIT_CONVERT between types of different sizes!");
2251    if (VT == Operand.getValueType()) return Operand;  // noop conversion.
2252    if (OpOpcode == ISD::BIT_CONVERT)  // bitconv(bitconv(x)) -> bitconv(x)
2253      return getNode(ISD::BIT_CONVERT, VT, Operand.getOperand(0));
2254    if (OpOpcode == ISD::UNDEF)
2255      return getNode(ISD::UNDEF, VT);
2256    break;
2257  case ISD::SCALAR_TO_VECTOR:
2258    assert(VT.isVector() && !Operand.getValueType().isVector() &&
2259           VT.getVectorElementType() == Operand.getValueType() &&
2260           "Illegal SCALAR_TO_VECTOR node!");
2261    if (OpOpcode == ISD::UNDEF)
2262      return getNode(ISD::UNDEF, VT);
2263    // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined.
2264    if (OpOpcode == ISD::EXTRACT_VECTOR_ELT &&
2265        isa<ConstantSDNode>(Operand.getOperand(1)) &&
2266        Operand.getConstantOperandVal(1) == 0 &&
2267        Operand.getOperand(0).getValueType() == VT)
2268      return Operand.getOperand(0);
2269    break;
2270  case ISD::FNEG:
2271    if (OpOpcode == ISD::FSUB)   // -(X-Y) -> (Y-X)
2272      return getNode(ISD::FSUB, VT, Operand.getNode()->getOperand(1),
2273                     Operand.getNode()->getOperand(0));
2274    if (OpOpcode == ISD::FNEG)  // --X -> X
2275      return Operand.getNode()->getOperand(0);
2276    break;
2277  case ISD::FABS:
2278    if (OpOpcode == ISD::FNEG)  // abs(-X) -> abs(X)
2279      return getNode(ISD::FABS, VT, Operand.getNode()->getOperand(0));
2280    break;
2281  }
2282
2283  SDNode *N;
2284  SDVTList VTs = getVTList(VT);
2285  if (VT != MVT::Flag) { // Don't CSE flag producing nodes
2286    FoldingSetNodeID ID;
2287    SDValue Ops[1] = { Operand };
2288    AddNodeIDNode(ID, Opcode, VTs, Ops, 1);
2289    void *IP = 0;
2290    if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2291      return SDValue(E, 0);
2292    N = NodeAllocator.Allocate<UnarySDNode>();
2293    new (N) UnarySDNode(Opcode, VTs, Operand);
2294    CSEMap.InsertNode(N, IP);
2295  } else {
2296    N = NodeAllocator.Allocate<UnarySDNode>();
2297    new (N) UnarySDNode(Opcode, VTs, Operand);
2298  }
2299
2300  AllNodes.push_back(N);
2301#ifndef NDEBUG
2302  VerifyNode(N);
2303#endif
2304  return SDValue(N, 0);
2305}
2306
2307SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode,
2308                                             MVT VT,
2309                                             ConstantSDNode *Cst1,
2310                                             ConstantSDNode *Cst2) {
2311  const APInt &C1 = Cst1->getAPIntValue(), &C2 = Cst2->getAPIntValue();
2312
2313  switch (Opcode) {
2314  case ISD::ADD:  return getConstant(C1 + C2, VT);
2315  case ISD::SUB:  return getConstant(C1 - C2, VT);
2316  case ISD::MUL:  return getConstant(C1 * C2, VT);
2317  case ISD::UDIV:
2318    if (C2.getBoolValue()) return getConstant(C1.udiv(C2), VT);
2319    break;
2320  case ISD::UREM:
2321    if (C2.getBoolValue()) return getConstant(C1.urem(C2), VT);
2322    break;
2323  case ISD::SDIV:
2324    if (C2.getBoolValue()) return getConstant(C1.sdiv(C2), VT);
2325    break;
2326  case ISD::SREM:
2327    if (C2.getBoolValue()) return getConstant(C1.srem(C2), VT);
2328    break;
2329  case ISD::AND:  return getConstant(C1 & C2, VT);
2330  case ISD::OR:   return getConstant(C1 | C2, VT);
2331  case ISD::XOR:  return getConstant(C1 ^ C2, VT);
2332  case ISD::SHL:  return getConstant(C1 << C2, VT);
2333  case ISD::SRL:  return getConstant(C1.lshr(C2), VT);
2334  case ISD::SRA:  return getConstant(C1.ashr(C2), VT);
2335  case ISD::ROTL: return getConstant(C1.rotl(C2), VT);
2336  case ISD::ROTR: return getConstant(C1.rotr(C2), VT);
2337  default: break;
2338  }
2339
2340  return SDValue();
2341}
2342
2343SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2344                              SDValue N1, SDValue N2) {
2345  ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2346  ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
2347  switch (Opcode) {
2348  default: break;
2349  case ISD::TokenFactor:
2350    assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
2351           N2.getValueType() == MVT::Other && "Invalid token factor!");
2352    // Fold trivial token factors.
2353    if (N1.getOpcode() == ISD::EntryToken) return N2;
2354    if (N2.getOpcode() == ISD::EntryToken) return N1;
2355    if (N1 == N2) return N1;
2356    break;
2357  case ISD::CONCAT_VECTORS:
2358    // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2359    // one big BUILD_VECTOR.
2360    if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2361        N2.getOpcode() == ISD::BUILD_VECTOR) {
2362      SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2363      Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
2364      return getNode(ISD::BUILD_VECTOR, VT, &Elts[0], Elts.size());
2365    }
2366    break;
2367  case ISD::AND:
2368    assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
2369           N1.getValueType() == VT && "Binary operator types must match!");
2370    // (X & 0) -> 0.  This commonly occurs when legalizing i64 values, so it's
2371    // worth handling here.
2372    if (N2C && N2C->isNullValue())
2373      return N2;
2374    if (N2C && N2C->isAllOnesValue())  // X & -1 -> X
2375      return N1;
2376    break;
2377  case ISD::OR:
2378  case ISD::XOR:
2379  case ISD::ADD:
2380  case ISD::SUB:
2381    assert(VT.isInteger() && N1.getValueType() == N2.getValueType() &&
2382           N1.getValueType() == VT && "Binary operator types must match!");
2383    // (X ^|+- 0) -> X.  This commonly occurs when legalizing i64 values, so
2384    // it's worth handling here.
2385    if (N2C && N2C->isNullValue())
2386      return N1;
2387    break;
2388  case ISD::UDIV:
2389  case ISD::UREM:
2390  case ISD::MULHU:
2391  case ISD::MULHS:
2392    assert(VT.isInteger() && "This operator does not apply to FP types!");
2393    // fall through
2394  case ISD::MUL:
2395  case ISD::SDIV:
2396  case ISD::SREM:
2397  case ISD::FADD:
2398  case ISD::FSUB:
2399  case ISD::FMUL:
2400  case ISD::FDIV:
2401  case ISD::FREM:
2402    assert(N1.getValueType() == N2.getValueType() &&
2403           N1.getValueType() == VT && "Binary operator types must match!");
2404    break;
2405  case ISD::FCOPYSIGN:   // N1 and result must match.  N1/N2 need not match.
2406    assert(N1.getValueType() == VT &&
2407           N1.getValueType().isFloatingPoint() &&
2408           N2.getValueType().isFloatingPoint() &&
2409           "Invalid FCOPYSIGN!");
2410    break;
2411  case ISD::SHL:
2412  case ISD::SRA:
2413  case ISD::SRL:
2414  case ISD::ROTL:
2415  case ISD::ROTR:
2416    assert(VT == N1.getValueType() &&
2417           "Shift operators return type must be the same as their first arg");
2418    assert(VT.isInteger() && N2.getValueType().isInteger() &&
2419           "Shifts only work on integers");
2420    assert(N2.getValueType() == TLI.getShiftAmountTy() &&
2421           "Wrong type for shift amount");
2422
2423    // Always fold shifts of i1 values so the code generator doesn't need to
2424    // handle them.  Since we know the size of the shift has to be less than the
2425    // size of the value, the shift/rotate count is guaranteed to be zero.
2426    if (VT == MVT::i1)
2427      return N1;
2428    break;
2429  case ISD::FP_ROUND_INREG: {
2430    MVT EVT = cast<VTSDNode>(N2)->getVT();
2431    assert(VT == N1.getValueType() && "Not an inreg round!");
2432    assert(VT.isFloatingPoint() && EVT.isFloatingPoint() &&
2433           "Cannot FP_ROUND_INREG integer types");
2434    assert(EVT.bitsLE(VT) && "Not rounding down!");
2435    if (cast<VTSDNode>(N2)->getVT() == VT) return N1;  // Not actually rounding.
2436    break;
2437  }
2438  case ISD::FP_ROUND:
2439    assert(VT.isFloatingPoint() &&
2440           N1.getValueType().isFloatingPoint() &&
2441           VT.bitsLE(N1.getValueType()) &&
2442           isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!");
2443    if (N1.getValueType() == VT) return N1;  // noop conversion.
2444    break;
2445  case ISD::AssertSext:
2446  case ISD::AssertZext: {
2447    MVT EVT = cast<VTSDNode>(N2)->getVT();
2448    assert(VT == N1.getValueType() && "Not an inreg extend!");
2449    assert(VT.isInteger() && EVT.isInteger() &&
2450           "Cannot *_EXTEND_INREG FP types");
2451    assert(EVT.bitsLE(VT) && "Not extending!");
2452    if (VT == EVT) return N1; // noop assertion.
2453    break;
2454  }
2455  case ISD::SIGN_EXTEND_INREG: {
2456    MVT EVT = cast<VTSDNode>(N2)->getVT();
2457    assert(VT == N1.getValueType() && "Not an inreg extend!");
2458    assert(VT.isInteger() && EVT.isInteger() &&
2459           "Cannot *_EXTEND_INREG FP types");
2460    assert(EVT.bitsLE(VT) && "Not extending!");
2461    if (EVT == VT) return N1;  // Not actually extending
2462
2463    if (N1C) {
2464      APInt Val = N1C->getAPIntValue();
2465      unsigned FromBits = cast<VTSDNode>(N2)->getVT().getSizeInBits();
2466      Val <<= Val.getBitWidth()-FromBits;
2467      Val = Val.ashr(Val.getBitWidth()-FromBits);
2468      return getConstant(Val, VT);
2469    }
2470    break;
2471  }
2472  case ISD::EXTRACT_VECTOR_ELT:
2473    // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF.
2474    if (N1.getOpcode() == ISD::UNDEF)
2475      return getNode(ISD::UNDEF, VT);
2476
2477    // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is
2478    // expanding copies of large vectors from registers.
2479    if (N2C &&
2480        N1.getOpcode() == ISD::CONCAT_VECTORS &&
2481        N1.getNumOperands() > 0) {
2482      unsigned Factor =
2483        N1.getOperand(0).getValueType().getVectorNumElements();
2484      return getNode(ISD::EXTRACT_VECTOR_ELT, VT,
2485                     N1.getOperand(N2C->getZExtValue() / Factor),
2486                     getConstant(N2C->getZExtValue() % Factor,
2487                                 N2.getValueType()));
2488    }
2489
2490    // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is
2491    // expanding large vector constants.
2492    if (N2C && N1.getOpcode() == ISD::BUILD_VECTOR)
2493      return N1.getOperand(N2C->getZExtValue());
2494
2495    // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector
2496    // operations are lowered to scalars.
2497    if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT) {
2498      if (N1.getOperand(2) == N2)
2499        return N1.getOperand(1);
2500      else
2501        return getNode(ISD::EXTRACT_VECTOR_ELT, VT, N1.getOperand(0), N2);
2502    }
2503    break;
2504  case ISD::EXTRACT_ELEMENT:
2505    assert(N2C && (unsigned)N2C->getZExtValue() < 2 && "Bad EXTRACT_ELEMENT!");
2506    assert(!N1.getValueType().isVector() && !VT.isVector() &&
2507           (N1.getValueType().isInteger() == VT.isInteger()) &&
2508           "Wrong types for EXTRACT_ELEMENT!");
2509
2510    // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding
2511    // 64-bit integers into 32-bit parts.  Instead of building the extract of
2512    // the BUILD_PAIR, only to have legalize rip it apart, just do it now.
2513    if (N1.getOpcode() == ISD::BUILD_PAIR)
2514      return N1.getOperand(N2C->getZExtValue());
2515
2516    // EXTRACT_ELEMENT of a constant int is also very common.
2517    if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2518      unsigned ElementSize = VT.getSizeInBits();
2519      unsigned Shift = ElementSize * N2C->getZExtValue();
2520      APInt ShiftedVal = C->getAPIntValue().lshr(Shift);
2521      return getConstant(ShiftedVal.trunc(ElementSize), VT);
2522    }
2523    break;
2524  case ISD::EXTRACT_SUBVECTOR:
2525    if (N1.getValueType() == VT) // Trivial extraction.
2526      return N1;
2527    break;
2528  }
2529
2530  if (N1C) {
2531    if (N2C) {
2532      SDValue SV = FoldConstantArithmetic(Opcode, VT, N1C, N2C);
2533      if (SV.getNode()) return SV;
2534    } else {      // Cannonicalize constant to RHS if commutative
2535      if (isCommutativeBinOp(Opcode)) {
2536        std::swap(N1C, N2C);
2537        std::swap(N1, N2);
2538      }
2539    }
2540  }
2541
2542  // Constant fold FP operations.
2543  ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.getNode());
2544  ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.getNode());
2545  if (N1CFP) {
2546    if (!N2CFP && isCommutativeBinOp(Opcode)) {
2547      // Cannonicalize constant to RHS if commutative
2548      std::swap(N1CFP, N2CFP);
2549      std::swap(N1, N2);
2550    } else if (N2CFP && VT != MVT::ppcf128) {
2551      APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF();
2552      APFloat::opStatus s;
2553      switch (Opcode) {
2554      case ISD::FADD:
2555        s = V1.add(V2, APFloat::rmNearestTiesToEven);
2556        if (s != APFloat::opInvalidOp)
2557          return getConstantFP(V1, VT);
2558        break;
2559      case ISD::FSUB:
2560        s = V1.subtract(V2, APFloat::rmNearestTiesToEven);
2561        if (s!=APFloat::opInvalidOp)
2562          return getConstantFP(V1, VT);
2563        break;
2564      case ISD::FMUL:
2565        s = V1.multiply(V2, APFloat::rmNearestTiesToEven);
2566        if (s!=APFloat::opInvalidOp)
2567          return getConstantFP(V1, VT);
2568        break;
2569      case ISD::FDIV:
2570        s = V1.divide(V2, APFloat::rmNearestTiesToEven);
2571        if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2572          return getConstantFP(V1, VT);
2573        break;
2574      case ISD::FREM :
2575        s = V1.mod(V2, APFloat::rmNearestTiesToEven);
2576        if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero)
2577          return getConstantFP(V1, VT);
2578        break;
2579      case ISD::FCOPYSIGN:
2580        V1.copySign(V2);
2581        return getConstantFP(V1, VT);
2582      default: break;
2583      }
2584    }
2585  }
2586
2587  // Canonicalize an UNDEF to the RHS, even over a constant.
2588  if (N1.getOpcode() == ISD::UNDEF) {
2589    if (isCommutativeBinOp(Opcode)) {
2590      std::swap(N1, N2);
2591    } else {
2592      switch (Opcode) {
2593      case ISD::FP_ROUND_INREG:
2594      case ISD::SIGN_EXTEND_INREG:
2595      case ISD::SUB:
2596      case ISD::FSUB:
2597      case ISD::FDIV:
2598      case ISD::FREM:
2599      case ISD::SRA:
2600        return N1;     // fold op(undef, arg2) -> undef
2601      case ISD::UDIV:
2602      case ISD::SDIV:
2603      case ISD::UREM:
2604      case ISD::SREM:
2605      case ISD::SRL:
2606      case ISD::SHL:
2607        if (!VT.isVector())
2608          return getConstant(0, VT);    // fold op(undef, arg2) -> 0
2609        // For vectors, we can't easily build an all zero vector, just return
2610        // the LHS.
2611        return N2;
2612      }
2613    }
2614  }
2615
2616  // Fold a bunch of operators when the RHS is undef.
2617  if (N2.getOpcode() == ISD::UNDEF) {
2618    switch (Opcode) {
2619    case ISD::XOR:
2620      if (N1.getOpcode() == ISD::UNDEF)
2621        // Handle undef ^ undef -> 0 special case. This is a common
2622        // idiom (misuse).
2623        return getConstant(0, VT);
2624      // fallthrough
2625    case ISD::ADD:
2626    case ISD::ADDC:
2627    case ISD::ADDE:
2628    case ISD::SUB:
2629    case ISD::FADD:
2630    case ISD::FSUB:
2631    case ISD::FMUL:
2632    case ISD::FDIV:
2633    case ISD::FREM:
2634    case ISD::UDIV:
2635    case ISD::SDIV:
2636    case ISD::UREM:
2637    case ISD::SREM:
2638      return N2;       // fold op(arg1, undef) -> undef
2639    case ISD::MUL:
2640    case ISD::AND:
2641    case ISD::SRL:
2642    case ISD::SHL:
2643      if (!VT.isVector())
2644        return getConstant(0, VT);  // fold op(arg1, undef) -> 0
2645      // For vectors, we can't easily build an all zero vector, just return
2646      // the LHS.
2647      return N1;
2648    case ISD::OR:
2649      if (!VT.isVector())
2650        return getConstant(VT.getIntegerVTBitMask(), VT);
2651      // For vectors, we can't easily build an all one vector, just return
2652      // the LHS.
2653      return N1;
2654    case ISD::SRA:
2655      return N1;
2656    }
2657  }
2658
2659  // Memoize this node if possible.
2660  SDNode *N;
2661  SDVTList VTs = getVTList(VT);
2662  if (VT != MVT::Flag) {
2663    SDValue Ops[] = { N1, N2 };
2664    FoldingSetNodeID ID;
2665    AddNodeIDNode(ID, Opcode, VTs, Ops, 2);
2666    void *IP = 0;
2667    if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2668      return SDValue(E, 0);
2669    N = NodeAllocator.Allocate<BinarySDNode>();
2670    new (N) BinarySDNode(Opcode, VTs, N1, N2);
2671    CSEMap.InsertNode(N, IP);
2672  } else {
2673    N = NodeAllocator.Allocate<BinarySDNode>();
2674    new (N) BinarySDNode(Opcode, VTs, N1, N2);
2675  }
2676
2677  AllNodes.push_back(N);
2678#ifndef NDEBUG
2679  VerifyNode(N);
2680#endif
2681  return SDValue(N, 0);
2682}
2683
2684SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2685                              SDValue N1, SDValue N2, SDValue N3) {
2686  // Perform various simplifications.
2687  ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
2688  ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
2689  switch (Opcode) {
2690  case ISD::CONCAT_VECTORS:
2691    // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to
2692    // one big BUILD_VECTOR.
2693    if (N1.getOpcode() == ISD::BUILD_VECTOR &&
2694        N2.getOpcode() == ISD::BUILD_VECTOR &&
2695        N3.getOpcode() == ISD::BUILD_VECTOR) {
2696      SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), N1.getNode()->op_end());
2697      Elts.insert(Elts.end(), N2.getNode()->op_begin(), N2.getNode()->op_end());
2698      Elts.insert(Elts.end(), N3.getNode()->op_begin(), N3.getNode()->op_end());
2699      return getNode(ISD::BUILD_VECTOR, VT, &Elts[0], Elts.size());
2700    }
2701    break;
2702  case ISD::SETCC: {
2703    // Use FoldSetCC to simplify SETCC's.
2704    SDValue Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
2705    if (Simp.getNode()) return Simp;
2706    break;
2707  }
2708  case ISD::SELECT:
2709    if (N1C) {
2710     if (N1C->getZExtValue())
2711        return N2;             // select true, X, Y -> X
2712      else
2713        return N3;             // select false, X, Y -> Y
2714    }
2715
2716    if (N2 == N3) return N2;   // select C, X, X -> X
2717    break;
2718  case ISD::BRCOND:
2719    if (N2C) {
2720      if (N2C->getZExtValue()) // Unconditional branch
2721        return getNode(ISD::BR, MVT::Other, N1, N3);
2722      else
2723        return N1;         // Never-taken branch
2724    }
2725    break;
2726  case ISD::VECTOR_SHUFFLE:
2727    assert(N1.getValueType() == N2.getValueType() &&
2728           N1.getValueType().isVector() &&
2729           VT.isVector() && N3.getValueType().isVector() &&
2730           N3.getOpcode() == ISD::BUILD_VECTOR &&
2731           VT.getVectorNumElements() == N3.getNumOperands() &&
2732           "Illegal VECTOR_SHUFFLE node!");
2733    break;
2734  case ISD::BIT_CONVERT:
2735    // Fold bit_convert nodes from a type to themselves.
2736    if (N1.getValueType() == VT)
2737      return N1;
2738    break;
2739  }
2740
2741  // Memoize node if it doesn't produce a flag.
2742  SDNode *N;
2743  SDVTList VTs = getVTList(VT);
2744  if (VT != MVT::Flag) {
2745    SDValue Ops[] = { N1, N2, N3 };
2746    FoldingSetNodeID ID;
2747    AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
2748    void *IP = 0;
2749    if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
2750      return SDValue(E, 0);
2751    N = NodeAllocator.Allocate<TernarySDNode>();
2752    new (N) TernarySDNode(Opcode, VTs, N1, N2, N3);
2753    CSEMap.InsertNode(N, IP);
2754  } else {
2755    N = NodeAllocator.Allocate<TernarySDNode>();
2756    new (N) TernarySDNode(Opcode, VTs, N1, N2, N3);
2757  }
2758  AllNodes.push_back(N);
2759#ifndef NDEBUG
2760  VerifyNode(N);
2761#endif
2762  return SDValue(N, 0);
2763}
2764
2765SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2766                              SDValue N1, SDValue N2, SDValue N3,
2767                              SDValue N4) {
2768  SDValue Ops[] = { N1, N2, N3, N4 };
2769  return getNode(Opcode, VT, Ops, 4);
2770}
2771
2772SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
2773                              SDValue N1, SDValue N2, SDValue N3,
2774                              SDValue N4, SDValue N5) {
2775  SDValue Ops[] = { N1, N2, N3, N4, N5 };
2776  return getNode(Opcode, VT, Ops, 5);
2777}
2778
2779/// getMemsetValue - Vectorized representation of the memset value
2780/// operand.
2781static SDValue getMemsetValue(SDValue Value, MVT VT, SelectionDAG &DAG) {
2782  unsigned NumBits = VT.isVector() ?
2783    VT.getVectorElementType().getSizeInBits() : VT.getSizeInBits();
2784  if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) {
2785    APInt Val = APInt(NumBits, C->getZExtValue() & 255);
2786    unsigned Shift = 8;
2787    for (unsigned i = NumBits; i > 8; i >>= 1) {
2788      Val = (Val << Shift) | Val;
2789      Shift <<= 1;
2790    }
2791    if (VT.isInteger())
2792      return DAG.getConstant(Val, VT);
2793    return DAG.getConstantFP(APFloat(Val), VT);
2794  }
2795
2796  const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2797  Value = DAG.getNode(ISD::ZERO_EXTEND, VT, Value);
2798  unsigned Shift = 8;
2799  for (unsigned i = NumBits; i > 8; i >>= 1) {
2800    Value = DAG.getNode(ISD::OR, VT,
2801                        DAG.getNode(ISD::SHL, VT, Value,
2802                                    DAG.getConstant(Shift,
2803                                                    TLI.getShiftAmountTy())),
2804                        Value);
2805    Shift <<= 1;
2806  }
2807
2808  return Value;
2809}
2810
2811/// getMemsetStringVal - Similar to getMemsetValue. Except this is only
2812/// used when a memcpy is turned into a memset when the source is a constant
2813/// string ptr.
2814static SDValue getMemsetStringVal(MVT VT, SelectionDAG &DAG,
2815                                    const TargetLowering &TLI,
2816                                    std::string &Str, unsigned Offset) {
2817  // Handle vector with all elements zero.
2818  if (Str.empty()) {
2819    if (VT.isInteger())
2820      return DAG.getConstant(0, VT);
2821    unsigned NumElts = VT.getVectorNumElements();
2822    MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64;
2823    return DAG.getNode(ISD::BIT_CONVERT, VT,
2824                       DAG.getConstant(0, MVT::getVectorVT(EltVT, NumElts)));
2825  }
2826
2827  assert(!VT.isVector() && "Can't handle vector type here!");
2828  unsigned NumBits = VT.getSizeInBits();
2829  unsigned MSB = NumBits / 8;
2830  uint64_t Val = 0;
2831  if (TLI.isLittleEndian())
2832    Offset = Offset + MSB - 1;
2833  for (unsigned i = 0; i != MSB; ++i) {
2834    Val = (Val << 8) | (unsigned char)Str[Offset];
2835    Offset += TLI.isLittleEndian() ? -1 : 1;
2836  }
2837  return DAG.getConstant(Val, VT);
2838}
2839
2840/// getMemBasePlusOffset - Returns base and offset node for the
2841///
2842static SDValue getMemBasePlusOffset(SDValue Base, unsigned Offset,
2843                                      SelectionDAG &DAG) {
2844  MVT VT = Base.getValueType();
2845  return DAG.getNode(ISD::ADD, VT, Base, DAG.getConstant(Offset, VT));
2846}
2847
2848/// isMemSrcFromString - Returns true if memcpy source is a string constant.
2849///
2850static bool isMemSrcFromString(SDValue Src, std::string &Str) {
2851  unsigned SrcDelta = 0;
2852  GlobalAddressSDNode *G = NULL;
2853  if (Src.getOpcode() == ISD::GlobalAddress)
2854    G = cast<GlobalAddressSDNode>(Src);
2855  else if (Src.getOpcode() == ISD::ADD &&
2856           Src.getOperand(0).getOpcode() == ISD::GlobalAddress &&
2857           Src.getOperand(1).getOpcode() == ISD::Constant) {
2858    G = cast<GlobalAddressSDNode>(Src.getOperand(0));
2859    SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getZExtValue();
2860  }
2861  if (!G)
2862    return false;
2863
2864  GlobalVariable *GV = dyn_cast<GlobalVariable>(G->getGlobal());
2865  if (GV && GetConstantStringInfo(GV, Str, SrcDelta, false))
2866    return true;
2867
2868  return false;
2869}
2870
2871/// MeetsMaxMemopRequirement - Determines if the number of memory ops required
2872/// to replace the memset / memcpy is below the threshold. It also returns the
2873/// types of the sequence of memory ops to perform memset / memcpy.
2874static
2875bool MeetsMaxMemopRequirement(std::vector<MVT> &MemOps,
2876                              SDValue Dst, SDValue Src,
2877                              unsigned Limit, uint64_t Size, unsigned &Align,
2878                              std::string &Str, bool &isSrcStr,
2879                              SelectionDAG &DAG,
2880                              const TargetLowering &TLI) {
2881  isSrcStr = isMemSrcFromString(Src, Str);
2882  bool isSrcConst = isa<ConstantSDNode>(Src);
2883  bool AllowUnalign = TLI.allowsUnalignedMemoryAccesses();
2884  MVT VT = TLI.getOptimalMemOpType(Size, Align, isSrcConst, isSrcStr);
2885  if (VT != MVT::iAny) {
2886    unsigned NewAlign = (unsigned)
2887      TLI.getTargetData()->getABITypeAlignment(VT.getTypeForMVT());
2888    // If source is a string constant, this will require an unaligned load.
2889    if (NewAlign > Align && (isSrcConst || AllowUnalign)) {
2890      if (Dst.getOpcode() != ISD::FrameIndex) {
2891        // Can't change destination alignment. It requires a unaligned store.
2892        if (AllowUnalign)
2893          VT = MVT::iAny;
2894      } else {
2895        int FI = cast<FrameIndexSDNode>(Dst)->getIndex();
2896        MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
2897        if (MFI->isFixedObjectIndex(FI)) {
2898          // Can't change destination alignment. It requires a unaligned store.
2899          if (AllowUnalign)
2900            VT = MVT::iAny;
2901        } else {
2902          // Give the stack frame object a larger alignment if needed.
2903          if (MFI->getObjectAlignment(FI) < NewAlign)
2904            MFI->setObjectAlignment(FI, NewAlign);
2905          Align = NewAlign;
2906        }
2907      }
2908    }
2909  }
2910
2911  if (VT == MVT::iAny) {
2912    if (AllowUnalign) {
2913      VT = MVT::i64;
2914    } else {
2915      switch (Align & 7) {
2916      case 0:  VT = MVT::i64; break;
2917      case 4:  VT = MVT::i32; break;
2918      case 2:  VT = MVT::i16; break;
2919      default: VT = MVT::i8;  break;
2920      }
2921    }
2922
2923    MVT LVT = MVT::i64;
2924    while (!TLI.isTypeLegal(LVT))
2925      LVT = (MVT::SimpleValueType)(LVT.getSimpleVT() - 1);
2926    assert(LVT.isInteger());
2927
2928    if (VT.bitsGT(LVT))
2929      VT = LVT;
2930  }
2931
2932  unsigned NumMemOps = 0;
2933  while (Size != 0) {
2934    unsigned VTSize = VT.getSizeInBits() / 8;
2935    while (VTSize > Size) {
2936      // For now, only use non-vector load / store's for the left-over pieces.
2937      if (VT.isVector()) {
2938        VT = MVT::i64;
2939        while (!TLI.isTypeLegal(VT))
2940          VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
2941        VTSize = VT.getSizeInBits() / 8;
2942      } else {
2943        VT = (MVT::SimpleValueType)(VT.getSimpleVT() - 1);
2944        VTSize >>= 1;
2945      }
2946    }
2947
2948    if (++NumMemOps > Limit)
2949      return false;
2950    MemOps.push_back(VT);
2951    Size -= VTSize;
2952  }
2953
2954  return true;
2955}
2956
2957static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG,
2958                                         SDValue Chain, SDValue Dst,
2959                                         SDValue Src, uint64_t Size,
2960                                         unsigned Align, bool AlwaysInline,
2961                                         const Value *DstSV, uint64_t DstSVOff,
2962                                         const Value *SrcSV, uint64_t SrcSVOff){
2963  const TargetLowering &TLI = DAG.getTargetLoweringInfo();
2964
2965  // Expand memcpy to a series of load and store ops if the size operand falls
2966  // below a certain threshold.
2967  std::vector<MVT> MemOps;
2968  uint64_t Limit = -1ULL;
2969  if (!AlwaysInline)
2970    Limit = TLI.getMaxStoresPerMemcpy();
2971  unsigned DstAlign = Align;  // Destination alignment can change.
2972  std::string Str;
2973  bool CopyFromStr;
2974  if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
2975                                Str, CopyFromStr, DAG, TLI))
2976    return SDValue();
2977
2978
2979  bool isZeroStr = CopyFromStr && Str.empty();
2980  SmallVector<SDValue, 8> OutChains;
2981  unsigned NumMemOps = MemOps.size();
2982  uint64_t SrcOff = 0, DstOff = 0;
2983  for (unsigned i = 0; i < NumMemOps; i++) {
2984    MVT VT = MemOps[i];
2985    unsigned VTSize = VT.getSizeInBits() / 8;
2986    SDValue Value, Store;
2987
2988    if (CopyFromStr && (isZeroStr || !VT.isVector())) {
2989      // It's unlikely a store of a vector immediate can be done in a single
2990      // instruction. It would require a load from a constantpool first.
2991      // We also handle store a vector with all zero's.
2992      // FIXME: Handle other cases where store of vector immediate is done in
2993      // a single instruction.
2994      Value = getMemsetStringVal(VT, DAG, TLI, Str, SrcOff);
2995      Store = DAG.getStore(Chain, Value,
2996                           getMemBasePlusOffset(Dst, DstOff, DAG),
2997                           DstSV, DstSVOff + DstOff, false, DstAlign);
2998    } else {
2999      Value = DAG.getLoad(VT, Chain,
3000                          getMemBasePlusOffset(Src, SrcOff, DAG),
3001                          SrcSV, SrcSVOff + SrcOff, false, Align);
3002      Store = DAG.getStore(Chain, Value,
3003                           getMemBasePlusOffset(Dst, DstOff, DAG),
3004                           DstSV, DstSVOff + DstOff, false, DstAlign);
3005    }
3006    OutChains.push_back(Store);
3007    SrcOff += VTSize;
3008    DstOff += VTSize;
3009  }
3010
3011  return DAG.getNode(ISD::TokenFactor, MVT::Other,
3012                     &OutChains[0], OutChains.size());
3013}
3014
3015static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG,
3016                                          SDValue Chain, SDValue Dst,
3017                                          SDValue Src, uint64_t Size,
3018                                          unsigned Align, bool AlwaysInline,
3019                                          const Value *DstSV, uint64_t DstSVOff,
3020                                          const Value *SrcSV, uint64_t SrcSVOff){
3021  const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3022
3023  // Expand memmove to a series of load and store ops if the size operand falls
3024  // below a certain threshold.
3025  std::vector<MVT> MemOps;
3026  uint64_t Limit = -1ULL;
3027  if (!AlwaysInline)
3028    Limit = TLI.getMaxStoresPerMemmove();
3029  unsigned DstAlign = Align;  // Destination alignment can change.
3030  std::string Str;
3031  bool CopyFromStr;
3032  if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, Limit, Size, DstAlign,
3033                                Str, CopyFromStr, DAG, TLI))
3034    return SDValue();
3035
3036  uint64_t SrcOff = 0, DstOff = 0;
3037
3038  SmallVector<SDValue, 8> LoadValues;
3039  SmallVector<SDValue, 8> LoadChains;
3040  SmallVector<SDValue, 8> OutChains;
3041  unsigned NumMemOps = MemOps.size();
3042  for (unsigned i = 0; i < NumMemOps; i++) {
3043    MVT VT = MemOps[i];
3044    unsigned VTSize = VT.getSizeInBits() / 8;
3045    SDValue Value, Store;
3046
3047    Value = DAG.getLoad(VT, Chain,
3048                        getMemBasePlusOffset(Src, SrcOff, DAG),
3049                        SrcSV, SrcSVOff + SrcOff, false, Align);
3050    LoadValues.push_back(Value);
3051    LoadChains.push_back(Value.getValue(1));
3052    SrcOff += VTSize;
3053  }
3054  Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
3055                      &LoadChains[0], LoadChains.size());
3056  OutChains.clear();
3057  for (unsigned i = 0; i < NumMemOps; i++) {
3058    MVT VT = MemOps[i];
3059    unsigned VTSize = VT.getSizeInBits() / 8;
3060    SDValue Value, Store;
3061
3062    Store = DAG.getStore(Chain, LoadValues[i],
3063                         getMemBasePlusOffset(Dst, DstOff, DAG),
3064                         DstSV, DstSVOff + DstOff, false, DstAlign);
3065    OutChains.push_back(Store);
3066    DstOff += VTSize;
3067  }
3068
3069  return DAG.getNode(ISD::TokenFactor, MVT::Other,
3070                     &OutChains[0], OutChains.size());
3071}
3072
3073static SDValue getMemsetStores(SelectionDAG &DAG,
3074                                 SDValue Chain, SDValue Dst,
3075                                 SDValue Src, uint64_t Size,
3076                                 unsigned Align,
3077                                 const Value *DstSV, uint64_t DstSVOff) {
3078  const TargetLowering &TLI = DAG.getTargetLoweringInfo();
3079
3080  // Expand memset to a series of load/store ops if the size operand
3081  // falls below a certain threshold.
3082  std::vector<MVT> MemOps;
3083  std::string Str;
3084  bool CopyFromStr;
3085  if (!MeetsMaxMemopRequirement(MemOps, Dst, Src, TLI.getMaxStoresPerMemset(),
3086                                Size, Align, Str, CopyFromStr, DAG, TLI))
3087    return SDValue();
3088
3089  SmallVector<SDValue, 8> OutChains;
3090  uint64_t DstOff = 0;
3091
3092  unsigned NumMemOps = MemOps.size();
3093  for (unsigned i = 0; i < NumMemOps; i++) {
3094    MVT VT = MemOps[i];
3095    unsigned VTSize = VT.getSizeInBits() / 8;
3096    SDValue Value = getMemsetValue(Src, VT, DAG);
3097    SDValue Store = DAG.getStore(Chain, Value,
3098                                 getMemBasePlusOffset(Dst, DstOff, DAG),
3099                                 DstSV, DstSVOff + DstOff);
3100    OutChains.push_back(Store);
3101    DstOff += VTSize;
3102  }
3103
3104  return DAG.getNode(ISD::TokenFactor, MVT::Other,
3105                     &OutChains[0], OutChains.size());
3106}
3107
3108SDValue SelectionDAG::getMemcpy(SDValue Chain, SDValue Dst,
3109                                SDValue Src, SDValue Size,
3110                                unsigned Align, bool AlwaysInline,
3111                                const Value *DstSV, uint64_t DstSVOff,
3112                                const Value *SrcSV, uint64_t SrcSVOff) {
3113
3114  // Check to see if we should lower the memcpy to loads and stores first.
3115  // For cases within the target-specified limits, this is the best choice.
3116  ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3117  if (ConstantSize) {
3118    // Memcpy with size zero? Just return the original chain.
3119    if (ConstantSize->isNullValue())
3120      return Chain;
3121
3122    SDValue Result =
3123      getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
3124                              ConstantSize->getZExtValue(),
3125                              Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
3126    if (Result.getNode())
3127      return Result;
3128  }
3129
3130  // Then check to see if we should lower the memcpy with target-specific
3131  // code. If the target chooses to do this, this is the next best.
3132  SDValue Result =
3133    TLI.EmitTargetCodeForMemcpy(*this, Chain, Dst, Src, Size, Align,
3134                                AlwaysInline,
3135                                DstSV, DstSVOff, SrcSV, SrcSVOff);
3136  if (Result.getNode())
3137    return Result;
3138
3139  // If we really need inline code and the target declined to provide it,
3140  // use a (potentially long) sequence of loads and stores.
3141  if (AlwaysInline) {
3142    assert(ConstantSize && "AlwaysInline requires a constant size!");
3143    return getMemcpyLoadsAndStores(*this, Chain, Dst, Src,
3144                                   ConstantSize->getZExtValue(), Align, true,
3145                                   DstSV, DstSVOff, SrcSV, SrcSVOff);
3146  }
3147
3148  // Emit a library call.
3149  TargetLowering::ArgListTy Args;
3150  TargetLowering::ArgListEntry Entry;
3151  Entry.Ty = TLI.getTargetData()->getIntPtrType();
3152  Entry.Node = Dst; Args.push_back(Entry);
3153  Entry.Node = Src; Args.push_back(Entry);
3154  Entry.Node = Size; Args.push_back(Entry);
3155  std::pair<SDValue,SDValue> CallResult =
3156    TLI.LowerCallTo(Chain, Type::VoidTy,
3157                    false, false, false, false, CallingConv::C, false,
3158                    getExternalSymbol("memcpy", TLI.getPointerTy()),
3159                    Args, *this);
3160  return CallResult.second;
3161}
3162
3163SDValue SelectionDAG::getMemmove(SDValue Chain, SDValue Dst,
3164                                 SDValue Src, SDValue Size,
3165                                 unsigned Align,
3166                                 const Value *DstSV, uint64_t DstSVOff,
3167                                 const Value *SrcSV, uint64_t SrcSVOff) {
3168
3169  // Check to see if we should lower the memmove to loads and stores first.
3170  // For cases within the target-specified limits, this is the best choice.
3171  ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3172  if (ConstantSize) {
3173    // Memmove with size zero? Just return the original chain.
3174    if (ConstantSize->isNullValue())
3175      return Chain;
3176
3177    SDValue Result =
3178      getMemmoveLoadsAndStores(*this, Chain, Dst, Src,
3179                               ConstantSize->getZExtValue(),
3180                               Align, false, DstSV, DstSVOff, SrcSV, SrcSVOff);
3181    if (Result.getNode())
3182      return Result;
3183  }
3184
3185  // Then check to see if we should lower the memmove with target-specific
3186  // code. If the target chooses to do this, this is the next best.
3187  SDValue Result =
3188    TLI.EmitTargetCodeForMemmove(*this, Chain, Dst, Src, Size, Align,
3189                                 DstSV, DstSVOff, SrcSV, SrcSVOff);
3190  if (Result.getNode())
3191    return Result;
3192
3193  // Emit a library call.
3194  TargetLowering::ArgListTy Args;
3195  TargetLowering::ArgListEntry Entry;
3196  Entry.Ty = TLI.getTargetData()->getIntPtrType();
3197  Entry.Node = Dst; Args.push_back(Entry);
3198  Entry.Node = Src; Args.push_back(Entry);
3199  Entry.Node = Size; Args.push_back(Entry);
3200  std::pair<SDValue,SDValue> CallResult =
3201    TLI.LowerCallTo(Chain, Type::VoidTy,
3202                    false, false, false, false, CallingConv::C, false,
3203                    getExternalSymbol("memmove", TLI.getPointerTy()),
3204                    Args, *this);
3205  return CallResult.second;
3206}
3207
3208SDValue SelectionDAG::getMemset(SDValue Chain, SDValue Dst,
3209                                SDValue Src, SDValue Size,
3210                                unsigned Align,
3211                                const Value *DstSV, uint64_t DstSVOff) {
3212
3213  // Check to see if we should lower the memset to stores first.
3214  // For cases within the target-specified limits, this is the best choice.
3215  ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
3216  if (ConstantSize) {
3217    // Memset with size zero? Just return the original chain.
3218    if (ConstantSize->isNullValue())
3219      return Chain;
3220
3221    SDValue Result =
3222      getMemsetStores(*this, Chain, Dst, Src, ConstantSize->getZExtValue(),
3223                      Align, DstSV, DstSVOff);
3224    if (Result.getNode())
3225      return Result;
3226  }
3227
3228  // Then check to see if we should lower the memset with target-specific
3229  // code. If the target chooses to do this, this is the next best.
3230  SDValue Result =
3231    TLI.EmitTargetCodeForMemset(*this, Chain, Dst, Src, Size, Align,
3232                                DstSV, DstSVOff);
3233  if (Result.getNode())
3234    return Result;
3235
3236  // Emit a library call.
3237  const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
3238  TargetLowering::ArgListTy Args;
3239  TargetLowering::ArgListEntry Entry;
3240  Entry.Node = Dst; Entry.Ty = IntPtrTy;
3241  Args.push_back(Entry);
3242  // Extend or truncate the argument to be an i32 value for the call.
3243  if (Src.getValueType().bitsGT(MVT::i32))
3244    Src = getNode(ISD::TRUNCATE, MVT::i32, Src);
3245  else
3246    Src = getNode(ISD::ZERO_EXTEND, MVT::i32, Src);
3247  Entry.Node = Src; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
3248  Args.push_back(Entry);
3249  Entry.Node = Size; Entry.Ty = IntPtrTy; Entry.isSExt = false;
3250  Args.push_back(Entry);
3251  std::pair<SDValue,SDValue> CallResult =
3252    TLI.LowerCallTo(Chain, Type::VoidTy,
3253                    false, false, false, false, CallingConv::C, false,
3254                    getExternalSymbol("memset", TLI.getPointerTy()),
3255                    Args, *this);
3256  return CallResult.second;
3257}
3258
3259SDValue SelectionDAG::getAtomic(unsigned Opcode, SDValue Chain,
3260                                SDValue Ptr, SDValue Cmp,
3261                                SDValue Swp, const Value* PtrVal,
3262                                unsigned Alignment) {
3263  assert((Opcode == ISD::ATOMIC_CMP_SWAP_8  ||
3264          Opcode == ISD::ATOMIC_CMP_SWAP_16 ||
3265          Opcode == ISD::ATOMIC_CMP_SWAP_32 ||
3266          Opcode == ISD::ATOMIC_CMP_SWAP_64) && "Invalid Atomic Op");
3267  assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types");
3268
3269  MVT VT = Cmp.getValueType();
3270
3271  if (Alignment == 0)  // Ensure that codegen never sees alignment 0
3272    Alignment = getMVTAlignment(VT);
3273
3274  SDVTList VTs = getVTList(VT, MVT::Other);
3275  FoldingSetNodeID ID;
3276  SDValue Ops[] = {Chain, Ptr, Cmp, Swp};
3277  AddNodeIDNode(ID, Opcode, VTs, Ops, 4);
3278  void* IP = 0;
3279  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3280    return SDValue(E, 0);
3281  SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
3282  new (N) AtomicSDNode(Opcode, VTs, Chain, Ptr, Cmp, Swp, PtrVal, Alignment);
3283  CSEMap.InsertNode(N, IP);
3284  AllNodes.push_back(N);
3285  return SDValue(N, 0);
3286}
3287
3288SDValue SelectionDAG::getAtomic(unsigned Opcode, SDValue Chain,
3289                                SDValue Ptr, SDValue Val,
3290                                const Value* PtrVal,
3291                                unsigned Alignment) {
3292  assert((Opcode == ISD::ATOMIC_LOAD_ADD_8 ||
3293          Opcode == ISD::ATOMIC_LOAD_SUB_8 ||
3294          Opcode == ISD::ATOMIC_LOAD_AND_8 ||
3295          Opcode == ISD::ATOMIC_LOAD_OR_8 ||
3296          Opcode == ISD::ATOMIC_LOAD_XOR_8 ||
3297          Opcode == ISD::ATOMIC_LOAD_NAND_8 ||
3298          Opcode == ISD::ATOMIC_LOAD_MIN_8 ||
3299          Opcode == ISD::ATOMIC_LOAD_MAX_8 ||
3300          Opcode == ISD::ATOMIC_LOAD_UMIN_8 ||
3301          Opcode == ISD::ATOMIC_LOAD_UMAX_8 ||
3302          Opcode == ISD::ATOMIC_SWAP_8 ||
3303          Opcode == ISD::ATOMIC_LOAD_ADD_16 ||
3304          Opcode == ISD::ATOMIC_LOAD_SUB_16 ||
3305          Opcode == ISD::ATOMIC_LOAD_AND_16 ||
3306          Opcode == ISD::ATOMIC_LOAD_OR_16 ||
3307          Opcode == ISD::ATOMIC_LOAD_XOR_16 ||
3308          Opcode == ISD::ATOMIC_LOAD_NAND_16 ||
3309          Opcode == ISD::ATOMIC_LOAD_MIN_16 ||
3310          Opcode == ISD::ATOMIC_LOAD_MAX_16 ||
3311          Opcode == ISD::ATOMIC_LOAD_UMIN_16 ||
3312          Opcode == ISD::ATOMIC_LOAD_UMAX_16 ||
3313          Opcode == ISD::ATOMIC_SWAP_16 ||
3314          Opcode == ISD::ATOMIC_LOAD_ADD_32 ||
3315          Opcode == ISD::ATOMIC_LOAD_SUB_32 ||
3316          Opcode == ISD::ATOMIC_LOAD_AND_32 ||
3317          Opcode == ISD::ATOMIC_LOAD_OR_32 ||
3318          Opcode == ISD::ATOMIC_LOAD_XOR_32 ||
3319          Opcode == ISD::ATOMIC_LOAD_NAND_32 ||
3320          Opcode == ISD::ATOMIC_LOAD_MIN_32 ||
3321          Opcode == ISD::ATOMIC_LOAD_MAX_32 ||
3322          Opcode == ISD::ATOMIC_LOAD_UMIN_32 ||
3323          Opcode == ISD::ATOMIC_LOAD_UMAX_32 ||
3324          Opcode == ISD::ATOMIC_SWAP_32 ||
3325          Opcode == ISD::ATOMIC_LOAD_ADD_64 ||
3326          Opcode == ISD::ATOMIC_LOAD_SUB_64 ||
3327          Opcode == ISD::ATOMIC_LOAD_AND_64 ||
3328          Opcode == ISD::ATOMIC_LOAD_OR_64 ||
3329          Opcode == ISD::ATOMIC_LOAD_XOR_64 ||
3330          Opcode == ISD::ATOMIC_LOAD_NAND_64 ||
3331          Opcode == ISD::ATOMIC_LOAD_MIN_64 ||
3332          Opcode == ISD::ATOMIC_LOAD_MAX_64 ||
3333          Opcode == ISD::ATOMIC_LOAD_UMIN_64 ||
3334          Opcode == ISD::ATOMIC_LOAD_UMAX_64 ||
3335          Opcode == ISD::ATOMIC_SWAP_64)        && "Invalid Atomic Op");
3336
3337  MVT VT = Val.getValueType();
3338
3339  if (Alignment == 0)  // Ensure that codegen never sees alignment 0
3340    Alignment = getMVTAlignment(VT);
3341
3342  SDVTList VTs = getVTList(VT, MVT::Other);
3343  FoldingSetNodeID ID;
3344  SDValue Ops[] = {Chain, Ptr, Val};
3345  AddNodeIDNode(ID, Opcode, VTs, Ops, 3);
3346  void* IP = 0;
3347  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3348    return SDValue(E, 0);
3349  SDNode* N = NodeAllocator.Allocate<AtomicSDNode>();
3350  new (N) AtomicSDNode(Opcode, VTs, Chain, Ptr, Val, PtrVal, Alignment);
3351  CSEMap.InsertNode(N, IP);
3352  AllNodes.push_back(N);
3353  return SDValue(N, 0);
3354}
3355
3356/// getMergeValues - Create a MERGE_VALUES node from the given operands.
3357/// Allowed to return something different (and simpler) if Simplify is true.
3358SDValue SelectionDAG::getMergeValues(const SDValue *Ops, unsigned NumOps,
3359                                     bool Simplify) {
3360  if (Simplify && NumOps == 1)
3361    return Ops[0];
3362
3363  SmallVector<MVT, 4> VTs;
3364  VTs.reserve(NumOps);
3365  for (unsigned i = 0; i < NumOps; ++i)
3366    VTs.push_back(Ops[i].getValueType());
3367  return getNode(ISD::MERGE_VALUES, getVTList(&VTs[0], NumOps), Ops, NumOps);
3368}
3369
3370SDValue
3371SelectionDAG::getMemIntrinsicNode(unsigned Opcode,
3372                                  const MVT *VTs, unsigned NumVTs,
3373                                  const SDValue *Ops, unsigned NumOps,
3374                                  MVT MemVT, const Value *srcValue, int SVOff,
3375                                  unsigned Align, bool Vol,
3376                                  bool ReadMem, bool WriteMem) {
3377  return getMemIntrinsicNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps,
3378                             MemVT, srcValue, SVOff, Align, Vol,
3379                             ReadMem, WriteMem);
3380}
3381
3382SDValue
3383SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDVTList VTList,
3384                                  const SDValue *Ops, unsigned NumOps,
3385                                  MVT MemVT, const Value *srcValue, int SVOff,
3386                                  unsigned Align, bool Vol,
3387                                  bool ReadMem, bool WriteMem) {
3388  // Memoize the node unless it returns a flag.
3389  MemIntrinsicSDNode *N;
3390  if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
3391    FoldingSetNodeID ID;
3392    AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
3393    void *IP = 0;
3394    if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3395      return SDValue(E, 0);
3396
3397    N = NodeAllocator.Allocate<MemIntrinsicSDNode>();
3398    new (N) MemIntrinsicSDNode(Opcode, VTList, Ops, NumOps, MemVT,
3399                               srcValue, SVOff, Align, Vol, ReadMem, WriteMem);
3400    CSEMap.InsertNode(N, IP);
3401  } else {
3402    N = NodeAllocator.Allocate<MemIntrinsicSDNode>();
3403    new (N) MemIntrinsicSDNode(Opcode, VTList, Ops, NumOps, MemVT,
3404                               srcValue, SVOff, Align, Vol, ReadMem, WriteMem);
3405  }
3406  AllNodes.push_back(N);
3407  return SDValue(N, 0);
3408}
3409
3410SDValue
3411SelectionDAG::getCall(unsigned CallingConv, bool IsVarArgs, bool IsTailCall,
3412                      bool IsInreg, SDVTList VTs,
3413                      const SDValue *Operands, unsigned NumOperands) {
3414  // Do not include isTailCall in the folding set profile.
3415  FoldingSetNodeID ID;
3416  AddNodeIDNode(ID, ISD::CALL, VTs, Operands, NumOperands);
3417  ID.AddInteger(CallingConv);
3418  ID.AddInteger(IsVarArgs);
3419  void *IP = 0;
3420  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) {
3421    // Instead of including isTailCall in the folding set, we just
3422    // set the flag of the existing node.
3423    if (!IsTailCall)
3424      cast<CallSDNode>(E)->setNotTailCall();
3425    return SDValue(E, 0);
3426  }
3427  SDNode *N = NodeAllocator.Allocate<CallSDNode>();
3428  new (N) CallSDNode(CallingConv, IsVarArgs, IsTailCall, IsInreg,
3429                     VTs, Operands, NumOperands);
3430  CSEMap.InsertNode(N, IP);
3431  AllNodes.push_back(N);
3432  return SDValue(N, 0);
3433}
3434
3435SDValue
3436SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType,
3437                      MVT VT, SDValue Chain,
3438                      SDValue Ptr, SDValue Offset,
3439                      const Value *SV, int SVOffset, MVT EVT,
3440                      bool isVolatile, unsigned Alignment) {
3441  if (Alignment == 0)  // Ensure that codegen never sees alignment 0
3442    Alignment = getMVTAlignment(VT);
3443
3444  if (VT == EVT) {
3445    ExtType = ISD::NON_EXTLOAD;
3446  } else if (ExtType == ISD::NON_EXTLOAD) {
3447    assert(VT == EVT && "Non-extending load from different memory type!");
3448  } else {
3449    // Extending load.
3450    if (VT.isVector())
3451      assert(EVT.getVectorNumElements() == VT.getVectorNumElements() &&
3452             "Invalid vector extload!");
3453    else
3454      assert(EVT.bitsLT(VT) &&
3455             "Should only be an extending load, not truncating!");
3456    assert((ExtType == ISD::EXTLOAD || VT.isInteger()) &&
3457           "Cannot sign/zero extend a FP/Vector load!");
3458    assert(VT.isInteger() == EVT.isInteger() &&
3459           "Cannot convert from FP to Int or Int -> FP!");
3460  }
3461
3462  bool Indexed = AM != ISD::UNINDEXED;
3463  assert((Indexed || Offset.getOpcode() == ISD::UNDEF) &&
3464         "Unindexed load with an offset!");
3465
3466  SDVTList VTs = Indexed ?
3467    getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other);
3468  SDValue Ops[] = { Chain, Ptr, Offset };
3469  FoldingSetNodeID ID;
3470  AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3);
3471  ID.AddInteger(AM);
3472  ID.AddInteger(ExtType);
3473  ID.AddInteger(EVT.getRawBits());
3474  ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
3475  void *IP = 0;
3476  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3477    return SDValue(E, 0);
3478  SDNode *N = NodeAllocator.Allocate<LoadSDNode>();
3479  new (N) LoadSDNode(Ops, VTs, AM, ExtType, EVT, SV, SVOffset,
3480                     Alignment, isVolatile);
3481  CSEMap.InsertNode(N, IP);
3482  AllNodes.push_back(N);
3483  return SDValue(N, 0);
3484}
3485
3486SDValue SelectionDAG::getLoad(MVT VT,
3487                              SDValue Chain, SDValue Ptr,
3488                              const Value *SV, int SVOffset,
3489                              bool isVolatile, unsigned Alignment) {
3490  SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3491  return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, Chain, Ptr, Undef,
3492                 SV, SVOffset, VT, isVolatile, Alignment);
3493}
3494
3495SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, MVT VT,
3496                                 SDValue Chain, SDValue Ptr,
3497                                 const Value *SV,
3498                                 int SVOffset, MVT EVT,
3499                                 bool isVolatile, unsigned Alignment) {
3500  SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3501  return getLoad(ISD::UNINDEXED, ExtType, VT, Chain, Ptr, Undef,
3502                 SV, SVOffset, EVT, isVolatile, Alignment);
3503}
3504
3505SDValue
3506SelectionDAG::getIndexedLoad(SDValue OrigLoad, SDValue Base,
3507                             SDValue Offset, ISD::MemIndexedMode AM) {
3508  LoadSDNode *LD = cast<LoadSDNode>(OrigLoad);
3509  assert(LD->getOffset().getOpcode() == ISD::UNDEF &&
3510         "Load is already a indexed load!");
3511  return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(),
3512                 LD->getChain(), Base, Offset, LD->getSrcValue(),
3513                 LD->getSrcValueOffset(), LD->getMemoryVT(),
3514                 LD->isVolatile(), LD->getAlignment());
3515}
3516
3517SDValue SelectionDAG::getStore(SDValue Chain, SDValue Val,
3518                               SDValue Ptr, const Value *SV, int SVOffset,
3519                               bool isVolatile, unsigned Alignment) {
3520  MVT VT = Val.getValueType();
3521
3522  if (Alignment == 0)  // Ensure that codegen never sees alignment 0
3523    Alignment = getMVTAlignment(VT);
3524
3525  SDVTList VTs = getVTList(MVT::Other);
3526  SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3527  SDValue Ops[] = { Chain, Val, Ptr, Undef };
3528  FoldingSetNodeID ID;
3529  AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3530  ID.AddInteger(ISD::UNINDEXED);
3531  ID.AddInteger(false);
3532  ID.AddInteger(VT.getRawBits());
3533  ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
3534  void *IP = 0;
3535  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3536    return SDValue(E, 0);
3537  SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
3538  new (N) StoreSDNode(Ops, VTs, ISD::UNINDEXED, false,
3539                      VT, SV, SVOffset, Alignment, isVolatile);
3540  CSEMap.InsertNode(N, IP);
3541  AllNodes.push_back(N);
3542  return SDValue(N, 0);
3543}
3544
3545SDValue SelectionDAG::getTruncStore(SDValue Chain, SDValue Val,
3546                                    SDValue Ptr, const Value *SV,
3547                                    int SVOffset, MVT SVT,
3548                                    bool isVolatile, unsigned Alignment) {
3549  MVT VT = Val.getValueType();
3550
3551  if (VT == SVT)
3552    return getStore(Chain, Val, Ptr, SV, SVOffset, isVolatile, Alignment);
3553
3554  assert(VT.bitsGT(SVT) && "Not a truncation?");
3555  assert(VT.isInteger() == SVT.isInteger() &&
3556         "Can't do FP-INT conversion!");
3557
3558  if (Alignment == 0)  // Ensure that codegen never sees alignment 0
3559    Alignment = getMVTAlignment(VT);
3560
3561  SDVTList VTs = getVTList(MVT::Other);
3562  SDValue Undef = getNode(ISD::UNDEF, Ptr.getValueType());
3563  SDValue Ops[] = { Chain, Val, Ptr, Undef };
3564  FoldingSetNodeID ID;
3565  AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3566  ID.AddInteger(ISD::UNINDEXED);
3567  ID.AddInteger(1);
3568  ID.AddInteger(SVT.getRawBits());
3569  ID.AddInteger(encodeMemSDNodeFlags(isVolatile, Alignment));
3570  void *IP = 0;
3571  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3572    return SDValue(E, 0);
3573  SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
3574  new (N) StoreSDNode(Ops, VTs, ISD::UNINDEXED, true,
3575                      SVT, SV, SVOffset, Alignment, isVolatile);
3576  CSEMap.InsertNode(N, IP);
3577  AllNodes.push_back(N);
3578  return SDValue(N, 0);
3579}
3580
3581SDValue
3582SelectionDAG::getIndexedStore(SDValue OrigStore, SDValue Base,
3583                              SDValue Offset, ISD::MemIndexedMode AM) {
3584  StoreSDNode *ST = cast<StoreSDNode>(OrigStore);
3585  assert(ST->getOffset().getOpcode() == ISD::UNDEF &&
3586         "Store is already a indexed store!");
3587  SDVTList VTs = getVTList(Base.getValueType(), MVT::Other);
3588  SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset };
3589  FoldingSetNodeID ID;
3590  AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4);
3591  ID.AddInteger(AM);
3592  ID.AddInteger(ST->isTruncatingStore());
3593  ID.AddInteger(ST->getMemoryVT().getRawBits());
3594  ID.AddInteger(ST->getRawFlags());
3595  void *IP = 0;
3596  if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3597    return SDValue(E, 0);
3598  SDNode *N = NodeAllocator.Allocate<StoreSDNode>();
3599  new (N) StoreSDNode(Ops, VTs, AM,
3600                      ST->isTruncatingStore(), ST->getMemoryVT(),
3601                      ST->getSrcValue(), ST->getSrcValueOffset(),
3602                      ST->getAlignment(), ST->isVolatile());
3603  CSEMap.InsertNode(N, IP);
3604  AllNodes.push_back(N);
3605  return SDValue(N, 0);
3606}
3607
3608SDValue SelectionDAG::getVAArg(MVT VT,
3609                               SDValue Chain, SDValue Ptr,
3610                               SDValue SV) {
3611  SDValue Ops[] = { Chain, Ptr, SV };
3612  return getNode(ISD::VAARG, getVTList(VT, MVT::Other), Ops, 3);
3613}
3614
3615SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
3616                              const SDUse *Ops, unsigned NumOps) {
3617  switch (NumOps) {
3618  case 0: return getNode(Opcode, VT);
3619  case 1: return getNode(Opcode, VT, Ops[0]);
3620  case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3621  case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
3622  default: break;
3623  }
3624
3625  // Copy from an SDUse array into an SDValue array for use with
3626  // the regular getNode logic.
3627  SmallVector<SDValue, 8> NewOps(Ops, Ops + NumOps);
3628  return getNode(Opcode, VT, &NewOps[0], NumOps);
3629}
3630
3631SDValue SelectionDAG::getNode(unsigned Opcode, MVT VT,
3632                              const SDValue *Ops, unsigned NumOps) {
3633  switch (NumOps) {
3634  case 0: return getNode(Opcode, VT);
3635  case 1: return getNode(Opcode, VT, Ops[0]);
3636  case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
3637  case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
3638  default: break;
3639  }
3640
3641  switch (Opcode) {
3642  default: break;
3643  case ISD::SELECT_CC: {
3644    assert(NumOps == 5 && "SELECT_CC takes 5 operands!");
3645    assert(Ops[0].getValueType() == Ops[1].getValueType() &&
3646           "LHS and RHS of condition must have same type!");
3647    assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3648           "True and False arms of SelectCC must have same type!");
3649    assert(Ops[2].getValueType() == VT &&
3650           "select_cc node must be of same type as true and false value!");
3651    break;
3652  }
3653  case ISD::BR_CC: {
3654    assert(NumOps == 5 && "BR_CC takes 5 operands!");
3655    assert(Ops[2].getValueType() == Ops[3].getValueType() &&
3656           "LHS/RHS of comparison should match types!");
3657    break;
3658  }
3659  }
3660
3661  // Memoize nodes.
3662  SDNode *N;
3663  SDVTList VTs = getVTList(VT);
3664  if (VT != MVT::Flag) {
3665    FoldingSetNodeID ID;
3666    AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps);
3667    void *IP = 0;
3668    if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3669      return SDValue(E, 0);
3670    N = NodeAllocator.Allocate<SDNode>();
3671    new (N) SDNode(Opcode, VTs, Ops, NumOps);
3672    CSEMap.InsertNode(N, IP);
3673  } else {
3674    N = NodeAllocator.Allocate<SDNode>();
3675    new (N) SDNode(Opcode, VTs, Ops, NumOps);
3676  }
3677  AllNodes.push_back(N);
3678#ifndef NDEBUG
3679  VerifyNode(N);
3680#endif
3681  return SDValue(N, 0);
3682}
3683
3684SDValue SelectionDAG::getNode(unsigned Opcode,
3685                              const std::vector<MVT> &ResultTys,
3686                              const SDValue *Ops, unsigned NumOps) {
3687  return getNode(Opcode, getNodeValueTypes(ResultTys), ResultTys.size(),
3688                 Ops, NumOps);
3689}
3690
3691SDValue SelectionDAG::getNode(unsigned Opcode,
3692                              const MVT *VTs, unsigned NumVTs,
3693                              const SDValue *Ops, unsigned NumOps) {
3694  if (NumVTs == 1)
3695    return getNode(Opcode, VTs[0], Ops, NumOps);
3696  return getNode(Opcode, makeVTList(VTs, NumVTs), Ops, NumOps);
3697}
3698
3699SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3700                              const SDValue *Ops, unsigned NumOps) {
3701  if (VTList.NumVTs == 1)
3702    return getNode(Opcode, VTList.VTs[0], Ops, NumOps);
3703
3704  switch (Opcode) {
3705  // FIXME: figure out how to safely handle things like
3706  // int foo(int x) { return 1 << (x & 255); }
3707  // int bar() { return foo(256); }
3708#if 0
3709  case ISD::SRA_PARTS:
3710  case ISD::SRL_PARTS:
3711  case ISD::SHL_PARTS:
3712    if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
3713        cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
3714      return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3715    else if (N3.getOpcode() == ISD::AND)
3716      if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
3717        // If the and is only masking out bits that cannot effect the shift,
3718        // eliminate the and.
3719        unsigned NumBits = VT.getSizeInBits()*2;
3720        if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
3721          return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
3722      }
3723    break;
3724#endif
3725  }
3726
3727  // Memoize the node unless it returns a flag.
3728  SDNode *N;
3729  if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
3730    FoldingSetNodeID ID;
3731    AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
3732    void *IP = 0;
3733    if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
3734      return SDValue(E, 0);
3735    if (NumOps == 1) {
3736      N = NodeAllocator.Allocate<UnarySDNode>();
3737      new (N) UnarySDNode(Opcode, VTList, Ops[0]);
3738    } else if (NumOps == 2) {
3739      N = NodeAllocator.Allocate<BinarySDNode>();
3740      new (N) BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3741    } else if (NumOps == 3) {
3742      N = NodeAllocator.Allocate<TernarySDNode>();
3743      new (N) TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3744    } else {
3745      N = NodeAllocator.Allocate<SDNode>();
3746      new (N) SDNode(Opcode, VTList, Ops, NumOps);
3747    }
3748    CSEMap.InsertNode(N, IP);
3749  } else {
3750    if (NumOps == 1) {
3751      N = NodeAllocator.Allocate<UnarySDNode>();
3752      new (N) UnarySDNode(Opcode, VTList, Ops[0]);
3753    } else if (NumOps == 2) {
3754      N = NodeAllocator.Allocate<BinarySDNode>();
3755      new (N) BinarySDNode(Opcode, VTList, Ops[0], Ops[1]);
3756    } else if (NumOps == 3) {
3757      N = NodeAllocator.Allocate<TernarySDNode>();
3758      new (N) TernarySDNode(Opcode, VTList, Ops[0], Ops[1], Ops[2]);
3759    } else {
3760      N = NodeAllocator.Allocate<SDNode>();
3761      new (N) SDNode(Opcode, VTList, Ops, NumOps);
3762    }
3763  }
3764  AllNodes.push_back(N);
3765#ifndef NDEBUG
3766  VerifyNode(N);
3767#endif
3768  return SDValue(N, 0);
3769}
3770
3771SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList) {
3772  return getNode(Opcode, VTList, 0, 0);
3773}
3774
3775SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3776                                SDValue N1) {
3777  SDValue Ops[] = { N1 };
3778  return getNode(Opcode, VTList, Ops, 1);
3779}
3780
3781SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3782                              SDValue N1, SDValue N2) {
3783  SDValue Ops[] = { N1, N2 };
3784  return getNode(Opcode, VTList, Ops, 2);
3785}
3786
3787SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3788                              SDValue N1, SDValue N2, SDValue N3) {
3789  SDValue Ops[] = { N1, N2, N3 };
3790  return getNode(Opcode, VTList, Ops, 3);
3791}
3792
3793SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3794                              SDValue N1, SDValue N2, SDValue N3,
3795                              SDValue N4) {
3796  SDValue Ops[] = { N1, N2, N3, N4 };
3797  return getNode(Opcode, VTList, Ops, 4);
3798}
3799
3800SDValue SelectionDAG::getNode(unsigned Opcode, SDVTList VTList,
3801                              SDValue N1, SDValue N2, SDValue N3,
3802                              SDValue N4, SDValue N5) {
3803  SDValue Ops[] = { N1, N2, N3, N4, N5 };
3804  return getNode(Opcode, VTList, Ops, 5);
3805}
3806
3807SDVTList SelectionDAG::getVTList(MVT VT) {
3808  return makeVTList(SDNode::getValueTypeList(VT), 1);
3809}
3810
3811SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2) {
3812  for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3813       E = VTList.rend(); I != E; ++I)
3814    if (I->NumVTs == 2 && I->VTs[0] == VT1 && I->VTs[1] == VT2)
3815      return *I;
3816
3817  MVT *Array = Allocator.Allocate<MVT>(2);
3818  Array[0] = VT1;
3819  Array[1] = VT2;
3820  SDVTList Result = makeVTList(Array, 2);
3821  VTList.push_back(Result);
3822  return Result;
3823}
3824
3825SDVTList SelectionDAG::getVTList(MVT VT1, MVT VT2, MVT VT3) {
3826  for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3827       E = VTList.rend(); I != E; ++I)
3828    if (I->NumVTs == 3 && I->VTs[0] == VT1 && I->VTs[1] == VT2 &&
3829                          I->VTs[2] == VT3)
3830      return *I;
3831
3832  MVT *Array = Allocator.Allocate<MVT>(3);
3833  Array[0] = VT1;
3834  Array[1] = VT2;
3835  Array[2] = VT3;
3836  SDVTList Result = makeVTList(Array, 3);
3837  VTList.push_back(Result);
3838  return Result;
3839}
3840
3841SDVTList SelectionDAG::getVTList(const MVT *VTs, unsigned NumVTs) {
3842  switch (NumVTs) {
3843    case 0: assert(0 && "Cannot have nodes without results!");
3844    case 1: return getVTList(VTs[0]);
3845    case 2: return getVTList(VTs[0], VTs[1]);
3846    case 3: return getVTList(VTs[0], VTs[1], VTs[2]);
3847    default: break;
3848  }
3849
3850  for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(),
3851       E = VTList.rend(); I != E; ++I) {
3852    if (I->NumVTs != NumVTs || VTs[0] != I->VTs[0] || VTs[1] != I->VTs[1])
3853      continue;
3854
3855    bool NoMatch = false;
3856    for (unsigned i = 2; i != NumVTs; ++i)
3857      if (VTs[i] != I->VTs[i]) {
3858        NoMatch = true;
3859        break;
3860      }
3861    if (!NoMatch)
3862      return *I;
3863  }
3864
3865  MVT *Array = Allocator.Allocate<MVT>(NumVTs);
3866  std::copy(VTs, VTs+NumVTs, Array);
3867  SDVTList Result = makeVTList(Array, NumVTs);
3868  VTList.push_back(Result);
3869  return Result;
3870}
3871
3872
3873/// UpdateNodeOperands - *Mutate* the specified node in-place to have the
3874/// specified operands.  If the resultant node already exists in the DAG,
3875/// this does not modify the specified node, instead it returns the node that
3876/// already exists.  If the resultant node does not exist in the DAG, the
3877/// input node is returned.  As a degenerate case, if you specify the same
3878/// input operands as the node already has, the input node is returned.
3879SDValue SelectionDAG::UpdateNodeOperands(SDValue InN, SDValue Op) {
3880  SDNode *N = InN.getNode();
3881  assert(N->getNumOperands() == 1 && "Update with wrong number of operands");
3882
3883  // Check to see if there is no change.
3884  if (Op == N->getOperand(0)) return InN;
3885
3886  // See if the modified node already exists.
3887  void *InsertPos = 0;
3888  if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos))
3889    return SDValue(Existing, InN.getResNo());
3890
3891  // Nope it doesn't.  Remove the node from its current place in the maps.
3892  if (InsertPos)
3893    if (!RemoveNodeFromCSEMaps(N))
3894      InsertPos = 0;
3895
3896  // Now we update the operands.
3897  N->OperandList[0].getVal()->removeUser(0, N);
3898  N->OperandList[0] = Op;
3899  N->OperandList[0].setUser(N);
3900  Op.getNode()->addUser(0, N);
3901
3902  // If this gets put into a CSE map, add it.
3903  if (InsertPos) CSEMap.InsertNode(N, InsertPos);
3904  return InN;
3905}
3906
3907SDValue SelectionDAG::
3908UpdateNodeOperands(SDValue InN, SDValue Op1, SDValue Op2) {
3909  SDNode *N = InN.getNode();
3910  assert(N->getNumOperands() == 2 && "Update with wrong number of operands");
3911
3912  // Check to see if there is no change.
3913  if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1))
3914    return InN;   // No operands changed, just return the input node.
3915
3916  // See if the modified node already exists.
3917  void *InsertPos = 0;
3918  if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos))
3919    return SDValue(Existing, InN.getResNo());
3920
3921  // Nope it doesn't.  Remove the node from its current place in the maps.
3922  if (InsertPos)
3923    if (!RemoveNodeFromCSEMaps(N))
3924      InsertPos = 0;
3925
3926  // Now we update the operands.
3927  if (N->OperandList[0] != Op1) {
3928    N->OperandList[0].getVal()->removeUser(0, N);
3929    N->OperandList[0] = Op1;
3930    N->OperandList[0].setUser(N);
3931    Op1.getNode()->addUser(0, N);
3932  }
3933  if (N->OperandList[1] != Op2) {
3934    N->OperandList[1].getVal()->removeUser(1, N);
3935    N->OperandList[1] = Op2;
3936    N->OperandList[1].setUser(N);
3937    Op2.getNode()->addUser(1, N);
3938  }
3939
3940  // If this gets put into a CSE map, add it.
3941  if (InsertPos) CSEMap.InsertNode(N, InsertPos);
3942  return InN;
3943}
3944
3945SDValue SelectionDAG::
3946UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2, SDValue Op3) {
3947  SDValue Ops[] = { Op1, Op2, Op3 };
3948  return UpdateNodeOperands(N, Ops, 3);
3949}
3950
3951SDValue SelectionDAG::
3952UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
3953                   SDValue Op3, SDValue Op4) {
3954  SDValue Ops[] = { Op1, Op2, Op3, Op4 };
3955  return UpdateNodeOperands(N, Ops, 4);
3956}
3957
3958SDValue SelectionDAG::
3959UpdateNodeOperands(SDValue N, SDValue Op1, SDValue Op2,
3960                   SDValue Op3, SDValue Op4, SDValue Op5) {
3961  SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 };
3962  return UpdateNodeOperands(N, Ops, 5);
3963}
3964
3965SDValue SelectionDAG::
3966UpdateNodeOperands(SDValue InN, const SDValue *Ops, unsigned NumOps) {
3967  SDNode *N = InN.getNode();
3968  assert(N->getNumOperands() == NumOps &&
3969         "Update with wrong number of operands");
3970
3971  // Check to see if there is no change.
3972  bool AnyChange = false;
3973  for (unsigned i = 0; i != NumOps; ++i) {
3974    if (Ops[i] != N->getOperand(i)) {
3975      AnyChange = true;
3976      break;
3977    }
3978  }
3979
3980  // No operands changed, just return the input node.
3981  if (!AnyChange) return InN;
3982
3983  // See if the modified node already exists.
3984  void *InsertPos = 0;
3985  if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos))
3986    return SDValue(Existing, InN.getResNo());
3987
3988  // Nope it doesn't.  Remove the node from its current place in the maps.
3989  if (InsertPos)
3990    if (!RemoveNodeFromCSEMaps(N))
3991      InsertPos = 0;
3992
3993  // Now we update the operands.
3994  for (unsigned i = 0; i != NumOps; ++i) {
3995    if (N->OperandList[i] != Ops[i]) {
3996      N->OperandList[i].getVal()->removeUser(i, N);
3997      N->OperandList[i] = Ops[i];
3998      N->OperandList[i].setUser(N);
3999      Ops[i].getNode()->addUser(i, N);
4000    }
4001  }
4002
4003  // If this gets put into a CSE map, add it.
4004  if (InsertPos) CSEMap.InsertNode(N, InsertPos);
4005  return InN;
4006}
4007
4008/// DropOperands - Release the operands and set this node to have
4009/// zero operands.
4010void SDNode::DropOperands() {
4011  // Unlike the code in MorphNodeTo that does this, we don't need to
4012  // watch for dead nodes here.
4013  for (op_iterator I = op_begin(), E = op_end(); I != E; ++I)
4014    I->getVal()->removeUser(std::distance(op_begin(), I), this);
4015
4016  NumOperands = 0;
4017}
4018
4019/// SelectNodeTo - These are wrappers around MorphNodeTo that accept a
4020/// machine opcode.
4021///
4022SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4023                                   MVT VT) {
4024  SDVTList VTs = getVTList(VT);
4025  return SelectNodeTo(N, MachineOpc, VTs, 0, 0);
4026}
4027
4028SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4029                                   MVT VT, SDValue Op1) {
4030  SDVTList VTs = getVTList(VT);
4031  SDValue Ops[] = { Op1 };
4032  return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
4033}
4034
4035SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4036                                   MVT VT, SDValue Op1,
4037                                   SDValue Op2) {
4038  SDVTList VTs = getVTList(VT);
4039  SDValue Ops[] = { Op1, Op2 };
4040  return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
4041}
4042
4043SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4044                                   MVT VT, SDValue Op1,
4045                                   SDValue Op2, SDValue Op3) {
4046  SDVTList VTs = getVTList(VT);
4047  SDValue Ops[] = { Op1, Op2, Op3 };
4048  return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
4049}
4050
4051SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4052                                   MVT VT, const SDValue *Ops,
4053                                   unsigned NumOps) {
4054  SDVTList VTs = getVTList(VT);
4055  return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
4056}
4057
4058SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4059                                   MVT VT1, MVT VT2, const SDValue *Ops,
4060                                   unsigned NumOps) {
4061  SDVTList VTs = getVTList(VT1, VT2);
4062  return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
4063}
4064
4065SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4066                                   MVT VT1, MVT VT2) {
4067  SDVTList VTs = getVTList(VT1, VT2);
4068  return SelectNodeTo(N, MachineOpc, VTs, (SDValue *)0, 0);
4069}
4070
4071SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4072                                   MVT VT1, MVT VT2, MVT VT3,
4073                                   const SDValue *Ops, unsigned NumOps) {
4074  SDVTList VTs = getVTList(VT1, VT2, VT3);
4075  return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps);
4076}
4077
4078SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4079                                   MVT VT1, MVT VT2,
4080                                   SDValue Op1) {
4081  SDVTList VTs = getVTList(VT1, VT2);
4082  SDValue Ops[] = { Op1 };
4083  return SelectNodeTo(N, MachineOpc, VTs, Ops, 1);
4084}
4085
4086SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4087                                   MVT VT1, MVT VT2,
4088                                   SDValue Op1, SDValue Op2) {
4089  SDVTList VTs = getVTList(VT1, VT2);
4090  SDValue Ops[] = { Op1, Op2 };
4091  return SelectNodeTo(N, MachineOpc, VTs, Ops, 2);
4092}
4093
4094SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4095                                   MVT VT1, MVT VT2,
4096                                   SDValue Op1, SDValue Op2,
4097                                   SDValue Op3) {
4098  SDVTList VTs = getVTList(VT1, VT2);
4099  SDValue Ops[] = { Op1, Op2, Op3 };
4100  return SelectNodeTo(N, MachineOpc, VTs, Ops, 3);
4101}
4102
4103SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc,
4104                                   SDVTList VTs, const SDValue *Ops,
4105                                   unsigned NumOps) {
4106  return MorphNodeTo(N, ~MachineOpc, VTs, Ops, NumOps);
4107}
4108
4109SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4110                                  MVT VT) {
4111  SDVTList VTs = getVTList(VT);
4112  return MorphNodeTo(N, Opc, VTs, 0, 0);
4113}
4114
4115SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4116                                  MVT VT, SDValue Op1) {
4117  SDVTList VTs = getVTList(VT);
4118  SDValue Ops[] = { Op1 };
4119  return MorphNodeTo(N, Opc, VTs, Ops, 1);
4120}
4121
4122SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4123                                  MVT VT, SDValue Op1,
4124                                  SDValue Op2) {
4125  SDVTList VTs = getVTList(VT);
4126  SDValue Ops[] = { Op1, Op2 };
4127  return MorphNodeTo(N, Opc, VTs, Ops, 2);
4128}
4129
4130SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4131                                  MVT VT, SDValue Op1,
4132                                  SDValue Op2, SDValue Op3) {
4133  SDVTList VTs = getVTList(VT);
4134  SDValue Ops[] = { Op1, Op2, Op3 };
4135  return MorphNodeTo(N, Opc, VTs, Ops, 3);
4136}
4137
4138SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4139                                  MVT VT, const SDValue *Ops,
4140                                  unsigned NumOps) {
4141  SDVTList VTs = getVTList(VT);
4142  return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4143}
4144
4145SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4146                                  MVT VT1, MVT VT2, const SDValue *Ops,
4147                                  unsigned NumOps) {
4148  SDVTList VTs = getVTList(VT1, VT2);
4149  return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4150}
4151
4152SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4153                                  MVT VT1, MVT VT2) {
4154  SDVTList VTs = getVTList(VT1, VT2);
4155  return MorphNodeTo(N, Opc, VTs, (SDValue *)0, 0);
4156}
4157
4158SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4159                                  MVT VT1, MVT VT2, MVT VT3,
4160                                  const SDValue *Ops, unsigned NumOps) {
4161  SDVTList VTs = getVTList(VT1, VT2, VT3);
4162  return MorphNodeTo(N, Opc, VTs, Ops, NumOps);
4163}
4164
4165SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4166                                  MVT VT1, MVT VT2,
4167                                  SDValue Op1) {
4168  SDVTList VTs = getVTList(VT1, VT2);
4169  SDValue Ops[] = { Op1 };
4170  return MorphNodeTo(N, Opc, VTs, Ops, 1);
4171}
4172
4173SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4174                                  MVT VT1, MVT VT2,
4175                                  SDValue Op1, SDValue Op2) {
4176  SDVTList VTs = getVTList(VT1, VT2);
4177  SDValue Ops[] = { Op1, Op2 };
4178  return MorphNodeTo(N, Opc, VTs, Ops, 2);
4179}
4180
4181SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4182                                  MVT VT1, MVT VT2,
4183                                  SDValue Op1, SDValue Op2,
4184                                  SDValue Op3) {
4185  SDVTList VTs = getVTList(VT1, VT2);
4186  SDValue Ops[] = { Op1, Op2, Op3 };
4187  return MorphNodeTo(N, Opc, VTs, Ops, 3);
4188}
4189
4190/// MorphNodeTo - These *mutate* the specified node to have the specified
4191/// return type, opcode, and operands.
4192///
4193/// Note that MorphNodeTo returns the resultant node.  If there is already a
4194/// node of the specified opcode and operands, it returns that node instead of
4195/// the current one.
4196///
4197/// Using MorphNodeTo is faster than creating a new node and swapping it in
4198/// with ReplaceAllUsesWith both because it often avoids allocating a new
4199/// node, and because it doesn't require CSE recalculation for any of
4200/// the node's users.
4201///
4202SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc,
4203                                  SDVTList VTs, const SDValue *Ops,
4204                                  unsigned NumOps) {
4205  // If an identical node already exists, use it.
4206  void *IP = 0;
4207  if (VTs.VTs[VTs.NumVTs-1] != MVT::Flag) {
4208    FoldingSetNodeID ID;
4209    AddNodeIDNode(ID, Opc, VTs, Ops, NumOps);
4210    if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP))
4211      return ON;
4212  }
4213
4214  if (!RemoveNodeFromCSEMaps(N))
4215    IP = 0;
4216
4217  // Start the morphing.
4218  N->NodeType = Opc;
4219  N->ValueList = VTs.VTs;
4220  N->NumValues = VTs.NumVTs;
4221
4222  // Clear the operands list, updating used nodes to remove this from their
4223  // use list.  Keep track of any operands that become dead as a result.
4224  SmallPtrSet<SDNode*, 16> DeadNodeSet;
4225  for (SDNode::op_iterator B = N->op_begin(), I = B, E = N->op_end();
4226       I != E; ++I) {
4227    SDNode *Used = I->getVal();
4228    Used->removeUser(std::distance(B, I), N);
4229    if (Used->use_empty())
4230      DeadNodeSet.insert(Used);
4231  }
4232
4233  // If NumOps is larger than the # of operands we currently have, reallocate
4234  // the operand list.
4235  if (NumOps > N->NumOperands) {
4236    if (N->OperandsNeedDelete)
4237      delete[] N->OperandList;
4238
4239    if (N->isMachineOpcode()) {
4240      // We're creating a final node that will live unmorphed for the
4241      // remainder of the current SelectionDAG iteration, so we can allocate
4242      // the operands directly out of a pool with no recycling metadata.
4243      N->OperandList = OperandAllocator.Allocate<SDUse>(NumOps);
4244      N->OperandsNeedDelete = false;
4245    } else {
4246      N->OperandList = new SDUse[NumOps];
4247      N->OperandsNeedDelete = true;
4248    }
4249  }
4250
4251  // Assign the new operands.
4252  N->NumOperands = NumOps;
4253  for (unsigned i = 0, e = NumOps; i != e; ++i) {
4254    N->OperandList[i] = Ops[i];
4255    N->OperandList[i].setUser(N);
4256    SDNode *ToUse = N->OperandList[i].getVal();
4257    ToUse->addUser(i, N);
4258  }
4259
4260  // Delete any nodes that are still dead after adding the uses for the
4261  // new operands.
4262  SmallVector<SDNode *, 16> DeadNodes;
4263  for (SmallPtrSet<SDNode *, 16>::iterator I = DeadNodeSet.begin(),
4264       E = DeadNodeSet.end(); I != E; ++I)
4265    if ((*I)->use_empty())
4266      DeadNodes.push_back(*I);
4267  RemoveDeadNodes(DeadNodes);
4268
4269  if (IP)
4270    CSEMap.InsertNode(N, IP);   // Memoize the new node.
4271  return N;
4272}
4273
4274
4275/// getTargetNode - These are used for target selectors to create a new node
4276/// with specified return type(s), target opcode, and operands.
4277///
4278/// Note that getTargetNode returns the resultant node.  If there is already a
4279/// node of the specified opcode and operands, it returns that node instead of
4280/// the current one.
4281SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT) {
4282  return getNode(~Opcode, VT).getNode();
4283}
4284SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT, SDValue Op1) {
4285  return getNode(~Opcode, VT, Op1).getNode();
4286}
4287SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
4288                                    SDValue Op1, SDValue Op2) {
4289  return getNode(~Opcode, VT, Op1, Op2).getNode();
4290}
4291SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
4292                                    SDValue Op1, SDValue Op2,
4293                                    SDValue Op3) {
4294  return getNode(~Opcode, VT, Op1, Op2, Op3).getNode();
4295}
4296SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT,
4297                                    const SDValue *Ops, unsigned NumOps) {
4298  return getNode(~Opcode, VT, Ops, NumOps).getNode();
4299}
4300SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2) {
4301  const MVT *VTs = getNodeValueTypes(VT1, VT2);
4302  SDValue Op;
4303  return getNode(~Opcode, VTs, 2, &Op, 0).getNode();
4304}
4305SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
4306                                    MVT VT2, SDValue Op1) {
4307  const MVT *VTs = getNodeValueTypes(VT1, VT2);
4308  return getNode(~Opcode, VTs, 2, &Op1, 1).getNode();
4309}
4310SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
4311                                    MVT VT2, SDValue Op1,
4312                                    SDValue Op2) {
4313  const MVT *VTs = getNodeValueTypes(VT1, VT2);
4314  SDValue Ops[] = { Op1, Op2 };
4315  return getNode(~Opcode, VTs, 2, Ops, 2).getNode();
4316}
4317SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
4318                                    MVT VT2, SDValue Op1,
4319                                    SDValue Op2, SDValue Op3) {
4320  const MVT *VTs = getNodeValueTypes(VT1, VT2);
4321  SDValue Ops[] = { Op1, Op2, Op3 };
4322  return getNode(~Opcode, VTs, 2, Ops, 3).getNode();
4323}
4324SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2,
4325                                    const SDValue *Ops, unsigned NumOps) {
4326  const MVT *VTs = getNodeValueTypes(VT1, VT2);
4327  return getNode(~Opcode, VTs, 2, Ops, NumOps).getNode();
4328}
4329SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
4330                                    SDValue Op1, SDValue Op2) {
4331  const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
4332  SDValue Ops[] = { Op1, Op2 };
4333  return getNode(~Opcode, VTs, 3, Ops, 2).getNode();
4334}
4335SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
4336                                    SDValue Op1, SDValue Op2,
4337                                    SDValue Op3) {
4338  const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
4339  SDValue Ops[] = { Op1, Op2, Op3 };
4340  return getNode(~Opcode, VTs, 3, Ops, 3).getNode();
4341}
4342SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1, MVT VT2, MVT VT3,
4343                                    const SDValue *Ops, unsigned NumOps) {
4344  const MVT *VTs = getNodeValueTypes(VT1, VT2, VT3);
4345  return getNode(~Opcode, VTs, 3, Ops, NumOps).getNode();
4346}
4347SDNode *SelectionDAG::getTargetNode(unsigned Opcode, MVT VT1,
4348                                    MVT VT2, MVT VT3, MVT VT4,
4349                                    const SDValue *Ops, unsigned NumOps) {
4350  std::vector<MVT> VTList;
4351  VTList.push_back(VT1);
4352  VTList.push_back(VT2);
4353  VTList.push_back(VT3);
4354  VTList.push_back(VT4);
4355  const MVT *VTs = getNodeValueTypes(VTList);
4356  return getNode(~Opcode, VTs, 4, Ops, NumOps).getNode();
4357}
4358SDNode *SelectionDAG::getTargetNode(unsigned Opcode,
4359                                    const std::vector<MVT> &ResultTys,
4360                                    const SDValue *Ops, unsigned NumOps) {
4361  const MVT *VTs = getNodeValueTypes(ResultTys);
4362  return getNode(~Opcode, VTs, ResultTys.size(),
4363                 Ops, NumOps).getNode();
4364}
4365
4366/// getNodeIfExists - Get the specified node if it's already available, or
4367/// else return NULL.
4368SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList,
4369                                      const SDValue *Ops, unsigned NumOps) {
4370  if (VTList.VTs[VTList.NumVTs-1] != MVT::Flag) {
4371    FoldingSetNodeID ID;
4372    AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps);
4373    void *IP = 0;
4374    if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP))
4375      return E;
4376  }
4377  return NULL;
4378}
4379
4380
4381/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4382/// This can cause recursive merging of nodes in the DAG.
4383///
4384/// This version assumes From has a single result value.
4385///
4386void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To,
4387                                      DAGUpdateListener *UpdateListener) {
4388  SDNode *From = FromN.getNode();
4389  assert(From->getNumValues() == 1 && FromN.getResNo() == 0 &&
4390         "Cannot replace with this method!");
4391  assert(From != To.getNode() && "Cannot replace uses of with self");
4392
4393  while (!From->use_empty()) {
4394    SDNode::use_iterator UI = From->use_begin();
4395    SDNode *U = *UI;
4396
4397    // This node is about to morph, remove its old self from the CSE maps.
4398    RemoveNodeFromCSEMaps(U);
4399    int operandNum = 0;
4400    for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4401         I != E; ++I, ++operandNum)
4402      if (I->getVal() == From) {
4403        From->removeUser(operandNum, U);
4404        *I = To;
4405        I->setUser(U);
4406        To.getNode()->addUser(operandNum, U);
4407      }
4408
4409    // Now that we have modified U, add it back to the CSE maps.  If it already
4410    // exists there, recursively merge the results together.
4411    if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
4412      ReplaceAllUsesWith(U, Existing, UpdateListener);
4413      // U is now dead.  Inform the listener if it exists and delete it.
4414      if (UpdateListener)
4415        UpdateListener->NodeDeleted(U, Existing);
4416      DeleteNodeNotInCSEMaps(U);
4417    } else {
4418      // If the node doesn't already exist, we updated it.  Inform a listener if
4419      // it exists.
4420      if (UpdateListener)
4421        UpdateListener->NodeUpdated(U);
4422    }
4423  }
4424}
4425
4426/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4427/// This can cause recursive merging of nodes in the DAG.
4428///
4429/// This version assumes From/To have matching types and numbers of result
4430/// values.
4431///
4432void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
4433                                      DAGUpdateListener *UpdateListener) {
4434  assert(From->getVTList().VTs == To->getVTList().VTs &&
4435         From->getNumValues() == To->getNumValues() &&
4436         "Cannot use this version of ReplaceAllUsesWith!");
4437
4438  // Handle the trivial case.
4439  if (From == To)
4440    return;
4441
4442  while (!From->use_empty()) {
4443    SDNode::use_iterator UI = From->use_begin();
4444    SDNode *U = *UI;
4445
4446    // This node is about to morph, remove its old self from the CSE maps.
4447    RemoveNodeFromCSEMaps(U);
4448    int operandNum = 0;
4449    for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4450         I != E; ++I, ++operandNum)
4451      if (I->getVal() == From) {
4452        From->removeUser(operandNum, U);
4453        I->getSDValue().setNode(To);
4454        To->addUser(operandNum, U);
4455      }
4456
4457    // Now that we have modified U, add it back to the CSE maps.  If it already
4458    // exists there, recursively merge the results together.
4459    if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
4460      ReplaceAllUsesWith(U, Existing, UpdateListener);
4461      // U is now dead.  Inform the listener if it exists and delete it.
4462      if (UpdateListener)
4463        UpdateListener->NodeDeleted(U, Existing);
4464      DeleteNodeNotInCSEMaps(U);
4465    } else {
4466      // If the node doesn't already exist, we updated it.  Inform a listener if
4467      // it exists.
4468      if (UpdateListener)
4469        UpdateListener->NodeUpdated(U);
4470    }
4471  }
4472}
4473
4474/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
4475/// This can cause recursive merging of nodes in the DAG.
4476///
4477/// This version can replace From with any result values.  To must match the
4478/// number and types of values returned by From.
4479void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
4480                                      const SDValue *To,
4481                                      DAGUpdateListener *UpdateListener) {
4482  if (From->getNumValues() == 1)  // Handle the simple case efficiently.
4483    return ReplaceAllUsesWith(SDValue(From, 0), To[0], UpdateListener);
4484
4485  while (!From->use_empty()) {
4486    SDNode::use_iterator UI = From->use_begin();
4487    SDNode *U = *UI;
4488
4489    // This node is about to morph, remove its old self from the CSE maps.
4490    RemoveNodeFromCSEMaps(U);
4491    int operandNum = 0;
4492    for (SDNode::op_iterator I = U->op_begin(), E = U->op_end();
4493         I != E; ++I, ++operandNum)
4494      if (I->getVal() == From) {
4495        const SDValue &ToOp = To[I->getSDValue().getResNo()];
4496        From->removeUser(operandNum, U);
4497        *I = ToOp;
4498        I->setUser(U);
4499        ToOp.getNode()->addUser(operandNum, U);
4500      }
4501
4502    // Now that we have modified U, add it back to the CSE maps.  If it already
4503    // exists there, recursively merge the results together.
4504    if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
4505      ReplaceAllUsesWith(U, Existing, UpdateListener);
4506      // U is now dead.  Inform the listener if it exists and delete it.
4507      if (UpdateListener)
4508        UpdateListener->NodeDeleted(U, Existing);
4509      DeleteNodeNotInCSEMaps(U);
4510    } else {
4511      // If the node doesn't already exist, we updated it.  Inform a listener if
4512      // it exists.
4513      if (UpdateListener)
4514        UpdateListener->NodeUpdated(U);
4515    }
4516  }
4517}
4518
4519/// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving
4520/// uses of other values produced by From.getVal() alone.  The Deleted vector is
4521/// handled the same way as for ReplaceAllUsesWith.
4522void SelectionDAG::ReplaceAllUsesOfValueWith(SDValue From, SDValue To,
4523                                             DAGUpdateListener *UpdateListener){
4524  // Handle the really simple, really trivial case efficiently.
4525  if (From == To) return;
4526
4527  // Handle the simple, trivial, case efficiently.
4528  if (From.getNode()->getNumValues() == 1) {
4529    ReplaceAllUsesWith(From, To, UpdateListener);
4530    return;
4531  }
4532
4533  // Get all of the users of From.getNode().  We want these in a nice,
4534  // deterministically ordered and uniqued set, so we use a SmallSetVector.
4535  SmallSetVector<SDNode*, 16> Users(From.getNode()->use_begin(), From.getNode()->use_end());
4536
4537  while (!Users.empty()) {
4538    // We know that this user uses some value of From.  If it is the right
4539    // value, update it.
4540    SDNode *User = Users.back();
4541    Users.pop_back();
4542
4543    // Scan for an operand that matches From.
4544    SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
4545    for (; Op != E; ++Op)
4546      if (*Op == From) break;
4547
4548    // If there are no matches, the user must use some other result of From.
4549    if (Op == E) continue;
4550
4551    // Okay, we know this user needs to be updated.  Remove its old self
4552    // from the CSE maps.
4553    RemoveNodeFromCSEMaps(User);
4554
4555    // Update all operands that match "From" in case there are multiple uses.
4556    for (; Op != E; ++Op) {
4557      if (*Op == From) {
4558        From.getNode()->removeUser(Op-User->op_begin(), User);
4559        *Op = To;
4560        Op->setUser(User);
4561        To.getNode()->addUser(Op-User->op_begin(), User);
4562      }
4563    }
4564
4565    // Now that we have modified User, add it back to the CSE maps.  If it
4566    // already exists there, recursively merge the results together.
4567    SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
4568    if (!Existing) {
4569      if (UpdateListener) UpdateListener->NodeUpdated(User);
4570      continue;  // Continue on to next user.
4571    }
4572
4573    // If there was already an existing matching node, use ReplaceAllUsesWith
4574    // to replace the dead one with the existing one.  This can cause
4575    // recursive merging of other unrelated nodes down the line.
4576    ReplaceAllUsesWith(User, Existing, UpdateListener);
4577
4578    // User is now dead.  Notify a listener if present.
4579    if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
4580    DeleteNodeNotInCSEMaps(User);
4581  }
4582}
4583
4584/// ReplaceAllUsesOfValuesWith - Replace any uses of From with To, leaving
4585/// uses of other values produced by From.getVal() alone.  The same value may
4586/// appear in both the From and To list.  The Deleted vector is
4587/// handled the same way as for ReplaceAllUsesWith.
4588void SelectionDAG::ReplaceAllUsesOfValuesWith(const SDValue *From,
4589                                              const SDValue *To,
4590                                              unsigned Num,
4591                                              DAGUpdateListener *UpdateListener){
4592  // Handle the simple, trivial case efficiently.
4593  if (Num == 1)
4594    return ReplaceAllUsesOfValueWith(*From, *To, UpdateListener);
4595
4596  SmallVector<std::pair<SDNode *, unsigned>, 16> Users;
4597  for (unsigned i = 0; i != Num; ++i)
4598    for (SDNode::use_iterator UI = From[i].getNode()->use_begin(),
4599         E = From[i].getNode()->use_end(); UI != E; ++UI)
4600      Users.push_back(std::make_pair(*UI, i));
4601
4602  while (!Users.empty()) {
4603    // We know that this user uses some value of From.  If it is the right
4604    // value, update it.
4605    SDNode *User = Users.back().first;
4606    unsigned i = Users.back().second;
4607    Users.pop_back();
4608
4609    // Scan for an operand that matches From.
4610    SDNode::op_iterator Op = User->op_begin(), E = User->op_end();
4611    for (; Op != E; ++Op)
4612      if (*Op == From[i]) break;
4613
4614    // If there are no matches, the user must use some other result of From.
4615    if (Op == E) continue;
4616
4617    // Okay, we know this user needs to be updated.  Remove its old self
4618    // from the CSE maps.
4619    RemoveNodeFromCSEMaps(User);
4620
4621    // Update all operands that match "From" in case there are multiple uses.
4622    for (; Op != E; ++Op) {
4623      if (*Op == From[i]) {
4624        From[i].getNode()->removeUser(Op-User->op_begin(), User);
4625        *Op = To[i];
4626        Op->setUser(User);
4627        To[i].getNode()->addUser(Op-User->op_begin(), User);
4628      }
4629    }
4630
4631    // Now that we have modified User, add it back to the CSE maps.  If it
4632    // already exists there, recursively merge the results together.
4633    SDNode *Existing = AddNonLeafNodeToCSEMaps(User);
4634    if (!Existing) {
4635      if (UpdateListener) UpdateListener->NodeUpdated(User);
4636      continue;  // Continue on to next user.
4637    }
4638
4639    // If there was already an existing matching node, use ReplaceAllUsesWith
4640    // to replace the dead one with the existing one.  This can cause
4641    // recursive merging of other unrelated nodes down the line.
4642    ReplaceAllUsesWith(User, Existing, UpdateListener);
4643
4644    // User is now dead.  Notify a listener if present.
4645    if (UpdateListener) UpdateListener->NodeDeleted(User, Existing);
4646    DeleteNodeNotInCSEMaps(User);
4647  }
4648}
4649
4650/// AssignTopologicalOrder - Assign a unique node id for each node in the DAG
4651/// based on their topological order. It returns the maximum id and a vector
4652/// of the SDNodes* in assigned order by reference.
4653unsigned SelectionDAG::AssignTopologicalOrder() {
4654
4655  unsigned DAGSize = 0;
4656
4657  // SortedPos tracks the progress of the algorithm. Nodes before it are
4658  // sorted, nodes after it are unsorted. When the algorithm completes
4659  // it is at the end of the list.
4660  allnodes_iterator SortedPos = allnodes_begin();
4661
4662  // Visit all the nodes. Move nodes with no operands to the front of
4663  // the list immediately. Annotate nodes that do have operands with their
4664  // operand count. Before we do this, the Node Id fields of the nodes
4665  // may contain arbitrary values. After, the Node Id fields for nodes
4666  // before SortedPos will contain the topological sort index, and the
4667  // Node Id fields for nodes At SortedPos and after will contain the
4668  // count of outstanding operands.
4669  for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ) {
4670    SDNode *N = I++;
4671    unsigned Degree = N->getNumOperands();
4672    if (Degree == 0) {
4673      // A node with no uses, add it to the result array immediately.
4674      N->setNodeId(DAGSize++);
4675      allnodes_iterator Q = N;
4676      if (Q != SortedPos)
4677        SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q));
4678      ++SortedPos;
4679    } else {
4680      // Temporarily use the Node Id as scratch space for the degree count.
4681      N->setNodeId(Degree);
4682    }
4683  }
4684
4685  // Visit all the nodes. As we iterate, moves nodes into sorted order,
4686  // such that by the time the end is reached all nodes will be sorted.
4687  for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I) {
4688    SDNode *N = I;
4689    for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4690         UI != UE; ++UI) {
4691      SDNode *P = *UI;
4692      unsigned Degree = P->getNodeId();
4693      --Degree;
4694      if (Degree == 0) {
4695        // All of P's operands are sorted, so P may sorted now.
4696        P->setNodeId(DAGSize++);
4697        if (P != SortedPos)
4698          SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(P));
4699        ++SortedPos;
4700      } else {
4701        // Update P's outstanding operand count.
4702        P->setNodeId(Degree);
4703      }
4704    }
4705  }
4706
4707  assert(SortedPos == AllNodes.end() &&
4708         "Topological sort incomplete!");
4709  assert(AllNodes.front().getOpcode() == ISD::EntryToken &&
4710         "First node in topological sort is not the entry token!");
4711  assert(AllNodes.front().getNodeId() == 0 &&
4712         "First node in topological sort has non-zero id!");
4713  assert(AllNodes.front().getNumOperands() == 0 &&
4714         "First node in topological sort has operands!");
4715  assert(AllNodes.back().getNodeId() == (int)DAGSize-1 &&
4716         "Last node in topologic sort has unexpected id!");
4717  assert(AllNodes.back().use_empty() &&
4718         "Last node in topologic sort has users!");
4719  assert(DAGSize == allnodes_size() && "Node count mismatch!");
4720  return DAGSize;
4721}
4722
4723
4724
4725//===----------------------------------------------------------------------===//
4726//                              SDNode Class
4727//===----------------------------------------------------------------------===//
4728
4729// Out-of-line virtual method to give class a home.
4730void SDNode::ANCHOR() {}
4731void UnarySDNode::ANCHOR() {}
4732void BinarySDNode::ANCHOR() {}
4733void TernarySDNode::ANCHOR() {}
4734void HandleSDNode::ANCHOR() {}
4735void ConstantSDNode::ANCHOR() {}
4736void ConstantFPSDNode::ANCHOR() {}
4737void GlobalAddressSDNode::ANCHOR() {}
4738void FrameIndexSDNode::ANCHOR() {}
4739void JumpTableSDNode::ANCHOR() {}
4740void ConstantPoolSDNode::ANCHOR() {}
4741void BasicBlockSDNode::ANCHOR() {}
4742void SrcValueSDNode::ANCHOR() {}
4743void MemOperandSDNode::ANCHOR() {}
4744void RegisterSDNode::ANCHOR() {}
4745void DbgStopPointSDNode::ANCHOR() {}
4746void LabelSDNode::ANCHOR() {}
4747void ExternalSymbolSDNode::ANCHOR() {}
4748void CondCodeSDNode::ANCHOR() {}
4749void ARG_FLAGSSDNode::ANCHOR() {}
4750void VTSDNode::ANCHOR() {}
4751void MemSDNode::ANCHOR() {}
4752void LoadSDNode::ANCHOR() {}
4753void StoreSDNode::ANCHOR() {}
4754void AtomicSDNode::ANCHOR() {}
4755void MemIntrinsicSDNode::ANCHOR() {}
4756void CallSDNode::ANCHOR() {}
4757void CvtRndSatSDNode::ANCHOR() {}
4758
4759HandleSDNode::~HandleSDNode() {
4760  DropOperands();
4761}
4762
4763GlobalAddressSDNode::GlobalAddressSDNode(bool isTarget, const GlobalValue *GA,
4764                                         MVT VT, int64_t o)
4765  : SDNode(isa<GlobalVariable>(GA) &&
4766           cast<GlobalVariable>(GA)->isThreadLocal() ?
4767           // Thread Local
4768           (isTarget ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress) :
4769           // Non Thread Local
4770           (isTarget ? ISD::TargetGlobalAddress : ISD::GlobalAddress),
4771           getSDVTList(VT)), Offset(o) {
4772  TheGlobal = const_cast<GlobalValue*>(GA);
4773}
4774
4775MemSDNode::MemSDNode(unsigned Opc, SDVTList VTs, MVT memvt,
4776                     const Value *srcValue, int SVO,
4777                     unsigned alignment, bool vol)
4778 : SDNode(Opc, VTs), MemoryVT(memvt), SrcValue(srcValue), SVOffset(SVO),
4779   Flags(encodeMemSDNodeFlags(vol, alignment)) {
4780
4781  assert(isPowerOf2_32(alignment) && "Alignment is not a power of 2!");
4782  assert(getAlignment() == alignment && "Alignment representation error!");
4783  assert(isVolatile() == vol && "Volatile representation error!");
4784}
4785
4786MemSDNode::MemSDNode(unsigned Opc, SDVTList VTs, const SDValue *Ops,
4787                     unsigned NumOps, MVT memvt, const Value *srcValue,
4788                     int SVO, unsigned alignment, bool vol)
4789   : SDNode(Opc, VTs, Ops, NumOps),
4790     MemoryVT(memvt), SrcValue(srcValue), SVOffset(SVO),
4791     Flags(vol | ((Log2_32(alignment) + 1) << 1)) {
4792  assert(isPowerOf2_32(alignment) && "Alignment is not a power of 2!");
4793  assert(getAlignment() == alignment && "Alignment representation error!");
4794  assert(isVolatile() == vol && "Volatile representation error!");
4795}
4796
4797/// getMemOperand - Return a MachineMemOperand object describing the memory
4798/// reference performed by this memory reference.
4799MachineMemOperand MemSDNode::getMemOperand() const {
4800  int Flags = 0;
4801  if (isa<LoadSDNode>(this))
4802    Flags = MachineMemOperand::MOLoad;
4803  else if (isa<StoreSDNode>(this))
4804    Flags = MachineMemOperand::MOStore;
4805  else if (isa<AtomicSDNode>(this)) {
4806    Flags = MachineMemOperand::MOLoad | MachineMemOperand::MOStore;
4807  }
4808  else {
4809    const MemIntrinsicSDNode* MemIntrinNode = dyn_cast<MemIntrinsicSDNode>(this);
4810    assert(MemIntrinNode && "Unknown MemSDNode opcode!");
4811    if (MemIntrinNode->readMem()) Flags |= MachineMemOperand::MOLoad;
4812    if (MemIntrinNode->writeMem()) Flags |= MachineMemOperand::MOStore;
4813  }
4814
4815  int Size = (getMemoryVT().getSizeInBits() + 7) >> 3;
4816  if (isVolatile()) Flags |= MachineMemOperand::MOVolatile;
4817
4818  // Check if the memory reference references a frame index
4819  const FrameIndexSDNode *FI =
4820  dyn_cast<const FrameIndexSDNode>(getBasePtr().getNode());
4821  if (!getSrcValue() && FI)
4822    return MachineMemOperand(PseudoSourceValue::getFixedStack(FI->getIndex()),
4823                             Flags, 0, Size, getAlignment());
4824  else
4825    return MachineMemOperand(getSrcValue(), Flags, getSrcValueOffset(),
4826                             Size, getAlignment());
4827}
4828
4829/// Profile - Gather unique data for the node.
4830///
4831void SDNode::Profile(FoldingSetNodeID &ID) const {
4832  AddNodeIDNode(ID, this);
4833}
4834
4835/// getValueTypeList - Return a pointer to the specified value type.
4836///
4837const MVT *SDNode::getValueTypeList(MVT VT) {
4838  if (VT.isExtended()) {
4839    static std::set<MVT, MVT::compareRawBits> EVTs;
4840    return &(*EVTs.insert(VT).first);
4841  } else {
4842    static MVT VTs[MVT::LAST_VALUETYPE];
4843    VTs[VT.getSimpleVT()] = VT;
4844    return &VTs[VT.getSimpleVT()];
4845  }
4846}
4847
4848/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
4849/// indicated value.  This method ignores uses of other values defined by this
4850/// operation.
4851bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const {
4852  assert(Value < getNumValues() && "Bad value!");
4853
4854  // TODO: Only iterate over uses of a given value of the node
4855  for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) {
4856    if (UI.getUse().getSDValue().getResNo() == Value) {
4857      if (NUses == 0)
4858        return false;
4859      --NUses;
4860    }
4861  }
4862
4863  // Found exactly the right number of uses?
4864  return NUses == 0;
4865}
4866
4867
4868/// hasAnyUseOfValue - Return true if there are any use of the indicated
4869/// value. This method ignores uses of other values defined by this operation.
4870bool SDNode::hasAnyUseOfValue(unsigned Value) const {
4871  assert(Value < getNumValues() && "Bad value!");
4872
4873  for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI)
4874    if (UI.getUse().getSDValue().getResNo() == Value)
4875      return true;
4876
4877  return false;
4878}
4879
4880
4881/// isOnlyUserOf - Return true if this node is the only use of N.
4882///
4883bool SDNode::isOnlyUserOf(SDNode *N) const {
4884  bool Seen = false;
4885  for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
4886    SDNode *User = *I;
4887    if (User == this)
4888      Seen = true;
4889    else
4890      return false;
4891  }
4892
4893  return Seen;
4894}
4895
4896/// isOperand - Return true if this node is an operand of N.
4897///
4898bool SDValue::isOperandOf(SDNode *N) const {
4899  for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4900    if (*this == N->getOperand(i))
4901      return true;
4902  return false;
4903}
4904
4905bool SDNode::isOperandOf(SDNode *N) const {
4906  for (unsigned i = 0, e = N->NumOperands; i != e; ++i)
4907    if (this == N->OperandList[i].getVal())
4908      return true;
4909  return false;
4910}
4911
4912/// reachesChainWithoutSideEffects - Return true if this operand (which must
4913/// be a chain) reaches the specified operand without crossing any
4914/// side-effecting instructions.  In practice, this looks through token
4915/// factors and non-volatile loads.  In order to remain efficient, this only
4916/// looks a couple of nodes in, it does not do an exhaustive search.
4917bool SDValue::reachesChainWithoutSideEffects(SDValue Dest,
4918                                               unsigned Depth) const {
4919  if (*this == Dest) return true;
4920
4921  // Don't search too deeply, we just want to be able to see through
4922  // TokenFactor's etc.
4923  if (Depth == 0) return false;
4924
4925  // If this is a token factor, all inputs to the TF happen in parallel.  If any
4926  // of the operands of the TF reach dest, then we can do the xform.
4927  if (getOpcode() == ISD::TokenFactor) {
4928    for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
4929      if (getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1))
4930        return true;
4931    return false;
4932  }
4933
4934  // Loads don't have side effects, look through them.
4935  if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) {
4936    if (!Ld->isVolatile())
4937      return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1);
4938  }
4939  return false;
4940}
4941
4942
4943static void findPredecessor(SDNode *N, const SDNode *P, bool &found,
4944                            SmallPtrSet<SDNode *, 32> &Visited) {
4945  if (found || !Visited.insert(N))
4946    return;
4947
4948  for (unsigned i = 0, e = N->getNumOperands(); !found && i != e; ++i) {
4949    SDNode *Op = N->getOperand(i).getNode();
4950    if (Op == P) {
4951      found = true;
4952      return;
4953    }
4954    findPredecessor(Op, P, found, Visited);
4955  }
4956}
4957
4958/// isPredecessorOf - Return true if this node is a predecessor of N. This node
4959/// is either an operand of N or it can be reached by recursively traversing
4960/// up the operands.
4961/// NOTE: this is an expensive method. Use it carefully.
4962bool SDNode::isPredecessorOf(SDNode *N) const {
4963  SmallPtrSet<SDNode *, 32> Visited;
4964  bool found = false;
4965  findPredecessor(N, this, found, Visited);
4966  return found;
4967}
4968
4969uint64_t SDNode::getConstantOperandVal(unsigned Num) const {
4970  assert(Num < NumOperands && "Invalid child # of SDNode!");
4971  return cast<ConstantSDNode>(OperandList[Num])->getZExtValue();
4972}
4973
4974std::string SDNode::getOperationName(const SelectionDAG *G) const {
4975  switch (getOpcode()) {
4976  default:
4977    if (getOpcode() < ISD::BUILTIN_OP_END)
4978      return "<<Unknown DAG Node>>";
4979    if (isMachineOpcode()) {
4980      if (G)
4981        if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
4982          if (getMachineOpcode() < TII->getNumOpcodes())
4983            return TII->get(getMachineOpcode()).getName();
4984      return "<<Unknown Machine Node>>";
4985    }
4986    if (G) {
4987      TargetLowering &TLI = G->getTargetLoweringInfo();
4988      const char *Name = TLI.getTargetNodeName(getOpcode());
4989      if (Name) return Name;
4990      return "<<Unknown Target Node>>";
4991    }
4992    return "<<Unknown Node>>";
4993
4994#ifndef NDEBUG
4995  case ISD::DELETED_NODE:
4996    return "<<Deleted Node!>>";
4997#endif
4998  case ISD::PREFETCH:      return "Prefetch";
4999  case ISD::MEMBARRIER:    return "MemBarrier";
5000  case ISD::ATOMIC_CMP_SWAP_8:  return "AtomicCmpSwap8";
5001  case ISD::ATOMIC_SWAP_8:      return "AtomicSwap8";
5002  case ISD::ATOMIC_LOAD_ADD_8:  return "AtomicLoadAdd8";
5003  case ISD::ATOMIC_LOAD_SUB_8:  return "AtomicLoadSub8";
5004  case ISD::ATOMIC_LOAD_AND_8:  return "AtomicLoadAnd8";
5005  case ISD::ATOMIC_LOAD_OR_8:   return "AtomicLoadOr8";
5006  case ISD::ATOMIC_LOAD_XOR_8:  return "AtomicLoadXor8";
5007  case ISD::ATOMIC_LOAD_NAND_8: return "AtomicLoadNand8";
5008  case ISD::ATOMIC_LOAD_MIN_8:  return "AtomicLoadMin8";
5009  case ISD::ATOMIC_LOAD_MAX_8:  return "AtomicLoadMax8";
5010  case ISD::ATOMIC_LOAD_UMIN_8: return "AtomicLoadUMin8";
5011  case ISD::ATOMIC_LOAD_UMAX_8: return "AtomicLoadUMax8";
5012  case ISD::ATOMIC_CMP_SWAP_16:  return "AtomicCmpSwap16";
5013  case ISD::ATOMIC_SWAP_16:      return "AtomicSwap16";
5014  case ISD::ATOMIC_LOAD_ADD_16:  return "AtomicLoadAdd16";
5015  case ISD::ATOMIC_LOAD_SUB_16:  return "AtomicLoadSub16";
5016  case ISD::ATOMIC_LOAD_AND_16:  return "AtomicLoadAnd16";
5017  case ISD::ATOMIC_LOAD_OR_16:   return "AtomicLoadOr16";
5018  case ISD::ATOMIC_LOAD_XOR_16:  return "AtomicLoadXor16";
5019  case ISD::ATOMIC_LOAD_NAND_16: return "AtomicLoadNand16";
5020  case ISD::ATOMIC_LOAD_MIN_16:  return "AtomicLoadMin16";
5021  case ISD::ATOMIC_LOAD_MAX_16:  return "AtomicLoadMax16";
5022  case ISD::ATOMIC_LOAD_UMIN_16: return "AtomicLoadUMin16";
5023  case ISD::ATOMIC_LOAD_UMAX_16: return "AtomicLoadUMax16";
5024  case ISD::ATOMIC_CMP_SWAP_32:  return "AtomicCmpSwap32";
5025  case ISD::ATOMIC_SWAP_32:      return "AtomicSwap32";
5026  case ISD::ATOMIC_LOAD_ADD_32:  return "AtomicLoadAdd32";
5027  case ISD::ATOMIC_LOAD_SUB_32:  return "AtomicLoadSub32";
5028  case ISD::ATOMIC_LOAD_AND_32:  return "AtomicLoadAnd32";
5029  case ISD::ATOMIC_LOAD_OR_32:   return "AtomicLoadOr32";
5030  case ISD::ATOMIC_LOAD_XOR_32:  return "AtomicLoadXor32";
5031  case ISD::ATOMIC_LOAD_NAND_32: return "AtomicLoadNand32";
5032  case ISD::ATOMIC_LOAD_MIN_32:  return "AtomicLoadMin32";
5033  case ISD::ATOMIC_LOAD_MAX_32:  return "AtomicLoadMax32";
5034  case ISD::ATOMIC_LOAD_UMIN_32: return "AtomicLoadUMin32";
5035  case ISD::ATOMIC_LOAD_UMAX_32: return "AtomicLoadUMax32";
5036  case ISD::ATOMIC_CMP_SWAP_64:  return "AtomicCmpSwap64";
5037  case ISD::ATOMIC_SWAP_64:      return "AtomicSwap64";
5038  case ISD::ATOMIC_LOAD_ADD_64:  return "AtomicLoadAdd64";
5039  case ISD::ATOMIC_LOAD_SUB_64:  return "AtomicLoadSub64";
5040  case ISD::ATOMIC_LOAD_AND_64:  return "AtomicLoadAnd64";
5041  case ISD::ATOMIC_LOAD_OR_64:   return "AtomicLoadOr64";
5042  case ISD::ATOMIC_LOAD_XOR_64:  return "AtomicLoadXor64";
5043  case ISD::ATOMIC_LOAD_NAND_64: return "AtomicLoadNand64";
5044  case ISD::ATOMIC_LOAD_MIN_64:  return "AtomicLoadMin64";
5045  case ISD::ATOMIC_LOAD_MAX_64:  return "AtomicLoadMax64";
5046  case ISD::ATOMIC_LOAD_UMIN_64: return "AtomicLoadUMin64";
5047  case ISD::ATOMIC_LOAD_UMAX_64: return "AtomicLoadUMax64";
5048  case ISD::PCMARKER:      return "PCMarker";
5049  case ISD::READCYCLECOUNTER: return "ReadCycleCounter";
5050  case ISD::SRCVALUE:      return "SrcValue";
5051  case ISD::MEMOPERAND:    return "MemOperand";
5052  case ISD::EntryToken:    return "EntryToken";
5053  case ISD::TokenFactor:   return "TokenFactor";
5054  case ISD::AssertSext:    return "AssertSext";
5055  case ISD::AssertZext:    return "AssertZext";
5056
5057  case ISD::BasicBlock:    return "BasicBlock";
5058  case ISD::ARG_FLAGS:     return "ArgFlags";
5059  case ISD::VALUETYPE:     return "ValueType";
5060  case ISD::Register:      return "Register";
5061
5062  case ISD::Constant:      return "Constant";
5063  case ISD::ConstantFP:    return "ConstantFP";
5064  case ISD::GlobalAddress: return "GlobalAddress";
5065  case ISD::GlobalTLSAddress: return "GlobalTLSAddress";
5066  case ISD::FrameIndex:    return "FrameIndex";
5067  case ISD::JumpTable:     return "JumpTable";
5068  case ISD::GLOBAL_OFFSET_TABLE: return "GLOBAL_OFFSET_TABLE";
5069  case ISD::RETURNADDR: return "RETURNADDR";
5070  case ISD::FRAMEADDR: return "FRAMEADDR";
5071  case ISD::FRAME_TO_ARGS_OFFSET: return "FRAME_TO_ARGS_OFFSET";
5072  case ISD::EXCEPTIONADDR: return "EXCEPTIONADDR";
5073  case ISD::EHSELECTION: return "EHSELECTION";
5074  case ISD::EH_RETURN: return "EH_RETURN";
5075  case ISD::ConstantPool:  return "ConstantPool";
5076  case ISD::ExternalSymbol: return "ExternalSymbol";
5077  case ISD::INTRINSIC_WO_CHAIN: {
5078    unsigned IID = cast<ConstantSDNode>(getOperand(0))->getZExtValue();
5079    return Intrinsic::getName((Intrinsic::ID)IID);
5080  }
5081  case ISD::INTRINSIC_VOID:
5082  case ISD::INTRINSIC_W_CHAIN: {
5083    unsigned IID = cast<ConstantSDNode>(getOperand(1))->getZExtValue();
5084    return Intrinsic::getName((Intrinsic::ID)IID);
5085  }
5086
5087  case ISD::BUILD_VECTOR:   return "BUILD_VECTOR";
5088  case ISD::TargetConstant: return "TargetConstant";
5089  case ISD::TargetConstantFP:return "TargetConstantFP";
5090  case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
5091  case ISD::TargetGlobalTLSAddress: return "TargetGlobalTLSAddress";
5092  case ISD::TargetFrameIndex: return "TargetFrameIndex";
5093  case ISD::TargetJumpTable:  return "TargetJumpTable";
5094  case ISD::TargetConstantPool:  return "TargetConstantPool";
5095  case ISD::TargetExternalSymbol: return "TargetExternalSymbol";
5096
5097  case ISD::CopyToReg:     return "CopyToReg";
5098  case ISD::CopyFromReg:   return "CopyFromReg";
5099  case ISD::UNDEF:         return "undef";
5100  case ISD::MERGE_VALUES:  return "merge_values";
5101  case ISD::INLINEASM:     return "inlineasm";
5102  case ISD::DBG_LABEL:     return "dbg_label";
5103  case ISD::EH_LABEL:      return "eh_label";
5104  case ISD::DECLARE:       return "declare";
5105  case ISD::HANDLENODE:    return "handlenode";
5106  case ISD::FORMAL_ARGUMENTS: return "formal_arguments";
5107  case ISD::CALL:          return "call";
5108
5109  // Unary operators
5110  case ISD::FABS:   return "fabs";
5111  case ISD::FNEG:   return "fneg";
5112  case ISD::FSQRT:  return "fsqrt";
5113  case ISD::FSIN:   return "fsin";
5114  case ISD::FCOS:   return "fcos";
5115  case ISD::FPOWI:  return "fpowi";
5116  case ISD::FPOW:   return "fpow";
5117  case ISD::FTRUNC: return "ftrunc";
5118  case ISD::FFLOOR: return "ffloor";
5119  case ISD::FCEIL:  return "fceil";
5120  case ISD::FRINT:  return "frint";
5121  case ISD::FNEARBYINT: return "fnearbyint";
5122
5123  // Binary operators
5124  case ISD::ADD:    return "add";
5125  case ISD::SUB:    return "sub";
5126  case ISD::MUL:    return "mul";
5127  case ISD::MULHU:  return "mulhu";
5128  case ISD::MULHS:  return "mulhs";
5129  case ISD::SDIV:   return "sdiv";
5130  case ISD::UDIV:   return "udiv";
5131  case ISD::SREM:   return "srem";
5132  case ISD::UREM:   return "urem";
5133  case ISD::SMUL_LOHI:  return "smul_lohi";
5134  case ISD::UMUL_LOHI:  return "umul_lohi";
5135  case ISD::SDIVREM:    return "sdivrem";
5136  case ISD::UDIVREM:    return "udivrem";
5137  case ISD::AND:    return "and";
5138  case ISD::OR:     return "or";
5139  case ISD::XOR:    return "xor";
5140  case ISD::SHL:    return "shl";
5141  case ISD::SRA:    return "sra";
5142  case ISD::SRL:    return "srl";
5143  case ISD::ROTL:   return "rotl";
5144  case ISD::ROTR:   return "rotr";
5145  case ISD::FADD:   return "fadd";
5146  case ISD::FSUB:   return "fsub";
5147  case ISD::FMUL:   return "fmul";
5148  case ISD::FDIV:   return "fdiv";
5149  case ISD::FREM:   return "frem";
5150  case ISD::FCOPYSIGN: return "fcopysign";
5151  case ISD::FGETSIGN:  return "fgetsign";
5152
5153  case ISD::SETCC:       return "setcc";
5154  case ISD::VSETCC:      return "vsetcc";
5155  case ISD::SELECT:      return "select";
5156  case ISD::SELECT_CC:   return "select_cc";
5157  case ISD::INSERT_VECTOR_ELT:   return "insert_vector_elt";
5158  case ISD::EXTRACT_VECTOR_ELT:  return "extract_vector_elt";
5159  case ISD::CONCAT_VECTORS:      return "concat_vectors";
5160  case ISD::EXTRACT_SUBVECTOR:   return "extract_subvector";
5161  case ISD::SCALAR_TO_VECTOR:    return "scalar_to_vector";
5162  case ISD::VECTOR_SHUFFLE:      return "vector_shuffle";
5163  case ISD::CARRY_FALSE:         return "carry_false";
5164  case ISD::ADDC:        return "addc";
5165  case ISD::ADDE:        return "adde";
5166  case ISD::SADDO:       return "saddo";
5167  case ISD::UADDO:       return "uaddo";
5168  case ISD::SUBC:        return "subc";
5169  case ISD::SUBE:        return "sube";
5170  case ISD::SHL_PARTS:   return "shl_parts";
5171  case ISD::SRA_PARTS:   return "sra_parts";
5172  case ISD::SRL_PARTS:   return "srl_parts";
5173
5174  case ISD::EXTRACT_SUBREG:     return "extract_subreg";
5175  case ISD::INSERT_SUBREG:      return "insert_subreg";
5176
5177  // Conversion operators.
5178  case ISD::SIGN_EXTEND: return "sign_extend";
5179  case ISD::ZERO_EXTEND: return "zero_extend";
5180  case ISD::ANY_EXTEND:  return "any_extend";
5181  case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
5182  case ISD::TRUNCATE:    return "truncate";
5183  case ISD::FP_ROUND:    return "fp_round";
5184  case ISD::FLT_ROUNDS_: return "flt_rounds";
5185  case ISD::FP_ROUND_INREG: return "fp_round_inreg";
5186  case ISD::FP_EXTEND:   return "fp_extend";
5187
5188  case ISD::SINT_TO_FP:  return "sint_to_fp";
5189  case ISD::UINT_TO_FP:  return "uint_to_fp";
5190  case ISD::FP_TO_SINT:  return "fp_to_sint";
5191  case ISD::FP_TO_UINT:  return "fp_to_uint";
5192  case ISD::BIT_CONVERT: return "bit_convert";
5193
5194  case ISD::CONVERT_RNDSAT: {
5195    switch (cast<CvtRndSatSDNode>(this)->getCvtCode()) {
5196    default: assert(0 && "Unknown cvt code!");
5197    case ISD::CVT_FF:  return "cvt_ff";
5198    case ISD::CVT_FS:  return "cvt_fs";
5199    case ISD::CVT_FU:  return "cvt_fu";
5200    case ISD::CVT_SF:  return "cvt_sf";
5201    case ISD::CVT_UF:  return "cvt_uf";
5202    case ISD::CVT_SS:  return "cvt_ss";
5203    case ISD::CVT_SU:  return "cvt_su";
5204    case ISD::CVT_US:  return "cvt_us";
5205    case ISD::CVT_UU:  return "cvt_uu";
5206    }
5207  }
5208
5209    // Control flow instructions
5210  case ISD::BR:      return "br";
5211  case ISD::BRIND:   return "brind";
5212  case ISD::BR_JT:   return "br_jt";
5213  case ISD::BRCOND:  return "brcond";
5214  case ISD::BR_CC:   return "br_cc";
5215  case ISD::RET:     return "ret";
5216  case ISD::CALLSEQ_START:  return "callseq_start";
5217  case ISD::CALLSEQ_END:    return "callseq_end";
5218
5219    // Other operators
5220  case ISD::LOAD:               return "load";
5221  case ISD::STORE:              return "store";
5222  case ISD::VAARG:              return "vaarg";
5223  case ISD::VACOPY:             return "vacopy";
5224  case ISD::VAEND:              return "vaend";
5225  case ISD::VASTART:            return "vastart";
5226  case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
5227  case ISD::EXTRACT_ELEMENT:    return "extract_element";
5228  case ISD::BUILD_PAIR:         return "build_pair";
5229  case ISD::STACKSAVE:          return "stacksave";
5230  case ISD::STACKRESTORE:       return "stackrestore";
5231  case ISD::TRAP:               return "trap";
5232
5233  // Bit manipulation
5234  case ISD::BSWAP:   return "bswap";
5235  case ISD::CTPOP:   return "ctpop";
5236  case ISD::CTTZ:    return "cttz";
5237  case ISD::CTLZ:    return "ctlz";
5238
5239  // Debug info
5240  case ISD::DBG_STOPPOINT: return "dbg_stoppoint";
5241  case ISD::DEBUG_LOC: return "debug_loc";
5242
5243  // Trampolines
5244  case ISD::TRAMPOLINE: return "trampoline";
5245
5246  case ISD::CONDCODE:
5247    switch (cast<CondCodeSDNode>(this)->get()) {
5248    default: assert(0 && "Unknown setcc condition!");
5249    case ISD::SETOEQ:  return "setoeq";
5250    case ISD::SETOGT:  return "setogt";
5251    case ISD::SETOGE:  return "setoge";
5252    case ISD::SETOLT:  return "setolt";
5253    case ISD::SETOLE:  return "setole";
5254    case ISD::SETONE:  return "setone";
5255
5256    case ISD::SETO:    return "seto";
5257    case ISD::SETUO:   return "setuo";
5258    case ISD::SETUEQ:  return "setue";
5259    case ISD::SETUGT:  return "setugt";
5260    case ISD::SETUGE:  return "setuge";
5261    case ISD::SETULT:  return "setult";
5262    case ISD::SETULE:  return "setule";
5263    case ISD::SETUNE:  return "setune";
5264
5265    case ISD::SETEQ:   return "seteq";
5266    case ISD::SETGT:   return "setgt";
5267    case ISD::SETGE:   return "setge";
5268    case ISD::SETLT:   return "setlt";
5269    case ISD::SETLE:   return "setle";
5270    case ISD::SETNE:   return "setne";
5271    }
5272  }
5273}
5274
5275const char *SDNode::getIndexedModeName(ISD::MemIndexedMode AM) {
5276  switch (AM) {
5277  default:
5278    return "";
5279  case ISD::PRE_INC:
5280    return "<pre-inc>";
5281  case ISD::PRE_DEC:
5282    return "<pre-dec>";
5283  case ISD::POST_INC:
5284    return "<post-inc>";
5285  case ISD::POST_DEC:
5286    return "<post-dec>";
5287  }
5288}
5289
5290std::string ISD::ArgFlagsTy::getArgFlagsString() {
5291  std::string S = "< ";
5292
5293  if (isZExt())
5294    S += "zext ";
5295  if (isSExt())
5296    S += "sext ";
5297  if (isInReg())
5298    S += "inreg ";
5299  if (isSRet())
5300    S += "sret ";
5301  if (isByVal())
5302    S += "byval ";
5303  if (isNest())
5304    S += "nest ";
5305  if (getByValAlign())
5306    S += "byval-align:" + utostr(getByValAlign()) + " ";
5307  if (getOrigAlign())
5308    S += "orig-align:" + utostr(getOrigAlign()) + " ";
5309  if (getByValSize())
5310    S += "byval-size:" + utostr(getByValSize()) + " ";
5311  return S + ">";
5312}
5313
5314void SDNode::dump() const { dump(0); }
5315void SDNode::dump(const SelectionDAG *G) const {
5316  print(errs(), G);
5317  errs().flush();
5318}
5319
5320void SDNode::print(raw_ostream &OS, const SelectionDAG *G) const {
5321  OS << (void*)this << ": ";
5322
5323  for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
5324    if (i) OS << ",";
5325    if (getValueType(i) == MVT::Other)
5326      OS << "ch";
5327    else
5328      OS << getValueType(i).getMVTString();
5329  }
5330  OS << " = " << getOperationName(G);
5331
5332  OS << " ";
5333  for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
5334    if (i) OS << ", ";
5335    OS << (void*)getOperand(i).getNode();
5336    if (unsigned RN = getOperand(i).getResNo())
5337      OS << ":" << RN;
5338  }
5339
5340  if (!isTargetOpcode() && getOpcode() == ISD::VECTOR_SHUFFLE) {
5341    SDNode *Mask = getOperand(2).getNode();
5342    OS << "<";
5343    for (unsigned i = 0, e = Mask->getNumOperands(); i != e; ++i) {
5344      if (i) OS << ",";
5345      if (Mask->getOperand(i).getOpcode() == ISD::UNDEF)
5346        OS << "u";
5347      else
5348        OS << cast<ConstantSDNode>(Mask->getOperand(i))->getZExtValue();
5349    }
5350    OS << ">";
5351  }
5352
5353  if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
5354    OS << '<' << CSDN->getAPIntValue() << '>';
5355  } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
5356    if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEsingle)
5357      OS << '<' << CSDN->getValueAPF().convertToFloat() << '>';
5358    else if (&CSDN->getValueAPF().getSemantics()==&APFloat::IEEEdouble)
5359      OS << '<' << CSDN->getValueAPF().convertToDouble() << '>';
5360    else {
5361      OS << "<APFloat(";
5362      CSDN->getValueAPF().bitcastToAPInt().dump();
5363      OS << ")>";
5364    }
5365  } else if (const GlobalAddressSDNode *GADN =
5366             dyn_cast<GlobalAddressSDNode>(this)) {
5367    int64_t offset = GADN->getOffset();
5368    OS << '<';
5369    WriteAsOperand(OS, GADN->getGlobal());
5370    OS << '>';
5371    if (offset > 0)
5372      OS << " + " << offset;
5373    else
5374      OS << " " << offset;
5375  } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
5376    OS << "<" << FIDN->getIndex() << ">";
5377  } else if (const JumpTableSDNode *JTDN = dyn_cast<JumpTableSDNode>(this)) {
5378    OS << "<" << JTDN->getIndex() << ">";
5379  } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
5380    int offset = CP->getOffset();
5381    if (CP->isMachineConstantPoolEntry())
5382      OS << "<" << *CP->getMachineCPVal() << ">";
5383    else
5384      OS << "<" << *CP->getConstVal() << ">";
5385    if (offset > 0)
5386      OS << " + " << offset;
5387    else
5388      OS << " " << offset;
5389  } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
5390    OS << "<";
5391    const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
5392    if (LBB)
5393      OS << LBB->getName() << " ";
5394    OS << (const void*)BBDN->getBasicBlock() << ">";
5395  } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
5396    if (G && R->getReg() &&
5397        TargetRegisterInfo::isPhysicalRegister(R->getReg())) {
5398      OS << " " << G->getTarget().getRegisterInfo()->getName(R->getReg());
5399    } else {
5400      OS << " #" << R->getReg();
5401    }
5402  } else if (const ExternalSymbolSDNode *ES =
5403             dyn_cast<ExternalSymbolSDNode>(this)) {
5404    OS << "'" << ES->getSymbol() << "'";
5405  } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
5406    if (M->getValue())
5407      OS << "<" << M->getValue() << ">";
5408    else
5409      OS << "<null>";
5410  } else if (const MemOperandSDNode *M = dyn_cast<MemOperandSDNode>(this)) {
5411    if (M->MO.getValue())
5412      OS << "<" << M->MO.getValue() << ":" << M->MO.getOffset() << ">";
5413    else
5414      OS << "<null:" << M->MO.getOffset() << ">";
5415  } else if (const ARG_FLAGSSDNode *N = dyn_cast<ARG_FLAGSSDNode>(this)) {
5416    OS << N->getArgFlags().getArgFlagsString();
5417  } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
5418    OS << ":" << N->getVT().getMVTString();
5419  }
5420  else if (const LoadSDNode *LD = dyn_cast<LoadSDNode>(this)) {
5421    const Value *SrcValue = LD->getSrcValue();
5422    int SrcOffset = LD->getSrcValueOffset();
5423    OS << " <";
5424    if (SrcValue)
5425      OS << SrcValue;
5426    else
5427      OS << "null";
5428    OS << ":" << SrcOffset << ">";
5429
5430    bool doExt = true;
5431    switch (LD->getExtensionType()) {
5432    default: doExt = false; break;
5433    case ISD::EXTLOAD: OS << " <anyext "; break;
5434    case ISD::SEXTLOAD: OS << " <sext "; break;
5435    case ISD::ZEXTLOAD: OS << " <zext "; break;
5436    }
5437    if (doExt)
5438      OS << LD->getMemoryVT().getMVTString() << ">";
5439
5440    const char *AM = getIndexedModeName(LD->getAddressingMode());
5441    if (*AM)
5442      OS << " " << AM;
5443    if (LD->isVolatile())
5444      OS << " <volatile>";
5445    OS << " alignment=" << LD->getAlignment();
5446  } else if (const StoreSDNode *ST = dyn_cast<StoreSDNode>(this)) {
5447    const Value *SrcValue = ST->getSrcValue();
5448    int SrcOffset = ST->getSrcValueOffset();
5449    OS << " <";
5450    if (SrcValue)
5451      OS << SrcValue;
5452    else
5453      OS << "null";
5454    OS << ":" << SrcOffset << ">";
5455
5456    if (ST->isTruncatingStore())
5457      OS << " <trunc " << ST->getMemoryVT().getMVTString() << ">";
5458
5459    const char *AM = getIndexedModeName(ST->getAddressingMode());
5460    if (*AM)
5461      OS << " " << AM;
5462    if (ST->isVolatile())
5463      OS << " <volatile>";
5464    OS << " alignment=" << ST->getAlignment();
5465  } else if (const AtomicSDNode* AT = dyn_cast<AtomicSDNode>(this)) {
5466    const Value *SrcValue = AT->getSrcValue();
5467    int SrcOffset = AT->getSrcValueOffset();
5468    OS << " <";
5469    if (SrcValue)
5470      OS << SrcValue;
5471    else
5472      OS << "null";
5473    OS << ":" << SrcOffset << ">";
5474    if (AT->isVolatile())
5475      OS << " <volatile>";
5476    OS << " alignment=" << AT->getAlignment();
5477  }
5478}
5479
5480static void DumpNodes(const SDNode *N, unsigned indent, const SelectionDAG *G) {
5481  for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
5482    if (N->getOperand(i).getNode()->hasOneUse())
5483      DumpNodes(N->getOperand(i).getNode(), indent+2, G);
5484    else
5485      cerr << "\n" << std::string(indent+2, ' ')
5486           << (void*)N->getOperand(i).getNode() << ": <multiple use>";
5487
5488
5489  cerr << "\n" << std::string(indent, ' ');
5490  N->dump(G);
5491}
5492
5493void SelectionDAG::dump() const {
5494  cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
5495
5496  for (allnodes_const_iterator I = allnodes_begin(), E = allnodes_end();
5497       I != E; ++I) {
5498    const SDNode *N = I;
5499    if (!N->hasOneUse() && N != getRoot().getNode())
5500      DumpNodes(N, 2, this);
5501  }
5502
5503  if (getRoot().getNode()) DumpNodes(getRoot().getNode(), 2, this);
5504
5505  cerr << "\n\n";
5506}
5507
5508const Type *ConstantPoolSDNode::getType() const {
5509  if (isMachineConstantPoolEntry())
5510    return Val.MachineCPVal->getType();
5511  return Val.ConstVal->getType();
5512}
5513