SelectionDAG.cpp revision 0558f61b0c758344ce18c548e4046b794610ea42
1//===-- SelectionDAG.cpp - Implement the SelectionDAG data structures -----===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This implements the SelectionDAG class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
15#include "llvm/Constants.h"
16#include "llvm/GlobalValue.h"
17#include "llvm/Assembly/Writer.h"
18#include "llvm/CodeGen/MachineBasicBlock.h"
19#include "llvm/Support/MathExtras.h"
20#include "llvm/Target/MRegisterInfo.h"
21#include "llvm/Target/TargetLowering.h"
22#include "llvm/Target/TargetInstrInfo.h"
23#include "llvm/Target/TargetMachine.h"
24#include <iostream>
25#include <set>
26#include <cmath>
27#include <algorithm>
28using namespace llvm;
29
30// Temporary boolean for testing the dag combiner
31namespace llvm {
32  extern bool CombinerEnabled;
33}
34
35static bool isCommutativeBinOp(unsigned Opcode) {
36  switch (Opcode) {
37  case ISD::ADD:
38  case ISD::MUL:
39  case ISD::FADD:
40  case ISD::FMUL:
41  case ISD::AND:
42  case ISD::OR:
43  case ISD::XOR: return true;
44  default: return false; // FIXME: Need commutative info for user ops!
45  }
46}
47
48static bool isAssociativeBinOp(unsigned Opcode) {
49  switch (Opcode) {
50  case ISD::ADD:
51  case ISD::MUL:
52  case ISD::AND:
53  case ISD::OR:
54  case ISD::XOR: return true;
55  default: return false; // FIXME: Need associative info for user ops!
56  }
57}
58
59// isInvertibleForFree - Return true if there is no cost to emitting the logical
60// inverse of this node.
61static bool isInvertibleForFree(SDOperand N) {
62  if (isa<ConstantSDNode>(N.Val)) return true;
63  if (N.Val->getOpcode() == ISD::SETCC && N.Val->hasOneUse())
64    return true;
65  return false;
66}
67
68//===----------------------------------------------------------------------===//
69//                              ConstantFPSDNode Class
70//===----------------------------------------------------------------------===//
71
72/// isExactlyValue - We don't rely on operator== working on double values, as
73/// it returns true for things that are clearly not equal, like -0.0 and 0.0.
74/// As such, this method can be used to do an exact bit-for-bit comparison of
75/// two floating point values.
76bool ConstantFPSDNode::isExactlyValue(double V) const {
77  return DoubleToBits(V) == DoubleToBits(Value);
78}
79
80//===----------------------------------------------------------------------===//
81//                              ISD Class
82//===----------------------------------------------------------------------===//
83
84/// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
85/// when given the operation for (X op Y).
86ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) {
87  // To perform this operation, we just need to swap the L and G bits of the
88  // operation.
89  unsigned OldL = (Operation >> 2) & 1;
90  unsigned OldG = (Operation >> 1) & 1;
91  return ISD::CondCode((Operation & ~6) |  // Keep the N, U, E bits
92                       (OldL << 1) |       // New G bit
93                       (OldG << 2));        // New L bit.
94}
95
96/// getSetCCInverse - Return the operation corresponding to !(X op Y), where
97/// 'op' is a valid SetCC operation.
98ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) {
99  unsigned Operation = Op;
100  if (isInteger)
101    Operation ^= 7;   // Flip L, G, E bits, but not U.
102  else
103    Operation ^= 15;  // Flip all of the condition bits.
104  if (Operation > ISD::SETTRUE2)
105    Operation &= ~8;     // Don't let N and U bits get set.
106  return ISD::CondCode(Operation);
107}
108
109
110/// isSignedOp - For an integer comparison, return 1 if the comparison is a
111/// signed operation and 2 if the result is an unsigned comparison.  Return zero
112/// if the operation does not depend on the sign of the input (setne and seteq).
113static int isSignedOp(ISD::CondCode Opcode) {
114  switch (Opcode) {
115  default: assert(0 && "Illegal integer setcc operation!");
116  case ISD::SETEQ:
117  case ISD::SETNE: return 0;
118  case ISD::SETLT:
119  case ISD::SETLE:
120  case ISD::SETGT:
121  case ISD::SETGE: return 1;
122  case ISD::SETULT:
123  case ISD::SETULE:
124  case ISD::SETUGT:
125  case ISD::SETUGE: return 2;
126  }
127}
128
129/// getSetCCOrOperation - Return the result of a logical OR between different
130/// comparisons of identical values: ((X op1 Y) | (X op2 Y)).  This function
131/// returns SETCC_INVALID if it is not possible to represent the resultant
132/// comparison.
133ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2,
134                                       bool isInteger) {
135  if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
136    // Cannot fold a signed integer setcc with an unsigned integer setcc.
137    return ISD::SETCC_INVALID;
138
139  unsigned Op = Op1 | Op2;  // Combine all of the condition bits.
140
141  // If the N and U bits get set then the resultant comparison DOES suddenly
142  // care about orderedness, and is true when ordered.
143  if (Op > ISD::SETTRUE2)
144    Op &= ~16;     // Clear the N bit.
145  return ISD::CondCode(Op);
146}
147
148/// getSetCCAndOperation - Return the result of a logical AND between different
149/// comparisons of identical values: ((X op1 Y) & (X op2 Y)).  This
150/// function returns zero if it is not possible to represent the resultant
151/// comparison.
152ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2,
153                                        bool isInteger) {
154  if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
155    // Cannot fold a signed setcc with an unsigned setcc.
156    return ISD::SETCC_INVALID;
157
158  // Combine all of the condition bits.
159  return ISD::CondCode(Op1 & Op2);
160}
161
162const TargetMachine &SelectionDAG::getTarget() const {
163  return TLI.getTargetMachine();
164}
165
166//===----------------------------------------------------------------------===//
167//                              SelectionDAG Class
168//===----------------------------------------------------------------------===//
169
170/// RemoveDeadNodes - This method deletes all unreachable nodes in the
171/// SelectionDAG, including nodes (like loads) that have uses of their token
172/// chain but no other uses and no side effect.  If a node is passed in as an
173/// argument, it is used as the seed for node deletion.
174void SelectionDAG::RemoveDeadNodes(SDNode *N) {
175  std::set<SDNode*> AllNodeSet(AllNodes.begin(), AllNodes.end());
176
177  // Create a dummy node (which is not added to allnodes), that adds a reference
178  // to the root node, preventing it from being deleted.
179  HandleSDNode Dummy(getRoot());
180
181  // If we have a hint to start from, use it.
182  if (N) DeleteNodeIfDead(N, &AllNodeSet);
183
184 Restart:
185  unsigned NumNodes = AllNodeSet.size();
186  for (std::set<SDNode*>::iterator I = AllNodeSet.begin(), E = AllNodeSet.end();
187       I != E; ++I) {
188    // Try to delete this node.
189    DeleteNodeIfDead(*I, &AllNodeSet);
190
191    // If we actually deleted any nodes, do not use invalid iterators in
192    // AllNodeSet.
193    if (AllNodeSet.size() != NumNodes)
194      goto Restart;
195  }
196
197  // Restore AllNodes.
198  if (AllNodes.size() != NumNodes)
199    AllNodes.assign(AllNodeSet.begin(), AllNodeSet.end());
200
201  // If the root changed (e.g. it was a dead load, update the root).
202  setRoot(Dummy.getValue());
203}
204
205
206void SelectionDAG::DeleteNodeIfDead(SDNode *N, void *NodeSet) {
207  if (!N->use_empty())
208    return;
209
210  // Okay, we really are going to delete this node.  First take this out of the
211  // appropriate CSE map.
212  RemoveNodeFromCSEMaps(N);
213
214  // Next, brutally remove the operand list.  This is safe to do, as there are
215  // no cycles in the graph.
216  while (!N->Operands.empty()) {
217    SDNode *O = N->Operands.back().Val;
218    N->Operands.pop_back();
219    O->removeUser(N);
220
221    // Now that we removed this operand, see if there are no uses of it left.
222    DeleteNodeIfDead(O, NodeSet);
223  }
224
225  // Remove the node from the nodes set and delete it.
226  std::set<SDNode*> &AllNodeSet = *(std::set<SDNode*>*)NodeSet;
227  AllNodeSet.erase(N);
228
229  // Now that the node is gone, check to see if any of the operands of this node
230  // are dead now.
231  delete N;
232}
233
234void SelectionDAG::DeleteNode(SDNode *N) {
235  assert(N->use_empty() && "Cannot delete a node that is not dead!");
236
237  // First take this out of the appropriate CSE map.
238  RemoveNodeFromCSEMaps(N);
239
240  // Finally, remove uses due to operands of this node, remove from the
241  // AllNodes list, and delete the node.
242  DeleteNodeNotInCSEMaps(N);
243}
244
245void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) {
246
247  // Remove it from the AllNodes list.
248  for (std::vector<SDNode*>::iterator I = AllNodes.begin(); ; ++I) {
249    assert(I != AllNodes.end() && "Node not in AllNodes list??");
250    if (*I == N) {
251      // Erase from the vector, which is not ordered.
252      std::swap(*I, AllNodes.back());
253      AllNodes.pop_back();
254      break;
255    }
256  }
257
258  // Drop all of the operands and decrement used nodes use counts.
259  while (!N->Operands.empty()) {
260    SDNode *O = N->Operands.back().Val;
261    N->Operands.pop_back();
262    O->removeUser(N);
263  }
264
265  delete N;
266}
267
268/// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that
269/// correspond to it.  This is useful when we're about to delete or repurpose
270/// the node.  We don't want future request for structurally identical nodes
271/// to return N anymore.
272void SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) {
273  bool Erased = false;
274  switch (N->getOpcode()) {
275  case ISD::HANDLENODE: return;  // noop.
276  case ISD::Constant:
277    Erased = Constants.erase(std::make_pair(cast<ConstantSDNode>(N)->getValue(),
278                                            N->getValueType(0)));
279    break;
280  case ISD::TargetConstant:
281    Erased = TargetConstants.erase(std::make_pair(
282                                    cast<ConstantSDNode>(N)->getValue(),
283                                                  N->getValueType(0)));
284    break;
285  case ISD::ConstantFP: {
286    uint64_t V = DoubleToBits(cast<ConstantFPSDNode>(N)->getValue());
287    Erased = ConstantFPs.erase(std::make_pair(V, N->getValueType(0)));
288    break;
289  }
290  case ISD::CONDCODE:
291    assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] &&
292           "Cond code doesn't exist!");
293    Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0;
294    CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0;
295    break;
296  case ISD::GlobalAddress:
297    Erased = GlobalValues.erase(cast<GlobalAddressSDNode>(N)->getGlobal());
298    break;
299  case ISD::TargetGlobalAddress:
300    Erased =TargetGlobalValues.erase(cast<GlobalAddressSDNode>(N)->getGlobal());
301    break;
302  case ISD::FrameIndex:
303    Erased = FrameIndices.erase(cast<FrameIndexSDNode>(N)->getIndex());
304    break;
305  case ISD::TargetFrameIndex:
306    Erased = TargetFrameIndices.erase(cast<FrameIndexSDNode>(N)->getIndex());
307    break;
308  case ISD::ConstantPool:
309    Erased = ConstantPoolIndices.erase(cast<ConstantPoolSDNode>(N)->get());
310    break;
311  case ISD::TargetConstantPool:
312    Erased =TargetConstantPoolIndices.erase(cast<ConstantPoolSDNode>(N)->get());
313    break;
314  case ISD::BasicBlock:
315    Erased = BBNodes.erase(cast<BasicBlockSDNode>(N)->getBasicBlock());
316    break;
317  case ISD::ExternalSymbol:
318    Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol());
319    break;
320  case ISD::VALUETYPE:
321    Erased = ValueTypeNodes[cast<VTSDNode>(N)->getVT()] != 0;
322    ValueTypeNodes[cast<VTSDNode>(N)->getVT()] = 0;
323    break;
324  case ISD::Register:
325    Erased = RegNodes.erase(std::make_pair(cast<RegisterSDNode>(N)->getReg(),
326                                           N->getValueType(0)));
327    break;
328  case ISD::SRCVALUE: {
329    SrcValueSDNode *SVN = cast<SrcValueSDNode>(N);
330    Erased =ValueNodes.erase(std::make_pair(SVN->getValue(), SVN->getOffset()));
331    break;
332  }
333  case ISD::LOAD:
334    Erased = Loads.erase(std::make_pair(N->getOperand(1),
335                                        std::make_pair(N->getOperand(0),
336                                                       N->getValueType(0))));
337    break;
338  default:
339    if (N->getNumValues() == 1) {
340      if (N->getNumOperands() == 0) {
341        Erased = NullaryOps.erase(std::make_pair(N->getOpcode(),
342                                                 N->getValueType(0)));
343      } else if (N->getNumOperands() == 1) {
344        Erased =
345          UnaryOps.erase(std::make_pair(N->getOpcode(),
346                                        std::make_pair(N->getOperand(0),
347                                                       N->getValueType(0))));
348      } else if (N->getNumOperands() == 2) {
349        Erased =
350          BinaryOps.erase(std::make_pair(N->getOpcode(),
351                                         std::make_pair(N->getOperand(0),
352                                                        N->getOperand(1))));
353      } else {
354        std::vector<SDOperand> Ops(N->op_begin(), N->op_end());
355        Erased =
356          OneResultNodes.erase(std::make_pair(N->getOpcode(),
357                                              std::make_pair(N->getValueType(0),
358                                                             Ops)));
359      }
360    } else {
361      // Remove the node from the ArbitraryNodes map.
362      std::vector<MVT::ValueType> RV(N->value_begin(), N->value_end());
363      std::vector<SDOperand>     Ops(N->op_begin(), N->op_end());
364      Erased =
365        ArbitraryNodes.erase(std::make_pair(N->getOpcode(),
366                                            std::make_pair(RV, Ops)));
367    }
368    break;
369  }
370#ifndef NDEBUG
371  // Verify that the node was actually in one of the CSE maps, unless it has a
372  // flag result (which cannot be CSE'd) or is one of the special cases that are
373  // not subject to CSE.
374  if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Flag &&
375      N->getOpcode() != ISD::CALL && N->getOpcode() != ISD::CALLSEQ_START &&
376      N->getOpcode() != ISD::CALLSEQ_END && !N->isTargetOpcode()) {
377
378    N->dump();
379    assert(0 && "Node is not in map!");
380  }
381#endif
382}
383
384/// AddNonLeafNodeToCSEMaps - Add the specified node back to the CSE maps.  It
385/// has been taken out and modified in some way.  If the specified node already
386/// exists in the CSE maps, do not modify the maps, but return the existing node
387/// instead.  If it doesn't exist, add it and return null.
388///
389SDNode *SelectionDAG::AddNonLeafNodeToCSEMaps(SDNode *N) {
390  assert(N->getNumOperands() && "This is a leaf node!");
391  if (N->getOpcode() == ISD::LOAD) {
392    SDNode *&L = Loads[std::make_pair(N->getOperand(1),
393                                      std::make_pair(N->getOperand(0),
394                                                     N->getValueType(0)))];
395    if (L) return L;
396    L = N;
397  } else if (N->getOpcode() == ISD::HANDLENODE) {
398    return 0;  // never add it.
399  } else if (N->getNumOperands() == 1) {
400    SDNode *&U = UnaryOps[std::make_pair(N->getOpcode(),
401                                         std::make_pair(N->getOperand(0),
402                                                        N->getValueType(0)))];
403    if (U) return U;
404    U = N;
405  } else if (N->getNumOperands() == 2) {
406    SDNode *&B = BinaryOps[std::make_pair(N->getOpcode(),
407                                          std::make_pair(N->getOperand(0),
408                                                         N->getOperand(1)))];
409    if (B) return B;
410    B = N;
411  } else if (N->getNumValues() == 1) {
412    std::vector<SDOperand> Ops(N->op_begin(), N->op_end());
413    SDNode *&ORN = OneResultNodes[std::make_pair(N->getOpcode(),
414                                  std::make_pair(N->getValueType(0), Ops))];
415    if (ORN) return ORN;
416    ORN = N;
417  } else {
418    // Remove the node from the ArbitraryNodes map.
419    std::vector<MVT::ValueType> RV(N->value_begin(), N->value_end());
420    std::vector<SDOperand>     Ops(N->op_begin(), N->op_end());
421    SDNode *&AN = ArbitraryNodes[std::make_pair(N->getOpcode(),
422                                                std::make_pair(RV, Ops))];
423    if (AN) return AN;
424    AN = N;
425  }
426  return 0;
427
428}
429
430
431
432SelectionDAG::~SelectionDAG() {
433  for (unsigned i = 0, e = AllNodes.size(); i != e; ++i)
434    delete AllNodes[i];
435}
436
437SDOperand SelectionDAG::getZeroExtendInReg(SDOperand Op, MVT::ValueType VT) {
438  if (Op.getValueType() == VT) return Op;
439  int64_t Imm = ~0ULL >> (64-MVT::getSizeInBits(VT));
440  return getNode(ISD::AND, Op.getValueType(), Op,
441                 getConstant(Imm, Op.getValueType()));
442}
443
444SDOperand SelectionDAG::getConstant(uint64_t Val, MVT::ValueType VT) {
445  assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
446  // Mask out any bits that are not valid for this constant.
447  if (VT != MVT::i64)
448    Val &= ((uint64_t)1 << MVT::getSizeInBits(VT)) - 1;
449
450  SDNode *&N = Constants[std::make_pair(Val, VT)];
451  if (N) return SDOperand(N, 0);
452  N = new ConstantSDNode(false, Val, VT);
453  AllNodes.push_back(N);
454  return SDOperand(N, 0);
455}
456
457SDOperand SelectionDAG::getTargetConstant(uint64_t Val, MVT::ValueType VT) {
458  assert(MVT::isInteger(VT) && "Cannot create FP integer constant!");
459  // Mask out any bits that are not valid for this constant.
460  if (VT != MVT::i64)
461    Val &= ((uint64_t)1 << MVT::getSizeInBits(VT)) - 1;
462
463  SDNode *&N = TargetConstants[std::make_pair(Val, VT)];
464  if (N) return SDOperand(N, 0);
465  N = new ConstantSDNode(true, Val, VT);
466  AllNodes.push_back(N);
467  return SDOperand(N, 0);
468}
469
470SDOperand SelectionDAG::getConstantFP(double Val, MVT::ValueType VT) {
471  assert(MVT::isFloatingPoint(VT) && "Cannot create integer FP constant!");
472  if (VT == MVT::f32)
473    Val = (float)Val;  // Mask out extra precision.
474
475  // Do the map lookup using the actual bit pattern for the floating point
476  // value, so that we don't have problems with 0.0 comparing equal to -0.0, and
477  // we don't have issues with SNANs.
478  SDNode *&N = ConstantFPs[std::make_pair(DoubleToBits(Val), VT)];
479  if (N) return SDOperand(N, 0);
480  N = new ConstantFPSDNode(Val, VT);
481  AllNodes.push_back(N);
482  return SDOperand(N, 0);
483}
484
485
486
487SDOperand SelectionDAG::getGlobalAddress(const GlobalValue *GV,
488                                         MVT::ValueType VT) {
489  SDNode *&N = GlobalValues[GV];
490  if (N) return SDOperand(N, 0);
491  N = new GlobalAddressSDNode(false, GV, VT);
492  AllNodes.push_back(N);
493  return SDOperand(N, 0);
494}
495
496SDOperand SelectionDAG::getTargetGlobalAddress(const GlobalValue *GV,
497                                               MVT::ValueType VT) {
498  SDNode *&N = TargetGlobalValues[GV];
499  if (N) return SDOperand(N, 0);
500  N = new GlobalAddressSDNode(true, GV, VT);
501  AllNodes.push_back(N);
502  return SDOperand(N, 0);
503}
504
505SDOperand SelectionDAG::getFrameIndex(int FI, MVT::ValueType VT) {
506  SDNode *&N = FrameIndices[FI];
507  if (N) return SDOperand(N, 0);
508  N = new FrameIndexSDNode(FI, VT, false);
509  AllNodes.push_back(N);
510  return SDOperand(N, 0);
511}
512
513SDOperand SelectionDAG::getTargetFrameIndex(int FI, MVT::ValueType VT) {
514  SDNode *&N = TargetFrameIndices[FI];
515  if (N) return SDOperand(N, 0);
516  N = new FrameIndexSDNode(FI, VT, true);
517  AllNodes.push_back(N);
518  return SDOperand(N, 0);
519}
520
521SDOperand SelectionDAG::getConstantPool(Constant *C, MVT::ValueType VT) {
522  SDNode *&N = ConstantPoolIndices[C];
523  if (N) return SDOperand(N, 0);
524  N = new ConstantPoolSDNode(C, VT, false);
525  AllNodes.push_back(N);
526  return SDOperand(N, 0);
527}
528
529SDOperand SelectionDAG::getTargetConstantPool(Constant *C, MVT::ValueType VT) {
530  SDNode *&N = TargetConstantPoolIndices[C];
531  if (N) return SDOperand(N, 0);
532  N = new ConstantPoolSDNode(C, VT, true);
533  AllNodes.push_back(N);
534  return SDOperand(N, 0);
535}
536
537SDOperand SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) {
538  SDNode *&N = BBNodes[MBB];
539  if (N) return SDOperand(N, 0);
540  N = new BasicBlockSDNode(MBB);
541  AllNodes.push_back(N);
542  return SDOperand(N, 0);
543}
544
545SDOperand SelectionDAG::getValueType(MVT::ValueType VT) {
546  if ((unsigned)VT >= ValueTypeNodes.size())
547    ValueTypeNodes.resize(VT+1);
548  if (ValueTypeNodes[VT] == 0) {
549    ValueTypeNodes[VT] = new VTSDNode(VT);
550    AllNodes.push_back(ValueTypeNodes[VT]);
551  }
552
553  return SDOperand(ValueTypeNodes[VT], 0);
554}
555
556SDOperand SelectionDAG::getExternalSymbol(const char *Sym, MVT::ValueType VT) {
557  SDNode *&N = ExternalSymbols[Sym];
558  if (N) return SDOperand(N, 0);
559  N = new ExternalSymbolSDNode(Sym, VT);
560  AllNodes.push_back(N);
561  return SDOperand(N, 0);
562}
563
564SDOperand SelectionDAG::getCondCode(ISD::CondCode Cond) {
565  if ((unsigned)Cond >= CondCodeNodes.size())
566    CondCodeNodes.resize(Cond+1);
567
568  if (CondCodeNodes[Cond] == 0) {
569    CondCodeNodes[Cond] = new CondCodeSDNode(Cond);
570    AllNodes.push_back(CondCodeNodes[Cond]);
571  }
572  return SDOperand(CondCodeNodes[Cond], 0);
573}
574
575SDOperand SelectionDAG::getRegister(unsigned RegNo, MVT::ValueType VT) {
576  RegisterSDNode *&Reg = RegNodes[std::make_pair(RegNo, VT)];
577  if (!Reg) {
578    Reg = new RegisterSDNode(RegNo, VT);
579    AllNodes.push_back(Reg);
580  }
581  return SDOperand(Reg, 0);
582}
583
584/// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero.  We use
585/// this predicate to simplify operations downstream.  V and Mask are known to
586/// be the same type.
587static bool MaskedValueIsZero(const SDOperand &Op, uint64_t Mask,
588                              const TargetLowering &TLI) {
589  unsigned SrcBits;
590  if (Mask == 0) return true;
591
592  // If we know the result of a setcc has the top bits zero, use this info.
593  switch (Op.getOpcode()) {
594    case ISD::Constant:
595      return (cast<ConstantSDNode>(Op)->getValue() & Mask) == 0;
596
597    case ISD::SETCC:
598      return ((Mask & 1) == 0) &&
599      TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult;
600
601    case ISD::ZEXTLOAD:
602      SrcBits = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(3))->getVT());
603      return (Mask & ((1ULL << SrcBits)-1)) == 0; // Returning only the zext bits.
604    case ISD::ZERO_EXTEND:
605      SrcBits = MVT::getSizeInBits(Op.getOperand(0).getValueType());
606      return MaskedValueIsZero(Op.getOperand(0),Mask & ((1ULL << SrcBits)-1),TLI);
607    case ISD::AssertZext:
608      SrcBits = MVT::getSizeInBits(cast<VTSDNode>(Op.getOperand(1))->getVT());
609      return (Mask & ((1ULL << SrcBits)-1)) == 0; // Returning only the zext bits.
610    case ISD::AND:
611      // (X & C1) & C2 == 0   iff   C1 & C2 == 0.
612      if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(Op.getOperand(1)))
613        return MaskedValueIsZero(Op.getOperand(0),AndRHS->getValue() & Mask, TLI);
614
615      // FALL THROUGH
616    case ISD::OR:
617    case ISD::XOR:
618      return MaskedValueIsZero(Op.getOperand(0), Mask, TLI) &&
619      MaskedValueIsZero(Op.getOperand(1), Mask, TLI);
620    case ISD::SELECT:
621      return MaskedValueIsZero(Op.getOperand(1), Mask, TLI) &&
622      MaskedValueIsZero(Op.getOperand(2), Mask, TLI);
623    case ISD::SELECT_CC:
624      return MaskedValueIsZero(Op.getOperand(2), Mask, TLI) &&
625      MaskedValueIsZero(Op.getOperand(3), Mask, TLI);
626    case ISD::SRL:
627      // (ushr X, C1) & C2 == 0   iff  X & (C2 << C1) == 0
628      if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
629        uint64_t NewVal = Mask << ShAmt->getValue();
630        SrcBits = MVT::getSizeInBits(Op.getValueType());
631        if (SrcBits != 64) NewVal &= (1ULL << SrcBits)-1;
632        return MaskedValueIsZero(Op.getOperand(0), NewVal, TLI);
633      }
634      return false;
635    case ISD::SHL:
636      // (ushl X, C1) & C2 == 0   iff  X & (C2 >> C1) == 0
637      if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
638        uint64_t NewVal = Mask >> ShAmt->getValue();
639        return MaskedValueIsZero(Op.getOperand(0), NewVal, TLI);
640      }
641      return false;
642    case ISD::CTTZ:
643    case ISD::CTLZ:
644    case ISD::CTPOP:
645      // Bit counting instructions can not set the high bits of the result
646      // register.  The max number of bits sets depends on the input.
647      return (Mask & (MVT::getSizeInBits(Op.getValueType())*2-1)) == 0;
648
649      // TODO we could handle some SRA cases here.
650    default: break;
651  }
652
653  return false;
654}
655
656
657
658SDOperand SelectionDAG::SimplifySetCC(MVT::ValueType VT, SDOperand N1,
659                                      SDOperand N2, ISD::CondCode Cond) {
660  // These setcc operations always fold.
661  switch (Cond) {
662  default: break;
663  case ISD::SETFALSE:
664  case ISD::SETFALSE2: return getConstant(0, VT);
665  case ISD::SETTRUE:
666  case ISD::SETTRUE2:  return getConstant(1, VT);
667  }
668
669  if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val)) {
670    uint64_t C2 = N2C->getValue();
671    if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val)) {
672      uint64_t C1 = N1C->getValue();
673
674      // Sign extend the operands if required
675      if (ISD::isSignedIntSetCC(Cond)) {
676        C1 = N1C->getSignExtended();
677        C2 = N2C->getSignExtended();
678      }
679
680      switch (Cond) {
681      default: assert(0 && "Unknown integer setcc!");
682      case ISD::SETEQ:  return getConstant(C1 == C2, VT);
683      case ISD::SETNE:  return getConstant(C1 != C2, VT);
684      case ISD::SETULT: return getConstant(C1 <  C2, VT);
685      case ISD::SETUGT: return getConstant(C1 >  C2, VT);
686      case ISD::SETULE: return getConstant(C1 <= C2, VT);
687      case ISD::SETUGE: return getConstant(C1 >= C2, VT);
688      case ISD::SETLT:  return getConstant((int64_t)C1 <  (int64_t)C2, VT);
689      case ISD::SETGT:  return getConstant((int64_t)C1 >  (int64_t)C2, VT);
690      case ISD::SETLE:  return getConstant((int64_t)C1 <= (int64_t)C2, VT);
691      case ISD::SETGE:  return getConstant((int64_t)C1 >= (int64_t)C2, VT);
692      }
693    } else {
694      // If the LHS is a ZERO_EXTEND, perform the comparison on the input.
695      if (N1.getOpcode() == ISD::ZERO_EXTEND) {
696        unsigned InSize = MVT::getSizeInBits(N1.getOperand(0).getValueType());
697
698        // If the comparison constant has bits in the upper part, the
699        // zero-extended value could never match.
700        if (C2 & (~0ULL << InSize)) {
701          unsigned VSize = MVT::getSizeInBits(N1.getValueType());
702          switch (Cond) {
703          case ISD::SETUGT:
704          case ISD::SETUGE:
705          case ISD::SETEQ: return getConstant(0, VT);
706          case ISD::SETULT:
707          case ISD::SETULE:
708          case ISD::SETNE: return getConstant(1, VT);
709          case ISD::SETGT:
710          case ISD::SETGE:
711            // True if the sign bit of C2 is set.
712            return getConstant((C2 & (1ULL << VSize)) != 0, VT);
713          case ISD::SETLT:
714          case ISD::SETLE:
715            // True if the sign bit of C2 isn't set.
716            return getConstant((C2 & (1ULL << VSize)) == 0, VT);
717          default:
718            break;
719          }
720        }
721
722        // Otherwise, we can perform the comparison with the low bits.
723        switch (Cond) {
724        case ISD::SETEQ:
725        case ISD::SETNE:
726        case ISD::SETUGT:
727        case ISD::SETUGE:
728        case ISD::SETULT:
729        case ISD::SETULE:
730          return getSetCC(VT, N1.getOperand(0),
731                          getConstant(C2, N1.getOperand(0).getValueType()),
732                          Cond);
733        default:
734          break;   // todo, be more careful with signed comparisons
735        }
736      } else if (N1.getOpcode() == ISD::SIGN_EXTEND_INREG &&
737                 (Cond == ISD::SETEQ || Cond == ISD::SETNE)) {
738        MVT::ValueType ExtSrcTy = cast<VTSDNode>(N1.getOperand(1))->getVT();
739        unsigned ExtSrcTyBits = MVT::getSizeInBits(ExtSrcTy);
740        MVT::ValueType ExtDstTy = N1.getValueType();
741        unsigned ExtDstTyBits = MVT::getSizeInBits(ExtDstTy);
742
743        // If the extended part has any inconsistent bits, it cannot ever
744        // compare equal.  In other words, they have to be all ones or all
745        // zeros.
746        uint64_t ExtBits =
747          (~0ULL >> (64-ExtSrcTyBits)) & (~0ULL << (ExtDstTyBits-1));
748        if ((C2 & ExtBits) != 0 && (C2 & ExtBits) != ExtBits)
749          return getConstant(Cond == ISD::SETNE, VT);
750
751        // Otherwise, make this a use of a zext.
752        return getSetCC(VT, getZeroExtendInReg(N1.getOperand(0), ExtSrcTy),
753                        getConstant(C2 & (~0ULL>>(64-ExtSrcTyBits)), ExtDstTy),
754                        Cond);
755      }
756
757      uint64_t MinVal, MaxVal;
758      unsigned OperandBitSize = MVT::getSizeInBits(N2C->getValueType(0));
759      if (ISD::isSignedIntSetCC(Cond)) {
760        MinVal = 1ULL << (OperandBitSize-1);
761        if (OperandBitSize != 1)   // Avoid X >> 64, which is undefined.
762          MaxVal = ~0ULL >> (65-OperandBitSize);
763        else
764          MaxVal = 0;
765      } else {
766        MinVal = 0;
767        MaxVal = ~0ULL >> (64-OperandBitSize);
768      }
769
770      // Canonicalize GE/LE comparisons to use GT/LT comparisons.
771      if (Cond == ISD::SETGE || Cond == ISD::SETUGE) {
772        if (C2 == MinVal) return getConstant(1, VT);   // X >= MIN --> true
773        --C2;                                          // X >= C1 --> X > (C1-1)
774        return getSetCC(VT, N1, getConstant(C2, N2.getValueType()),
775                        (Cond == ISD::SETGE) ? ISD::SETGT : ISD::SETUGT);
776      }
777
778      if (Cond == ISD::SETLE || Cond == ISD::SETULE) {
779        if (C2 == MaxVal) return getConstant(1, VT);   // X <= MAX --> true
780        ++C2;                                          // X <= C1 --> X < (C1+1)
781        return getSetCC(VT, N1, getConstant(C2, N2.getValueType()),
782                        (Cond == ISD::SETLE) ? ISD::SETLT : ISD::SETULT);
783      }
784
785      if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C2 == MinVal)
786        return getConstant(0, VT);      // X < MIN --> false
787
788      // Canonicalize setgt X, Min --> setne X, Min
789      if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C2 == MinVal)
790        return getSetCC(VT, N1, N2, ISD::SETNE);
791
792      // If we have setult X, 1, turn it into seteq X, 0
793      if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C2 == MinVal+1)
794        return getSetCC(VT, N1, getConstant(MinVal, N1.getValueType()),
795                        ISD::SETEQ);
796      // If we have setugt X, Max-1, turn it into seteq X, Max
797      else if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C2 == MaxVal-1)
798        return getSetCC(VT, N1, getConstant(MaxVal, N1.getValueType()),
799                        ISD::SETEQ);
800
801      // If we have "setcc X, C1", check to see if we can shrink the immediate
802      // by changing cc.
803
804      // SETUGT X, SINTMAX  -> SETLT X, 0
805      if (Cond == ISD::SETUGT && OperandBitSize != 1 &&
806          C2 == (~0ULL >> (65-OperandBitSize)))
807        return getSetCC(VT, N1, getConstant(0, N2.getValueType()), ISD::SETLT);
808
809      // FIXME: Implement the rest of these.
810
811
812      // Fold bit comparisons when we can.
813      if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) &&
814          VT == N1.getValueType() && N1.getOpcode() == ISD::AND)
815        if (ConstantSDNode *AndRHS =
816                    dyn_cast<ConstantSDNode>(N1.getOperand(1))) {
817          if (Cond == ISD::SETNE && C2 == 0) {// (X & 8) != 0  -->  (X & 8) >> 3
818            // Perform the xform if the AND RHS is a single bit.
819            if ((AndRHS->getValue() & (AndRHS->getValue()-1)) == 0) {
820              return getNode(ISD::SRL, VT, N1,
821                             getConstant(Log2_64(AndRHS->getValue()),
822                                                   TLI.getShiftAmountTy()));
823            }
824          } else if (Cond == ISD::SETEQ && C2 == AndRHS->getValue()) {
825            // (X & 8) == 8  -->  (X & 8) >> 3
826            // Perform the xform if C2 is a single bit.
827            if ((C2 & (C2-1)) == 0) {
828              return getNode(ISD::SRL, VT, N1,
829                             getConstant(Log2_64(C2),TLI.getShiftAmountTy()));
830            }
831          }
832        }
833    }
834  } else if (isa<ConstantSDNode>(N1.Val)) {
835      // Ensure that the constant occurs on the RHS.
836    return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
837  }
838
839  if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.Val))
840    if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.Val)) {
841      double C1 = N1C->getValue(), C2 = N2C->getValue();
842
843      switch (Cond) {
844      default: break; // FIXME: Implement the rest of these!
845      case ISD::SETEQ:  return getConstant(C1 == C2, VT);
846      case ISD::SETNE:  return getConstant(C1 != C2, VT);
847      case ISD::SETLT:  return getConstant(C1 < C2, VT);
848      case ISD::SETGT:  return getConstant(C1 > C2, VT);
849      case ISD::SETLE:  return getConstant(C1 <= C2, VT);
850      case ISD::SETGE:  return getConstant(C1 >= C2, VT);
851      }
852    } else {
853      // Ensure that the constant occurs on the RHS.
854      return getSetCC(VT, N2, N1, ISD::getSetCCSwappedOperands(Cond));
855    }
856
857  if (!CombinerEnabled) {
858  if (N1 == N2) {
859    // We can always fold X == Y for integer setcc's.
860    if (MVT::isInteger(N1.getValueType()))
861      return getConstant(ISD::isTrueWhenEqual(Cond), VT);
862    unsigned UOF = ISD::getUnorderedFlavor(Cond);
863    if (UOF == 2)   // FP operators that are undefined on NaNs.
864      return getConstant(ISD::isTrueWhenEqual(Cond), VT);
865    if (UOF == unsigned(ISD::isTrueWhenEqual(Cond)))
866      return getConstant(UOF, VT);
867    // Otherwise, we can't fold it.  However, we can simplify it to SETUO/SETO
868    // if it is not already.
869    ISD::CondCode NewCond = UOF == 0 ? ISD::SETUO : ISD::SETO;
870    if (NewCond != Cond)
871      return getSetCC(VT, N1, N2, NewCond);
872  }
873
874  if (Cond == ISD::SETEQ || Cond == ISD::SETNE) {
875    if (N1.getOpcode() == ISD::ADD || N1.getOpcode() == ISD::SUB ||
876        N1.getOpcode() == ISD::XOR) {
877      // Simplify (X+Y) == (X+Z) -->  Y == Z
878      if (N1.getOpcode() == N2.getOpcode()) {
879        if (N1.getOperand(0) == N2.getOperand(0))
880          return getSetCC(VT, N1.getOperand(1), N2.getOperand(1), Cond);
881        if (N1.getOperand(1) == N2.getOperand(1))
882          return getSetCC(VT, N1.getOperand(0), N2.getOperand(0), Cond);
883        if (isCommutativeBinOp(N1.getOpcode())) {
884          // If X op Y == Y op X, try other combinations.
885          if (N1.getOperand(0) == N2.getOperand(1))
886            return getSetCC(VT, N1.getOperand(1), N2.getOperand(0), Cond);
887          if (N1.getOperand(1) == N2.getOperand(0))
888            return getSetCC(VT, N1.getOperand(1), N2.getOperand(1), Cond);
889        }
890      }
891
892      // FIXME: move this stuff to the DAG Combiner when it exists!
893
894      // Turn (X^C1) == C2 into X == C1^C2 iff X&~C1 = 0.  Common for condcodes.
895      if (N1.getOpcode() == ISD::XOR)
896        if (ConstantSDNode *XORC = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
897          if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(N2)) {
898            // If we know that all of the inverted bits are zero, don't bother
899            // performing the inversion.
900            if (MaskedValueIsZero(N1.getOperand(0), ~XORC->getValue(), TLI))
901              return getSetCC(VT, N1.getOperand(0),
902                              getConstant(XORC->getValue()^RHSC->getValue(),
903                                          N1.getValueType()), Cond);
904          }
905
906      // Simplify (X+Z) == X -->  Z == 0
907      if (N1.getOperand(0) == N2)
908        return getSetCC(VT, N1.getOperand(1),
909                        getConstant(0, N1.getValueType()), Cond);
910      if (N1.getOperand(1) == N2) {
911        if (isCommutativeBinOp(N1.getOpcode()))
912          return getSetCC(VT, N1.getOperand(0),
913                          getConstant(0, N1.getValueType()), Cond);
914        else {
915          assert(N1.getOpcode() == ISD::SUB && "Unexpected operation!");
916          // (Z-X) == X  --> Z == X<<1
917          return getSetCC(VT, N1.getOperand(0),
918                          getNode(ISD::SHL, N2.getValueType(),
919                                  N2, getConstant(1, TLI.getShiftAmountTy())),
920                          Cond);
921        }
922      }
923    }
924
925    if (N2.getOpcode() == ISD::ADD || N2.getOpcode() == ISD::SUB ||
926        N2.getOpcode() == ISD::XOR) {
927      // Simplify  X == (X+Z) -->  Z == 0
928      if (N2.getOperand(0) == N1) {
929        return getSetCC(VT, N2.getOperand(1),
930                        getConstant(0, N2.getValueType()), Cond);
931      } else if (N2.getOperand(1) == N1) {
932        if (isCommutativeBinOp(N2.getOpcode())) {
933          return getSetCC(VT, N2.getOperand(0),
934                          getConstant(0, N2.getValueType()), Cond);
935        } else {
936          assert(N2.getOpcode() == ISD::SUB && "Unexpected operation!");
937          // X == (Z-X)  --> X<<1 == Z
938          return getSetCC(VT, getNode(ISD::SHL, N2.getValueType(), N1,
939                                      getConstant(1, TLI.getShiftAmountTy())),
940                          N2.getOperand(0), Cond);
941        }
942      }
943    }
944  }
945
946  // Fold away ALL boolean setcc's.
947  if (N1.getValueType() == MVT::i1) {
948    switch (Cond) {
949    default: assert(0 && "Unknown integer setcc!");
950    case ISD::SETEQ:  // X == Y  -> (X^Y)^1
951      N1 = getNode(ISD::XOR, MVT::i1,
952                   getNode(ISD::XOR, MVT::i1, N1, N2),
953                   getConstant(1, MVT::i1));
954      break;
955    case ISD::SETNE:  // X != Y   -->  (X^Y)
956      N1 = getNode(ISD::XOR, MVT::i1, N1, N2);
957      break;
958    case ISD::SETGT:  // X >s Y   -->  X == 0 & Y == 1  -->  X^1 & Y
959    case ISD::SETULT: // X <u Y   -->  X == 0 & Y == 1  -->  X^1 & Y
960      N1 = getNode(ISD::AND, MVT::i1, N2,
961                   getNode(ISD::XOR, MVT::i1, N1, getConstant(1, MVT::i1)));
962      break;
963    case ISD::SETLT:  // X <s Y   --> X == 1 & Y == 0  -->  Y^1 & X
964    case ISD::SETUGT: // X >u Y   --> X == 1 & Y == 0  -->  Y^1 & X
965      N1 = getNode(ISD::AND, MVT::i1, N1,
966                   getNode(ISD::XOR, MVT::i1, N2, getConstant(1, MVT::i1)));
967      break;
968    case ISD::SETULE: // X <=u Y  --> X == 0 | Y == 1  -->  X^1 | Y
969    case ISD::SETGE:  // X >=s Y  --> X == 0 | Y == 1  -->  X^1 | Y
970      N1 = getNode(ISD::OR, MVT::i1, N2,
971                   getNode(ISD::XOR, MVT::i1, N1, getConstant(1, MVT::i1)));
972      break;
973    case ISD::SETUGE: // X >=u Y  --> X == 1 | Y == 0  -->  Y^1 | X
974    case ISD::SETLE:  // X <=s Y  --> X == 1 | Y == 0  -->  Y^1 | X
975      N1 = getNode(ISD::OR, MVT::i1, N1,
976                   getNode(ISD::XOR, MVT::i1, N2, getConstant(1, MVT::i1)));
977      break;
978    }
979    if (VT != MVT::i1)
980      N1 = getNode(ISD::ZERO_EXTEND, VT, N1);
981    return N1;
982  }
983  }
984  // Could not fold it.
985  return SDOperand();
986}
987
988SDOperand SelectionDAG::SimplifySelectCC(SDOperand N1, SDOperand N2,
989                                         SDOperand N3, SDOperand N4,
990                                         ISD::CondCode CC) {
991  MVT::ValueType VT = N3.getValueType();
992  ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
993  ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
994  ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.Val);
995  ConstantSDNode *N4C = dyn_cast<ConstantSDNode>(N4.Val);
996
997  // Check to see if we can simplify the select into an fabs node
998  if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N2)) {
999    // Allow either -0.0 or 0.0
1000    if (CFP->getValue() == 0.0) {
1001      // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
1002      if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
1003          N1 == N3 && N4.getOpcode() == ISD::FNEG &&
1004          N1 == N4.getOperand(0))
1005        return getNode(ISD::FABS, VT, N1);
1006
1007      // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
1008      if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
1009          N1 == N4 && N3.getOpcode() == ISD::FNEG &&
1010          N3.getOperand(0) == N4)
1011        return getNode(ISD::FABS, VT, N4);
1012    }
1013  }
1014
1015  // check to see if we're select_cc'ing a select_cc.
1016  // this allows us to turn:
1017  // select_cc set[eq,ne] (select_cc cc, lhs, rhs, 1, 0), 0, true, false ->
1018  // select_cc cc, lhs, rhs, true, false
1019  if ((N1C && N1C->isNullValue() && N2.getOpcode() == ISD::SELECT_CC) ||
1020      (N2C && N2C->isNullValue() && N1.getOpcode() == ISD::SELECT_CC) &&
1021      (CC == ISD::SETEQ || CC == ISD::SETNE)) {
1022    SDOperand SCC = N1C ? N2 : N1;
1023    ConstantSDNode *SCCT = dyn_cast<ConstantSDNode>(SCC.getOperand(2));
1024    ConstantSDNode *SCCF = dyn_cast<ConstantSDNode>(SCC.getOperand(3));
1025    if (SCCT && SCCF && SCCF->isNullValue() && SCCT->getValue() == 1ULL) {
1026      if (CC == ISD::SETEQ) std::swap(N3, N4);
1027      return getNode(ISD::SELECT_CC, N3.getValueType(), SCC.getOperand(0),
1028                     SCC.getOperand(1), N3, N4, SCC.getOperand(4));
1029    }
1030  }
1031
1032  // Check to see if we can perform the "gzip trick", transforming
1033  // select_cc setlt X, 0, A, 0 -> and (sra X, size(X)-1), A
1034  if (N2C && N2C->isNullValue() && N4C && N4C->isNullValue() &&
1035      MVT::isInteger(N1.getValueType()) &&
1036      MVT::isInteger(N3.getValueType()) && CC == ISD::SETLT) {
1037    MVT::ValueType XType = N1.getValueType();
1038    MVT::ValueType AType = N3.getValueType();
1039    if (XType >= AType) {
1040      // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
1041      // single-bit constant.  FIXME: remove once the dag combiner
1042      // exists.
1043      if (N3C && ((N3C->getValue() & (N3C->getValue()-1)) == 0)) {
1044        unsigned ShCtV = Log2_64(N3C->getValue());
1045        ShCtV = MVT::getSizeInBits(XType)-ShCtV-1;
1046        SDOperand ShCt = getConstant(ShCtV, TLI.getShiftAmountTy());
1047        SDOperand Shift = getNode(ISD::SRL, XType, N1, ShCt);
1048        if (XType > AType)
1049          Shift = getNode(ISD::TRUNCATE, AType, Shift);
1050        return getNode(ISD::AND, AType, Shift, N3);
1051      }
1052      SDOperand Shift = getNode(ISD::SRA, XType, N1,
1053                                getConstant(MVT::getSizeInBits(XType)-1,
1054                                            TLI.getShiftAmountTy()));
1055      if (XType > AType)
1056        Shift = getNode(ISD::TRUNCATE, AType, Shift);
1057      return getNode(ISD::AND, AType, Shift, N3);
1058    }
1059  }
1060
1061  // Check to see if this is the equivalent of setcc
1062  if (N4C && N4C->isNullValue() && N3C && (N3C->getValue() == 1ULL)) {
1063    MVT::ValueType XType = N1.getValueType();
1064    if (TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultTy())) {
1065      SDOperand Res = getSetCC(TLI.getSetCCResultTy(), N1, N2, CC);
1066      if (Res.getValueType() != VT)
1067        Res = getNode(ISD::ZERO_EXTEND, VT, Res);
1068      return Res;
1069    }
1070
1071    // seteq X, 0 -> srl (ctlz X, log2(size(X)))
1072    if (N2C && N2C->isNullValue() && CC == ISD::SETEQ &&
1073        TLI.isOperationLegal(ISD::CTLZ, XType)) {
1074      SDOperand Ctlz = getNode(ISD::CTLZ, XType, N1);
1075      return getNode(ISD::SRL, XType, Ctlz,
1076                     getConstant(Log2_32(MVT::getSizeInBits(XType)),
1077                                 TLI.getShiftAmountTy()));
1078    }
1079    // setgt X, 0 -> srl (and (-X, ~X), size(X)-1)
1080    if (N2C && N2C->isNullValue() && CC == ISD::SETGT) {
1081      SDOperand NegN1 = getNode(ISD::SUB, XType, getConstant(0, XType), N1);
1082      SDOperand NotN1 = getNode(ISD::XOR, XType, N1, getConstant(~0ULL, XType));
1083      return getNode(ISD::SRL, XType, getNode(ISD::AND, XType, NegN1, NotN1),
1084                     getConstant(MVT::getSizeInBits(XType)-1,
1085                                 TLI.getShiftAmountTy()));
1086    }
1087    // setgt X, -1 -> xor (srl (X, size(X)-1), 1)
1088    if (N2C && N2C->isAllOnesValue() && CC == ISD::SETGT) {
1089      SDOperand Sign = getNode(ISD::SRL, XType, N1,
1090                               getConstant(MVT::getSizeInBits(XType)-1,
1091                                           TLI.getShiftAmountTy()));
1092      return getNode(ISD::XOR, XType, Sign, getConstant(1, XType));
1093    }
1094  }
1095
1096  // Check to see if this is an integer abs. select_cc setl[te] X, 0, -X, X ->
1097  // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
1098  if (N2C && N2C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE) &&
1099      N1 == N4 && N3.getOpcode() == ISD::SUB && N1 == N3.getOperand(1)) {
1100    if (ConstantSDNode *SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0))) {
1101      MVT::ValueType XType = N1.getValueType();
1102      if (SubC->isNullValue() && MVT::isInteger(XType)) {
1103        SDOperand Shift = getNode(ISD::SRA, XType, N1,
1104                                  getConstant(MVT::getSizeInBits(XType)-1,
1105                                              TLI.getShiftAmountTy()));
1106        return getNode(ISD::XOR, XType, getNode(ISD::ADD, XType, N1, Shift),
1107                       Shift);
1108      }
1109    }
1110  }
1111
1112  // Could not fold it.
1113  return SDOperand();
1114}
1115
1116/// getNode - Gets or creates the specified node.
1117///
1118SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT) {
1119  SDNode *&N = NullaryOps[std::make_pair(Opcode, VT)];
1120  if (!N) {
1121    N = new SDNode(Opcode, VT);
1122    AllNodes.push_back(N);
1123  }
1124  return SDOperand(N, 0);
1125}
1126
1127SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1128                                SDOperand Operand) {
1129  if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.Val)) {
1130    uint64_t Val = C->getValue();
1131    switch (Opcode) {
1132    default: break;
1133    case ISD::SIGN_EXTEND: return getConstant(C->getSignExtended(), VT);
1134    case ISD::ANY_EXTEND:
1135    case ISD::ZERO_EXTEND: return getConstant(Val, VT);
1136    case ISD::TRUNCATE:    return getConstant(Val, VT);
1137    case ISD::SINT_TO_FP:  return getConstantFP(C->getSignExtended(), VT);
1138    case ISD::UINT_TO_FP:  return getConstantFP(C->getValue(), VT);
1139    }
1140  }
1141
1142  if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.Val))
1143    switch (Opcode) {
1144    case ISD::FNEG:
1145      return getConstantFP(-C->getValue(), VT);
1146    case ISD::FP_ROUND:
1147    case ISD::FP_EXTEND:
1148      return getConstantFP(C->getValue(), VT);
1149    case ISD::FP_TO_SINT:
1150      return getConstant((int64_t)C->getValue(), VT);
1151    case ISD::FP_TO_UINT:
1152      return getConstant((uint64_t)C->getValue(), VT);
1153    }
1154
1155  unsigned OpOpcode = Operand.Val->getOpcode();
1156  switch (Opcode) {
1157  case ISD::TokenFactor:
1158    return Operand;         // Factor of one node?  No factor.
1159  case ISD::SIGN_EXTEND:
1160    if (Operand.getValueType() == VT) return Operand;   // noop extension
1161    if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND)
1162      return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1163    break;
1164  case ISD::ZERO_EXTEND:
1165    if (Operand.getValueType() == VT) return Operand;   // noop extension
1166    if (OpOpcode == ISD::ZERO_EXTEND)   // (zext (zext x)) -> (zext x)
1167      return getNode(ISD::ZERO_EXTEND, VT, Operand.Val->getOperand(0));
1168    break;
1169  case ISD::ANY_EXTEND:
1170    if (Operand.getValueType() == VT) return Operand;   // noop extension
1171    if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND)
1172      // (ext (zext x)) -> (zext x)  and  (ext (sext x)) -> (sext x)
1173      return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1174    break;
1175  case ISD::TRUNCATE:
1176    if (Operand.getValueType() == VT) return Operand;   // noop truncate
1177    if (OpOpcode == ISD::TRUNCATE)
1178      return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1179    else if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND ||
1180             OpOpcode == ISD::ANY_EXTEND) {
1181      // If the source is smaller than the dest, we still need an extend.
1182      if (Operand.Val->getOperand(0).getValueType() < VT)
1183        return getNode(OpOpcode, VT, Operand.Val->getOperand(0));
1184      else if (Operand.Val->getOperand(0).getValueType() > VT)
1185        return getNode(ISD::TRUNCATE, VT, Operand.Val->getOperand(0));
1186      else
1187        return Operand.Val->getOperand(0);
1188    }
1189    break;
1190  case ISD::FNEG:
1191    if (OpOpcode == ISD::FSUB)   // -(X-Y) -> (Y-X)
1192      return getNode(ISD::FSUB, VT, Operand.Val->getOperand(1),
1193                     Operand.Val->getOperand(0));
1194    if (OpOpcode == ISD::FNEG)  // --X -> X
1195      return Operand.Val->getOperand(0);
1196    break;
1197  case ISD::FABS:
1198    if (OpOpcode == ISD::FNEG)  // abs(-X) -> abs(X)
1199      return getNode(ISD::FABS, VT, Operand.Val->getOperand(0));
1200    break;
1201  }
1202
1203  SDNode *N;
1204  if (VT != MVT::Flag) { // Don't CSE flag producing nodes
1205    SDNode *&E = UnaryOps[std::make_pair(Opcode, std::make_pair(Operand, VT))];
1206    if (E) return SDOperand(E, 0);
1207    E = N = new SDNode(Opcode, Operand);
1208  } else {
1209    N = new SDNode(Opcode, Operand);
1210  }
1211  N->setValueTypes(VT);
1212  AllNodes.push_back(N);
1213  return SDOperand(N, 0);
1214}
1215
1216
1217
1218SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1219                                SDOperand N1, SDOperand N2) {
1220#ifndef NDEBUG
1221  switch (Opcode) {
1222  case ISD::TokenFactor:
1223    assert(VT == MVT::Other && N1.getValueType() == MVT::Other &&
1224           N2.getValueType() == MVT::Other && "Invalid token factor!");
1225    break;
1226  case ISD::AND:
1227  case ISD::OR:
1228  case ISD::XOR:
1229  case ISD::UDIV:
1230  case ISD::UREM:
1231  case ISD::MULHU:
1232  case ISD::MULHS:
1233    assert(MVT::isInteger(VT) && "This operator does not apply to FP types!");
1234    // fall through
1235  case ISD::ADD:
1236  case ISD::SUB:
1237  case ISD::MUL:
1238  case ISD::SDIV:
1239  case ISD::SREM:
1240    assert(MVT::isInteger(N1.getValueType()) && "Should use F* for FP ops");
1241    // fall through.
1242  case ISD::FADD:
1243  case ISD::FSUB:
1244  case ISD::FMUL:
1245  case ISD::FDIV:
1246  case ISD::FREM:
1247    assert(N1.getValueType() == N2.getValueType() &&
1248           N1.getValueType() == VT && "Binary operator types must match!");
1249    break;
1250
1251  case ISD::SHL:
1252  case ISD::SRA:
1253  case ISD::SRL:
1254    assert(VT == N1.getValueType() &&
1255           "Shift operators return type must be the same as their first arg");
1256    assert(MVT::isInteger(VT) && MVT::isInteger(N2.getValueType()) &&
1257           VT != MVT::i1 && "Shifts only work on integers");
1258    break;
1259  case ISD::FP_ROUND_INREG: {
1260    MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1261    assert(VT == N1.getValueType() && "Not an inreg round!");
1262    assert(MVT::isFloatingPoint(VT) && MVT::isFloatingPoint(EVT) &&
1263           "Cannot FP_ROUND_INREG integer types");
1264    assert(EVT <= VT && "Not rounding down!");
1265    break;
1266  }
1267  case ISD::AssertSext:
1268  case ISD::AssertZext:
1269  case ISD::SIGN_EXTEND_INREG: {
1270    MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1271    assert(VT == N1.getValueType() && "Not an inreg extend!");
1272    assert(MVT::isInteger(VT) && MVT::isInteger(EVT) &&
1273           "Cannot *_EXTEND_INREG FP types");
1274    assert(EVT <= VT && "Not extending!");
1275  }
1276
1277  default: break;
1278  }
1279#endif
1280
1281  ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1282  ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
1283  if (N1C) {
1284    if (N2C) {
1285      uint64_t C1 = N1C->getValue(), C2 = N2C->getValue();
1286      switch (Opcode) {
1287      case ISD::ADD: return getConstant(C1 + C2, VT);
1288      case ISD::SUB: return getConstant(C1 - C2, VT);
1289      case ISD::MUL: return getConstant(C1 * C2, VT);
1290      case ISD::UDIV:
1291        if (C2) return getConstant(C1 / C2, VT);
1292        break;
1293      case ISD::UREM :
1294        if (C2) return getConstant(C1 % C2, VT);
1295        break;
1296      case ISD::SDIV :
1297        if (C2) return getConstant(N1C->getSignExtended() /
1298                                   N2C->getSignExtended(), VT);
1299        break;
1300      case ISD::SREM :
1301        if (C2) return getConstant(N1C->getSignExtended() %
1302                                   N2C->getSignExtended(), VT);
1303        break;
1304      case ISD::AND  : return getConstant(C1 & C2, VT);
1305      case ISD::OR   : return getConstant(C1 | C2, VT);
1306      case ISD::XOR  : return getConstant(C1 ^ C2, VT);
1307      case ISD::SHL  : return getConstant(C1 << C2, VT);
1308      case ISD::SRL  : return getConstant(C1 >> C2, VT);
1309      case ISD::SRA  : return getConstant(N1C->getSignExtended() >>(int)C2, VT);
1310      default: break;
1311      }
1312    } else {      // Cannonicalize constant to RHS if commutative
1313      if (isCommutativeBinOp(Opcode)) {
1314        std::swap(N1C, N2C);
1315        std::swap(N1, N2);
1316      }
1317    }
1318
1319    if (!CombinerEnabled) {
1320    switch (Opcode) {
1321    default: break;
1322    case ISD::SHL:    // shl  0, X -> 0
1323      if (N1C->isNullValue()) return N1;
1324      break;
1325    case ISD::SRL:    // srl  0, X -> 0
1326      if (N1C->isNullValue()) return N1;
1327      break;
1328    case ISD::SRA:    // sra -1, X -> -1
1329      if (N1C->isAllOnesValue()) return N1;
1330      break;
1331    case ISD::SIGN_EXTEND_INREG:  // SIGN_EXTEND_INREG N1C, EVT
1332      // Extending a constant?  Just return the extended constant.
1333      SDOperand Tmp = getNode(ISD::TRUNCATE, cast<VTSDNode>(N2)->getVT(), N1);
1334      return getNode(ISD::SIGN_EXTEND, VT, Tmp);
1335    }
1336    }
1337  }
1338
1339  if (!CombinerEnabled) {
1340  if (N2C) {
1341    uint64_t C2 = N2C->getValue();
1342
1343    switch (Opcode) {
1344    case ISD::ADD:
1345      if (!C2) return N1;         // add X, 0 -> X
1346      break;
1347    case ISD::SUB:
1348      if (!C2) return N1;         // sub X, 0 -> X
1349      return getNode(ISD::ADD, VT, N1, getConstant(-C2, VT));
1350    case ISD::MUL:
1351      if (!C2) return N2;         // mul X, 0 -> 0
1352      if (N2C->isAllOnesValue()) // mul X, -1 -> 0-X
1353        return getNode(ISD::SUB, VT, getConstant(0, VT), N1);
1354
1355      // FIXME: Move this to the DAG combiner when it exists.
1356      if ((C2 & C2-1) == 0) {
1357        SDOperand ShAmt = getConstant(Log2_64(C2), TLI.getShiftAmountTy());
1358        return getNode(ISD::SHL, VT, N1, ShAmt);
1359      }
1360      break;
1361
1362    case ISD::MULHU:
1363    case ISD::MULHS:
1364      if (!C2) return N2;         // mul X, 0 -> 0
1365
1366      if (C2 == 1)                // 0X*01 -> 0X  hi(0X) == 0
1367        return getConstant(0, VT);
1368
1369      // Many others could be handled here, including -1, powers of 2, etc.
1370      break;
1371
1372    case ISD::UDIV:
1373      // FIXME: Move this to the DAG combiner when it exists.
1374      if ((C2 & C2-1) == 0 && C2) {
1375        SDOperand ShAmt = getConstant(Log2_64(C2), TLI.getShiftAmountTy());
1376        return getNode(ISD::SRL, VT, N1, ShAmt);
1377      }
1378      break;
1379
1380    case ISD::SHL:
1381    case ISD::SRL:
1382    case ISD::SRA:
1383      // If the shift amount is bigger than the size of the data, then all the
1384      // bits are shifted out.  Simplify to undef.
1385      if (C2 >= MVT::getSizeInBits(N1.getValueType())) {
1386        return getNode(ISD::UNDEF, N1.getValueType());
1387      }
1388      if (C2 == 0) return N1;
1389
1390      if (Opcode == ISD::SRA) {
1391        // If the sign bit is known to be zero, switch this to a SRL.
1392        if (MaskedValueIsZero(N1,
1393                              1ULL << (MVT::getSizeInBits(N1.getValueType())-1),
1394                              TLI))
1395          return getNode(ISD::SRL, N1.getValueType(), N1, N2);
1396      } else {
1397        // If the part left over is known to be zero, the whole thing is zero.
1398        uint64_t TypeMask = ~0ULL >> (64-MVT::getSizeInBits(N1.getValueType()));
1399        if (Opcode == ISD::SRL) {
1400          if (MaskedValueIsZero(N1, TypeMask << C2, TLI))
1401            return getConstant(0, N1.getValueType());
1402        } else if (Opcode == ISD::SHL) {
1403          if (MaskedValueIsZero(N1, TypeMask >> C2, TLI))
1404            return getConstant(0, N1.getValueType());
1405        }
1406      }
1407
1408      if (Opcode == ISD::SHL && N1.getNumOperands() == 2)
1409        if (ConstantSDNode *OpSA = dyn_cast<ConstantSDNode>(N1.getOperand(1))) {
1410          unsigned OpSAC = OpSA->getValue();
1411          if (N1.getOpcode() == ISD::SHL) {
1412            if (C2+OpSAC >= MVT::getSizeInBits(N1.getValueType()))
1413              return getConstant(0, N1.getValueType());
1414            return getNode(ISD::SHL, N1.getValueType(), N1.getOperand(0),
1415                           getConstant(C2+OpSAC, N2.getValueType()));
1416          } else if (N1.getOpcode() == ISD::SRL) {
1417            // (X >> C1) << C2:  if C2 > C1, ((X & ~0<<C1) << C2-C1)
1418            SDOperand Mask = getNode(ISD::AND, VT, N1.getOperand(0),
1419                                     getConstant(~0ULL << OpSAC, VT));
1420            if (C2 > OpSAC) {
1421              return getNode(ISD::SHL, VT, Mask,
1422                             getConstant(C2-OpSAC, N2.getValueType()));
1423            } else {
1424              // (X >> C1) << C2:  if C2 <= C1, ((X & ~0<<C1) >> C1-C2)
1425              return getNode(ISD::SRL, VT, Mask,
1426                             getConstant(OpSAC-C2, N2.getValueType()));
1427            }
1428          } else if (N1.getOpcode() == ISD::SRA) {
1429            // if C1 == C2, just mask out low bits.
1430            if (C2 == OpSAC)
1431              return getNode(ISD::AND, VT, N1.getOperand(0),
1432                             getConstant(~0ULL << C2, VT));
1433          }
1434        }
1435      break;
1436
1437    case ISD::AND:
1438      if (!C2) return N2;         // X and 0 -> 0
1439      if (N2C->isAllOnesValue())
1440        return N1;                // X and -1 -> X
1441
1442      if (MaskedValueIsZero(N1, C2, TLI))  // X and 0 -> 0
1443        return getConstant(0, VT);
1444
1445      {
1446        uint64_t NotC2 = ~C2;
1447        if (VT != MVT::i64)
1448          NotC2 &= (1ULL << MVT::getSizeInBits(VT))-1;
1449
1450        if (MaskedValueIsZero(N1, NotC2, TLI))
1451          return N1;                // if (X & ~C2) -> 0, the and is redundant
1452      }
1453
1454      // FIXME: Should add a corresponding version of this for
1455      // ZERO_EXTEND/SIGN_EXTEND by converting them to an ANY_EXTEND node which
1456      // we don't have yet.
1457      // FIXME: NOW WE DO, add this.
1458
1459      // and (sign_extend_inreg x:16:32), 1 -> and x, 1
1460      if (N1.getOpcode() == ISD::SIGN_EXTEND_INREG) {
1461        // If we are masking out the part of our input that was extended, just
1462        // mask the input to the extension directly.
1463        unsigned ExtendBits =
1464          MVT::getSizeInBits(cast<VTSDNode>(N1.getOperand(1))->getVT());
1465        if ((C2 & (~0ULL << ExtendBits)) == 0)
1466          return getNode(ISD::AND, VT, N1.getOperand(0), N2);
1467      } else if (N1.getOpcode() == ISD::OR) {
1468        if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
1469          if ((ORI->getValue() & C2) == C2) {
1470            // If the 'or' is setting all of the bits that we are masking for,
1471            // we know the result of the AND will be the AND mask itself.
1472            return N2;
1473          }
1474      }
1475      break;
1476    case ISD::OR:
1477      if (!C2)return N1;          // X or 0 -> X
1478      if (N2C->isAllOnesValue())
1479        return N2;                // X or -1 -> -1
1480      break;
1481    case ISD::XOR:
1482      if (!C2) return N1;        // X xor 0 -> X
1483      if (N2C->getValue() == 1 && N1.Val->getOpcode() == ISD::SETCC) {
1484          SDNode *SetCC = N1.Val;
1485          // !(X op Y) -> (X !op Y)
1486          bool isInteger = MVT::isInteger(SetCC->getOperand(0).getValueType());
1487          ISD::CondCode CC = cast<CondCodeSDNode>(SetCC->getOperand(2))->get();
1488          return getSetCC(SetCC->getValueType(0),
1489                          SetCC->getOperand(0), SetCC->getOperand(1),
1490                          ISD::getSetCCInverse(CC, isInteger));
1491      } else if (N2C->isAllOnesValue()) {
1492        if (N1.getOpcode() == ISD::AND || N1.getOpcode() == ISD::OR) {
1493          SDNode *Op = N1.Val;
1494          // !(X or Y) -> (!X and !Y) iff X or Y are freely invertible
1495          // !(X and Y) -> (!X or !Y) iff X or Y are freely invertible
1496          SDOperand LHS = Op->getOperand(0), RHS = Op->getOperand(1);
1497          if (isInvertibleForFree(RHS) || isInvertibleForFree(LHS)) {
1498            LHS = getNode(ISD::XOR, VT, LHS, N2);  // RHS = ~LHS
1499            RHS = getNode(ISD::XOR, VT, RHS, N2);  // RHS = ~RHS
1500            if (Op->getOpcode() == ISD::AND)
1501              return getNode(ISD::OR, VT, LHS, RHS);
1502            return getNode(ISD::AND, VT, LHS, RHS);
1503          }
1504        }
1505        // X xor -1 -> not(x)  ?
1506      }
1507      break;
1508    }
1509
1510    // Reassociate ((X op C1) op C2) if possible.
1511    if (N1.getOpcode() == Opcode && isAssociativeBinOp(Opcode))
1512      if (ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N1.Val->getOperand(1)))
1513        return getNode(Opcode, VT, N1.Val->getOperand(0),
1514                       getNode(Opcode, VT, N2, N1.Val->getOperand(1)));
1515  }
1516  }
1517
1518  ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.Val);
1519  ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.Val);
1520  if (N1CFP) {
1521    if (N2CFP) {
1522      double C1 = N1CFP->getValue(), C2 = N2CFP->getValue();
1523      switch (Opcode) {
1524      case ISD::FADD: return getConstantFP(C1 + C2, VT);
1525      case ISD::FSUB: return getConstantFP(C1 - C2, VT);
1526      case ISD::FMUL: return getConstantFP(C1 * C2, VT);
1527      case ISD::FDIV:
1528        if (C2) return getConstantFP(C1 / C2, VT);
1529        break;
1530      case ISD::FREM :
1531        if (C2) return getConstantFP(fmod(C1, C2), VT);
1532        break;
1533      default: break;
1534      }
1535    } else {      // Cannonicalize constant to RHS if commutative
1536      if (isCommutativeBinOp(Opcode)) {
1537        std::swap(N1CFP, N2CFP);
1538        std::swap(N1, N2);
1539      }
1540    }
1541
1542    if (!CombinerEnabled) {
1543    if (Opcode == ISD::FP_ROUND_INREG)
1544      return getNode(ISD::FP_EXTEND, VT,
1545                     getNode(ISD::FP_ROUND, cast<VTSDNode>(N2)->getVT(), N1));
1546    }
1547  }
1548
1549  // Finally, fold operations that do not require constants.
1550  switch (Opcode) {
1551  case ISD::TokenFactor:
1552    if (!CombinerEnabled) {
1553    if (N1.getOpcode() == ISD::EntryToken)
1554      return N2;
1555    if (N2.getOpcode() == ISD::EntryToken)
1556      return N1;
1557    }
1558    break;
1559
1560  case ISD::AND:
1561  case ISD::OR:
1562    if (!CombinerEnabled) {
1563    if (N1.Val->getOpcode() == ISD::SETCC && N2.Val->getOpcode() == ISD::SETCC){
1564      SDNode *LHS = N1.Val, *RHS = N2.Val;
1565      SDOperand LL = LHS->getOperand(0), RL = RHS->getOperand(0);
1566      SDOperand LR = LHS->getOperand(1), RR = RHS->getOperand(1);
1567      ISD::CondCode Op1 = cast<CondCodeSDNode>(LHS->getOperand(2))->get();
1568      ISD::CondCode Op2 = cast<CondCodeSDNode>(RHS->getOperand(2))->get();
1569
1570      if (LR == RR && isa<ConstantSDNode>(LR) &&
1571          Op2 == Op1 && MVT::isInteger(LL.getValueType())) {
1572        // (X != 0) | (Y != 0) -> (X|Y != 0)
1573        // (X == 0) & (Y == 0) -> (X|Y == 0)
1574        // (X <  0) | (Y <  0) -> (X|Y < 0)
1575        if (cast<ConstantSDNode>(LR)->getValue() == 0 &&
1576            ((Op2 == ISD::SETEQ && Opcode == ISD::AND) ||
1577             (Op2 == ISD::SETNE && Opcode == ISD::OR) ||
1578             (Op2 == ISD::SETLT && Opcode == ISD::OR)))
1579          return getSetCC(VT, getNode(ISD::OR, LR.getValueType(), LL, RL), LR,
1580                          Op2);
1581
1582        if (cast<ConstantSDNode>(LR)->isAllOnesValue()) {
1583          // (X == -1) & (Y == -1) -> (X&Y == -1)
1584          // (X != -1) | (Y != -1) -> (X&Y != -1)
1585          // (X >  -1) | (Y >  -1) -> (X&Y >  -1)
1586          if ((Opcode == ISD::AND && Op2 == ISD::SETEQ) ||
1587              (Opcode == ISD::OR  && Op2 == ISD::SETNE) ||
1588              (Opcode == ISD::OR  && Op2 == ISD::SETGT))
1589            return getSetCC(VT, getNode(ISD::AND, LR.getValueType(), LL, RL),
1590                            LR, Op2);
1591          // (X >  -1) & (Y >  -1) -> (X|Y > -1)
1592          if (Opcode == ISD::AND && Op2 == ISD::SETGT)
1593            return getSetCC(VT, getNode(ISD::OR, LR.getValueType(), LL, RL),
1594                            LR, Op2);
1595        }
1596      }
1597
1598      // (X op1 Y) | (Y op2 X) -> (X op1 Y) | (X swapop2 Y)
1599      if (LL == RR && LR == RL) {
1600        Op2 = ISD::getSetCCSwappedOperands(Op2);
1601        goto MatchedBackwards;
1602      }
1603
1604      if (LL == RL && LR == RR) {
1605      MatchedBackwards:
1606        ISD::CondCode Result;
1607        bool isInteger = MVT::isInteger(LL.getValueType());
1608        if (Opcode == ISD::OR)
1609          Result = ISD::getSetCCOrOperation(Op1, Op2, isInteger);
1610        else
1611          Result = ISD::getSetCCAndOperation(Op1, Op2, isInteger);
1612
1613        if (Result != ISD::SETCC_INVALID)
1614          return getSetCC(LHS->getValueType(0), LL, LR, Result);
1615      }
1616    }
1617
1618    // and/or zext(a), zext(b) -> zext(and/or a, b)
1619    if (N1.getOpcode() == ISD::ZERO_EXTEND &&
1620        N2.getOpcode() == ISD::ZERO_EXTEND &&
1621        N1.getOperand(0).getValueType() == N2.getOperand(0).getValueType())
1622      return getNode(ISD::ZERO_EXTEND, VT,
1623                     getNode(Opcode, N1.getOperand(0).getValueType(),
1624                             N1.getOperand(0), N2.getOperand(0)));
1625    }
1626    break;
1627  case ISD::XOR:
1628    if (!CombinerEnabled) {
1629    if (N1 == N2) return getConstant(0, VT);  // xor X, Y -> 0
1630    }
1631    break;
1632  case ISD::ADD:
1633    if (!CombinerEnabled) {
1634    if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1635        cast<ConstantSDNode>(N1.getOperand(0))->getValue() == 0)
1636      return getNode(ISD::SUB, VT, N2, N1.getOperand(1)); // (0-A)+B -> B-A
1637    if (N2.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N2.getOperand(0)) &&
1638        cast<ConstantSDNode>(N2.getOperand(0))->getValue() == 0)
1639      return getNode(ISD::SUB, VT, N1, N2.getOperand(1)); // A+(0-B) -> A-B
1640    if (N2.getOpcode() == ISD::SUB && N1 == N2.Val->getOperand(1))
1641      return N2.Val->getOperand(0); // A+(B-A) -> B
1642    }
1643    break;
1644  case ISD::FADD:
1645    if (!CombinerEnabled) {
1646    if (N2.getOpcode() == ISD::FNEG)          // (A+ (-B) -> A-B
1647      return getNode(ISD::FSUB, VT, N1, N2.getOperand(0));
1648    if (N1.getOpcode() == ISD::FNEG)          // ((-A)+B) -> B-A
1649      return getNode(ISD::FSUB, VT, N2, N1.getOperand(0));
1650    }
1651    break;
1652
1653  case ISD::SUB:
1654    if (!CombinerEnabled) {
1655    if (N1.getOpcode() == ISD::ADD) {
1656      if (N1.Val->getOperand(0) == N2)
1657        return N1.Val->getOperand(1);         // (A+B)-A == B
1658      if (N1.Val->getOperand(1) == N2)
1659        return N1.Val->getOperand(0);         // (A+B)-B == A
1660    }
1661    }
1662    break;
1663  case ISD::FSUB:
1664    if (!CombinerEnabled) {
1665    if (N2.getOpcode() == ISD::FNEG)          // (A- (-B) -> A+B
1666      return getNode(ISD::FADD, VT, N1, N2.getOperand(0));
1667    }
1668    break;
1669  case ISD::FP_ROUND_INREG:
1670    if (cast<VTSDNode>(N2)->getVT() == VT) return N1;  // Not actually rounding.
1671    break;
1672  case ISD::SIGN_EXTEND_INREG: {
1673    MVT::ValueType EVT = cast<VTSDNode>(N2)->getVT();
1674    if (EVT == VT) return N1;  // Not actually extending
1675    if (!CombinerEnabled) {
1676    // If we are sign extending an extension, use the original source.
1677    if (N1.getOpcode() == ISD::SIGN_EXTEND_INREG ||
1678        N1.getOpcode() == ISD::AssertSext)
1679      if (cast<VTSDNode>(N1.getOperand(1))->getVT() <= EVT)
1680        return N1;
1681
1682    // If we are sign extending a sextload, return just the load.
1683    if (N1.getOpcode() == ISD::SEXTLOAD)
1684      if (cast<VTSDNode>(N1.getOperand(3))->getVT() <= EVT)
1685        return N1;
1686
1687    // If we are extending the result of a setcc, and we already know the
1688    // contents of the top bits, eliminate the extension.
1689    if (N1.getOpcode() == ISD::SETCC &&
1690        TLI.getSetCCResultContents() ==
1691                        TargetLowering::ZeroOrNegativeOneSetCCResult)
1692      return N1;
1693
1694    // If we are sign extending the result of an (and X, C) operation, and we
1695    // know the extended bits are zeros already, don't do the extend.
1696    if (N1.getOpcode() == ISD::AND)
1697      if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getOperand(1))) {
1698        uint64_t Mask = N1C->getValue();
1699        unsigned NumBits = MVT::getSizeInBits(EVT);
1700        if ((Mask & (~0ULL << (NumBits-1))) == 0)
1701          return N1;
1702      }
1703    }
1704    break;
1705  }
1706
1707  // FIXME: figure out how to safely handle things like
1708  // int foo(int x) { return 1 << (x & 255); }
1709  // int bar() { return foo(256); }
1710#if 0
1711  case ISD::SHL:
1712  case ISD::SRL:
1713  case ISD::SRA:
1714    if (N2.getOpcode() == ISD::SIGN_EXTEND_INREG &&
1715        cast<VTSDNode>(N2.getOperand(1))->getVT() != MVT::i1)
1716      return getNode(Opcode, VT, N1, N2.getOperand(0));
1717    else if (N2.getOpcode() == ISD::AND)
1718      if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N2.getOperand(1))) {
1719        // If the and is only masking out bits that cannot effect the shift,
1720        // eliminate the and.
1721        unsigned NumBits = MVT::getSizeInBits(VT);
1722        if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
1723          return getNode(Opcode, VT, N1, N2.getOperand(0));
1724      }
1725    break;
1726#endif
1727  }
1728
1729  // Memoize this node if possible.
1730  SDNode *N;
1731  if (Opcode != ISD::CALLSEQ_START && Opcode != ISD::CALLSEQ_END &&
1732      VT != MVT::Flag) {
1733    SDNode *&BON = BinaryOps[std::make_pair(Opcode, std::make_pair(N1, N2))];
1734    if (BON) return SDOperand(BON, 0);
1735
1736    BON = N = new SDNode(Opcode, N1, N2);
1737  } else {
1738    N = new SDNode(Opcode, N1, N2);
1739  }
1740
1741  N->setValueTypes(VT);
1742  AllNodes.push_back(N);
1743  return SDOperand(N, 0);
1744}
1745
1746// setAdjCallChain - This method changes the token chain of an
1747// CALLSEQ_START/END node to be the specified operand.
1748void SDNode::setAdjCallChain(SDOperand N) {
1749  assert(N.getValueType() == MVT::Other);
1750  assert((getOpcode() == ISD::CALLSEQ_START ||
1751          getOpcode() == ISD::CALLSEQ_END) && "Cannot adjust this node!");
1752
1753  Operands[0].Val->removeUser(this);
1754  Operands[0] = N;
1755  N.Val->Uses.push_back(this);
1756}
1757
1758
1759
1760SDOperand SelectionDAG::getLoad(MVT::ValueType VT,
1761                                SDOperand Chain, SDOperand Ptr,
1762                                SDOperand SV) {
1763  SDNode *&N = Loads[std::make_pair(Ptr, std::make_pair(Chain, VT))];
1764  if (N) return SDOperand(N, 0);
1765  N = new SDNode(ISD::LOAD, Chain, Ptr, SV);
1766
1767  // Loads have a token chain.
1768  N->setValueTypes(VT, MVT::Other);
1769  AllNodes.push_back(N);
1770  return SDOperand(N, 0);
1771}
1772
1773
1774SDOperand SelectionDAG::getExtLoad(unsigned Opcode, MVT::ValueType VT,
1775                                   SDOperand Chain, SDOperand Ptr, SDOperand SV,
1776                                   MVT::ValueType EVT) {
1777  std::vector<SDOperand> Ops;
1778  Ops.reserve(4);
1779  Ops.push_back(Chain);
1780  Ops.push_back(Ptr);
1781  Ops.push_back(SV);
1782  Ops.push_back(getValueType(EVT));
1783  std::vector<MVT::ValueType> VTs;
1784  VTs.reserve(2);
1785  VTs.push_back(VT); VTs.push_back(MVT::Other);  // Add token chain.
1786  return getNode(Opcode, VTs, Ops);
1787}
1788
1789SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1790                                SDOperand N1, SDOperand N2, SDOperand N3) {
1791  // Perform various simplifications.
1792  ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1793  ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
1794  ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.Val);
1795  switch (Opcode) {
1796  case ISD::SETCC: {
1797    // Use SimplifySetCC  to simplify SETCC's.
1798    SDOperand Simp = SimplifySetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get());
1799    if (Simp.Val) return Simp;
1800    break;
1801  }
1802  case ISD::SELECT:
1803    if (N1C)
1804      if (N1C->getValue())
1805        return N2;             // select true, X, Y -> X
1806      else
1807        return N3;             // select false, X, Y -> Y
1808
1809    if (N2 == N3) return N2;   // select C, X, X -> X
1810
1811    if (!CombinerEnabled) {
1812    if (VT == MVT::i1) {  // Boolean SELECT
1813      if (N2C) {
1814        if (N2C->getValue())   // select C, 1, X -> C | X
1815          return getNode(ISD::OR, VT, N1, N3);
1816        else                   // select C, 0, X -> ~C & X
1817          return getNode(ISD::AND, VT,
1818                         getNode(ISD::XOR, N1.getValueType(), N1,
1819                                 getConstant(1, N1.getValueType())), N3);
1820      } else if (N3C) {
1821        if (N3C->getValue())   // select C, X, 1 -> ~C | X
1822          return getNode(ISD::OR, VT,
1823                         getNode(ISD::XOR, N1.getValueType(), N1,
1824                                 getConstant(1, N1.getValueType())), N2);
1825        else                   // select C, X, 0 -> C & X
1826          return getNode(ISD::AND, VT, N1, N2);
1827      }
1828
1829      if (N1 == N2)   // X ? X : Y --> X ? 1 : Y --> X | Y
1830        return getNode(ISD::OR, VT, N1, N3);
1831      if (N1 == N3)   // X ? Y : X --> X ? Y : 0 --> X & Y
1832        return getNode(ISD::AND, VT, N1, N2);
1833    }
1834    if (N1.getOpcode() == ISD::SETCC) {
1835      SDOperand Simp = SimplifySelectCC(N1.getOperand(0), N1.getOperand(1), N2,
1836                             N3, cast<CondCodeSDNode>(N1.getOperand(2))->get());
1837      if (Simp.Val) return Simp;
1838    }
1839    }
1840    break;
1841  case ISD::BRCOND:
1842    if (N2C)
1843      if (N2C->getValue()) // Unconditional branch
1844        return getNode(ISD::BR, MVT::Other, N1, N3);
1845      else
1846        return N1;         // Never-taken branch
1847    break;
1848  }
1849
1850  std::vector<SDOperand> Ops;
1851  Ops.reserve(3);
1852  Ops.push_back(N1);
1853  Ops.push_back(N2);
1854  Ops.push_back(N3);
1855
1856  // Memoize node if it doesn't produce a flag.
1857  SDNode *N;
1858  if (VT != MVT::Flag) {
1859    SDNode *&E = OneResultNodes[std::make_pair(Opcode,std::make_pair(VT, Ops))];
1860    if (E) return SDOperand(E, 0);
1861    E = N = new SDNode(Opcode, N1, N2, N3);
1862  } else {
1863    N = new SDNode(Opcode, N1, N2, N3);
1864  }
1865  N->setValueTypes(VT);
1866  AllNodes.push_back(N);
1867  return SDOperand(N, 0);
1868}
1869
1870SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1871                                SDOperand N1, SDOperand N2, SDOperand N3,
1872                                SDOperand N4) {
1873  std::vector<SDOperand> Ops;
1874  Ops.reserve(4);
1875  Ops.push_back(N1);
1876  Ops.push_back(N2);
1877  Ops.push_back(N3);
1878  Ops.push_back(N4);
1879  return getNode(Opcode, VT, Ops);
1880}
1881
1882SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1883                                SDOperand N1, SDOperand N2, SDOperand N3,
1884                                SDOperand N4, SDOperand N5) {
1885  std::vector<SDOperand> Ops;
1886  Ops.reserve(5);
1887  Ops.push_back(N1);
1888  Ops.push_back(N2);
1889  Ops.push_back(N3);
1890  Ops.push_back(N4);
1891  Ops.push_back(N5);
1892  return getNode(Opcode, VT, Ops);
1893}
1894
1895
1896SDOperand SelectionDAG::getSrcValue(const Value *V, int Offset) {
1897  assert((!V || isa<PointerType>(V->getType())) &&
1898         "SrcValue is not a pointer?");
1899  SDNode *&N = ValueNodes[std::make_pair(V, Offset)];
1900  if (N) return SDOperand(N, 0);
1901
1902  N = new SrcValueSDNode(V, Offset);
1903  AllNodes.push_back(N);
1904  return SDOperand(N, 0);
1905}
1906
1907SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
1908                                std::vector<SDOperand> &Ops) {
1909  switch (Ops.size()) {
1910  case 0: return getNode(Opcode, VT);
1911  case 1: return getNode(Opcode, VT, Ops[0]);
1912  case 2: return getNode(Opcode, VT, Ops[0], Ops[1]);
1913  case 3: return getNode(Opcode, VT, Ops[0], Ops[1], Ops[2]);
1914  default: break;
1915  }
1916
1917  ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Ops[1].Val);
1918  switch (Opcode) {
1919  default: break;
1920  case ISD::BRCONDTWOWAY:
1921    if (N1C)
1922      if (N1C->getValue()) // Unconditional branch to true dest.
1923        return getNode(ISD::BR, MVT::Other, Ops[0], Ops[2]);
1924      else                 // Unconditional branch to false dest.
1925        return getNode(ISD::BR, MVT::Other, Ops[0], Ops[3]);
1926    break;
1927  case ISD::BRTWOWAY_CC:
1928    assert(Ops.size() == 6 && "BRTWOWAY_CC takes 6 operands!");
1929    assert(Ops[2].getValueType() == Ops[3].getValueType() &&
1930           "LHS and RHS of comparison must have same type!");
1931    break;
1932  case ISD::TRUNCSTORE: {
1933    assert(Ops.size() == 5 && "TRUNCSTORE takes 5 operands!");
1934    MVT::ValueType EVT = cast<VTSDNode>(Ops[4])->getVT();
1935#if 0 // FIXME: If the target supports EVT natively, convert to a truncate/store
1936    // If this is a truncating store of a constant, convert to the desired type
1937    // and store it instead.
1938    if (isa<Constant>(Ops[0])) {
1939      SDOperand Op = getNode(ISD::TRUNCATE, EVT, N1);
1940      if (isa<Constant>(Op))
1941        N1 = Op;
1942    }
1943    // Also for ConstantFP?
1944#endif
1945    if (Ops[0].getValueType() == EVT)       // Normal store?
1946      return getNode(ISD::STORE, VT, Ops[0], Ops[1], Ops[2], Ops[3]);
1947    assert(Ops[1].getValueType() > EVT && "Not a truncation?");
1948    assert(MVT::isInteger(Ops[1].getValueType()) == MVT::isInteger(EVT) &&
1949           "Can't do FP-INT conversion!");
1950    break;
1951  }
1952  case ISD::SELECT_CC: {
1953    assert(Ops.size() == 5 && "SELECT_CC takes 5 operands!");
1954    assert(Ops[0].getValueType() == Ops[1].getValueType() &&
1955           "LHS and RHS of condition must have same type!");
1956    assert(Ops[2].getValueType() == Ops[3].getValueType() &&
1957           "True and False arms of SelectCC must have same type!");
1958    assert(Ops[2].getValueType() == VT &&
1959           "select_cc node must be of same type as true and false value!");
1960    SDOperand Simp = SimplifySelectCC(Ops[0], Ops[1], Ops[2], Ops[3],
1961                                      cast<CondCodeSDNode>(Ops[4])->get());
1962    if (Simp.Val) return Simp;
1963    break;
1964  }
1965  case ISD::BR_CC: {
1966    assert(Ops.size() == 5 && "BR_CC takes 5 operands!");
1967    assert(Ops[2].getValueType() == Ops[3].getValueType() &&
1968           "LHS/RHS of comparison should match types!");
1969
1970    if (CombinerEnabled) break;  // xforms moved to dag combine.
1971
1972    // Use SimplifySetCC  to simplify SETCC's.
1973    SDOperand Simp = SimplifySetCC(MVT::i1, Ops[2], Ops[3],
1974                                   cast<CondCodeSDNode>(Ops[1])->get());
1975    if (Simp.Val) {
1976      if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Simp)) {
1977        if (C->getValue() & 1) // Unconditional branch
1978          return getNode(ISD::BR, MVT::Other, Ops[0], Ops[4]);
1979        else
1980          return Ops[0];          // Unconditional Fall through
1981      } else if (Simp.Val->getOpcode() == ISD::SETCC) {
1982        Ops[2] = Simp.getOperand(0);
1983        Ops[3] = Simp.getOperand(1);
1984        Ops[1] = Simp.getOperand(2);
1985      }
1986    }
1987    break;
1988  }
1989  }
1990
1991  // Memoize nodes.
1992  SDNode *N;
1993  if (VT != MVT::Flag) {
1994    SDNode *&E =
1995      OneResultNodes[std::make_pair(Opcode, std::make_pair(VT, Ops))];
1996    if (E) return SDOperand(E, 0);
1997    E = N = new SDNode(Opcode, Ops);
1998  } else {
1999    N = new SDNode(Opcode, Ops);
2000  }
2001  N->setValueTypes(VT);
2002  AllNodes.push_back(N);
2003  return SDOperand(N, 0);
2004}
2005
2006SDOperand SelectionDAG::getNode(unsigned Opcode,
2007                                std::vector<MVT::ValueType> &ResultTys,
2008                                std::vector<SDOperand> &Ops) {
2009  if (ResultTys.size() == 1)
2010    return getNode(Opcode, ResultTys[0], Ops);
2011
2012  switch (Opcode) {
2013  case ISD::EXTLOAD:
2014  case ISD::SEXTLOAD:
2015  case ISD::ZEXTLOAD: {
2016    MVT::ValueType EVT = cast<VTSDNode>(Ops[3])->getVT();
2017    assert(Ops.size() == 4 && ResultTys.size() == 2 && "Bad *EXTLOAD!");
2018    // If they are asking for an extending load from/to the same thing, return a
2019    // normal load.
2020    if (ResultTys[0] == EVT)
2021      return getLoad(ResultTys[0], Ops[0], Ops[1], Ops[2]);
2022    assert(EVT < ResultTys[0] &&
2023           "Should only be an extending load, not truncating!");
2024    assert((Opcode == ISD::EXTLOAD || MVT::isInteger(ResultTys[0])) &&
2025           "Cannot sign/zero extend a FP load!");
2026    assert(MVT::isInteger(ResultTys[0]) == MVT::isInteger(EVT) &&
2027           "Cannot convert from FP to Int or Int -> FP!");
2028    break;
2029  }
2030
2031  // FIXME: figure out how to safely handle things like
2032  // int foo(int x) { return 1 << (x & 255); }
2033  // int bar() { return foo(256); }
2034#if 0
2035  case ISD::SRA_PARTS:
2036  case ISD::SRL_PARTS:
2037  case ISD::SHL_PARTS:
2038    if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG &&
2039        cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
2040      return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2041    else if (N3.getOpcode() == ISD::AND)
2042      if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
2043        // If the and is only masking out bits that cannot effect the shift,
2044        // eliminate the and.
2045        unsigned NumBits = MVT::getSizeInBits(VT)*2;
2046        if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
2047          return getNode(Opcode, VT, N1, N2, N3.getOperand(0));
2048      }
2049    break;
2050#endif
2051  }
2052
2053  // Memoize the node unless it returns a flag.
2054  SDNode *N;
2055  if (ResultTys.back() != MVT::Flag) {
2056    SDNode *&E =
2057      ArbitraryNodes[std::make_pair(Opcode, std::make_pair(ResultTys, Ops))];
2058    if (E) return SDOperand(E, 0);
2059    E = N = new SDNode(Opcode, Ops);
2060  } else {
2061    N = new SDNode(Opcode, Ops);
2062  }
2063  N->setValueTypes(ResultTys);
2064  AllNodes.push_back(N);
2065  return SDOperand(N, 0);
2066}
2067
2068
2069/// SelectNodeTo - These are used for target selectors to *mutate* the
2070/// specified node to have the specified return type, Target opcode, and
2071/// operands.  Note that target opcodes are stored as
2072/// ISD::BUILTIN_OP_END+TargetOpcode in the node opcode field.
2073void SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2074                                MVT::ValueType VT) {
2075  RemoveNodeFromCSEMaps(N);
2076  N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
2077  N->setValueTypes(VT);
2078}
2079void SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2080                                MVT::ValueType VT, SDOperand Op1) {
2081  RemoveNodeFromCSEMaps(N);
2082  N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
2083  N->setValueTypes(VT);
2084  N->setOperands(Op1);
2085}
2086void SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2087                                MVT::ValueType VT, SDOperand Op1,
2088                                SDOperand Op2) {
2089  RemoveNodeFromCSEMaps(N);
2090  N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
2091  N->setValueTypes(VT);
2092  N->setOperands(Op1, Op2);
2093}
2094void SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2095                                MVT::ValueType VT1, MVT::ValueType VT2,
2096                                SDOperand Op1, SDOperand Op2) {
2097  RemoveNodeFromCSEMaps(N);
2098  N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
2099  N->setValueTypes(VT1, VT2);
2100  N->setOperands(Op1, Op2);
2101}
2102void SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2103                                MVT::ValueType VT, SDOperand Op1,
2104                                SDOperand Op2, SDOperand Op3) {
2105  RemoveNodeFromCSEMaps(N);
2106  N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
2107  N->setValueTypes(VT);
2108  N->setOperands(Op1, Op2, Op3);
2109}
2110void SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2111                                MVT::ValueType VT1, MVT::ValueType VT2,
2112                                SDOperand Op1, SDOperand Op2, SDOperand Op3) {
2113  RemoveNodeFromCSEMaps(N);
2114  N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
2115  N->setValueTypes(VT1, VT2);
2116  N->setOperands(Op1, Op2, Op3);
2117}
2118
2119void SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2120                                MVT::ValueType VT, SDOperand Op1,
2121                                SDOperand Op2, SDOperand Op3, SDOperand Op4) {
2122  RemoveNodeFromCSEMaps(N);
2123  N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
2124  N->setValueTypes(VT);
2125  N->setOperands(Op1, Op2, Op3, Op4);
2126}
2127void SelectionDAG::SelectNodeTo(SDNode *N, unsigned TargetOpc,
2128                                MVT::ValueType VT, SDOperand Op1,
2129                                SDOperand Op2, SDOperand Op3, SDOperand Op4,
2130                                SDOperand Op5) {
2131  RemoveNodeFromCSEMaps(N);
2132  N->MorphNodeTo(ISD::BUILTIN_OP_END+TargetOpc);
2133  N->setValueTypes(VT);
2134  N->setOperands(Op1, Op2, Op3, Op4, Op5);
2135}
2136
2137/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2138/// This can cause recursive merging of nodes in the DAG.
2139///
2140/// This version assumes From/To have a single result value.
2141///
2142void SelectionDAG::ReplaceAllUsesWith(SDOperand FromN, SDOperand ToN,
2143                                      std::vector<SDNode*> *Deleted) {
2144  SDNode *From = FromN.Val, *To = ToN.Val;
2145  assert(From->getNumValues() == 1 && To->getNumValues() == 1 &&
2146         "Cannot replace with this method!");
2147  assert(From != To && "Cannot replace uses of with self");
2148
2149  while (!From->use_empty()) {
2150    // Process users until they are all gone.
2151    SDNode *U = *From->use_begin();
2152
2153    // This node is about to morph, remove its old self from the CSE maps.
2154    RemoveNodeFromCSEMaps(U);
2155
2156    for (unsigned i = 0, e = U->getNumOperands(); i != e; ++i)
2157      if (U->getOperand(i).Val == From) {
2158        From->removeUser(U);
2159        U->Operands[i].Val = To;
2160        To->addUser(U);
2161      }
2162
2163    // Now that we have modified U, add it back to the CSE maps.  If it already
2164    // exists there, recursively merge the results together.
2165    if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2166      ReplaceAllUsesWith(U, Existing, Deleted);
2167      // U is now dead.
2168      if (Deleted) Deleted->push_back(U);
2169      DeleteNodeNotInCSEMaps(U);
2170    }
2171  }
2172}
2173
2174/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2175/// This can cause recursive merging of nodes in the DAG.
2176///
2177/// This version assumes From/To have matching types and numbers of result
2178/// values.
2179///
2180void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To,
2181                                      std::vector<SDNode*> *Deleted) {
2182  assert(From != To && "Cannot replace uses of with self");
2183  assert(From->getNumValues() == To->getNumValues() &&
2184         "Cannot use this version of ReplaceAllUsesWith!");
2185  if (From->getNumValues() == 1) {  // If possible, use the faster version.
2186    ReplaceAllUsesWith(SDOperand(From, 0), SDOperand(To, 0), Deleted);
2187    return;
2188  }
2189
2190  while (!From->use_empty()) {
2191    // Process users until they are all gone.
2192    SDNode *U = *From->use_begin();
2193
2194    // This node is about to morph, remove its old self from the CSE maps.
2195    RemoveNodeFromCSEMaps(U);
2196
2197    for (unsigned i = 0, e = U->getNumOperands(); i != e; ++i)
2198      if (U->getOperand(i).Val == From) {
2199        From->removeUser(U);
2200        U->Operands[i].Val = To;
2201        To->addUser(U);
2202      }
2203
2204    // Now that we have modified U, add it back to the CSE maps.  If it already
2205    // exists there, recursively merge the results together.
2206    if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2207      ReplaceAllUsesWith(U, Existing, Deleted);
2208      // U is now dead.
2209      if (Deleted) Deleted->push_back(U);
2210      DeleteNodeNotInCSEMaps(U);
2211    }
2212  }
2213}
2214
2215/// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead.
2216/// This can cause recursive merging of nodes in the DAG.
2217///
2218/// This version can replace From with any result values.  To must match the
2219/// number and types of values returned by From.
2220void SelectionDAG::ReplaceAllUsesWith(SDNode *From,
2221                                      const std::vector<SDOperand> &To,
2222                                      std::vector<SDNode*> *Deleted) {
2223  assert(From->getNumValues() == To.size() &&
2224         "Incorrect number of values to replace with!");
2225  if (To.size() == 1 && To[0].Val->getNumValues() == 1) {
2226    // Degenerate case handled above.
2227    ReplaceAllUsesWith(SDOperand(From, 0), To[0], Deleted);
2228    return;
2229  }
2230
2231  while (!From->use_empty()) {
2232    // Process users until they are all gone.
2233    SDNode *U = *From->use_begin();
2234
2235    // This node is about to morph, remove its old self from the CSE maps.
2236    RemoveNodeFromCSEMaps(U);
2237
2238    for (unsigned i = 0, e = U->getNumOperands(); i != e; ++i)
2239      if (U->getOperand(i).Val == From) {
2240        const SDOperand &ToOp = To[U->getOperand(i).ResNo];
2241        From->removeUser(U);
2242        U->Operands[i] = ToOp;
2243        ToOp.Val->addUser(U);
2244      }
2245
2246    // Now that we have modified U, add it back to the CSE maps.  If it already
2247    // exists there, recursively merge the results together.
2248    if (SDNode *Existing = AddNonLeafNodeToCSEMaps(U)) {
2249      ReplaceAllUsesWith(U, Existing, Deleted);
2250      // U is now dead.
2251      if (Deleted) Deleted->push_back(U);
2252      DeleteNodeNotInCSEMaps(U);
2253    }
2254  }
2255}
2256
2257
2258//===----------------------------------------------------------------------===//
2259//                              SDNode Class
2260//===----------------------------------------------------------------------===//
2261
2262/// hasNUsesOfValue - Return true if there are exactly NUSES uses of the
2263/// indicated value.  This method ignores uses of other values defined by this
2264/// operation.
2265bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) {
2266  assert(Value < getNumValues() && "Bad value!");
2267
2268  // If there is only one value, this is easy.
2269  if (getNumValues() == 1)
2270    return use_size() == NUses;
2271  if (Uses.size() < NUses) return false;
2272
2273  SDOperand TheValue(this, Value);
2274
2275  std::set<SDNode*> UsersHandled;
2276
2277  for (std::vector<SDNode*>::iterator UI = Uses.begin(), E = Uses.end();
2278       UI != E; ++UI) {
2279    SDNode *User = *UI;
2280    if (User->getNumOperands() == 1 ||
2281        UsersHandled.insert(User).second)     // First time we've seen this?
2282      for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
2283        if (User->getOperand(i) == TheValue) {
2284          if (NUses == 0)
2285            return false;   // too many uses
2286          --NUses;
2287        }
2288  }
2289
2290  // Found exactly the right number of uses?
2291  return NUses == 0;
2292}
2293
2294
2295const char *SDNode::getOperationName(const SelectionDAG *G) const {
2296  switch (getOpcode()) {
2297  default:
2298    if (getOpcode() < ISD::BUILTIN_OP_END)
2299      return "<<Unknown DAG Node>>";
2300    else {
2301      if (G)
2302        if (const TargetInstrInfo *TII = G->getTarget().getInstrInfo())
2303          if (getOpcode()-ISD::BUILTIN_OP_END < TII->getNumOpcodes())
2304            return TII->getName(getOpcode()-ISD::BUILTIN_OP_END);
2305      return "<<Unknown Target Node>>";
2306    }
2307
2308  case ISD::PCMARKER:      return "PCMarker";
2309  case ISD::SRCVALUE:      return "SrcValue";
2310  case ISD::VALUETYPE:     return "ValueType";
2311  case ISD::EntryToken:    return "EntryToken";
2312  case ISD::TokenFactor:   return "TokenFactor";
2313  case ISD::AssertSext:    return "AssertSext";
2314  case ISD::AssertZext:    return "AssertZext";
2315  case ISD::Constant:      return "Constant";
2316  case ISD::TargetConstant: return "TargetConstant";
2317  case ISD::ConstantFP:    return "ConstantFP";
2318  case ISD::GlobalAddress: return "GlobalAddress";
2319  case ISD::TargetGlobalAddress: return "TargetGlobalAddress";
2320  case ISD::FrameIndex:    return "FrameIndex";
2321  case ISD::TargetFrameIndex: return "TargetFrameIndex";
2322  case ISD::BasicBlock:    return "BasicBlock";
2323  case ISD::Register:      return "Register";
2324  case ISD::ExternalSymbol: return "ExternalSymbol";
2325  case ISD::ConstantPool:  return "ConstantPool";
2326  case ISD::TargetConstantPool:  return "TargetConstantPool";
2327  case ISD::CopyToReg:     return "CopyToReg";
2328  case ISD::CopyFromReg:   return "CopyFromReg";
2329  case ISD::ImplicitDef:   return "ImplicitDef";
2330  case ISD::UNDEF:         return "undef";
2331
2332  // Unary operators
2333  case ISD::FABS:   return "fabs";
2334  case ISD::FNEG:   return "fneg";
2335  case ISD::FSQRT:  return "fsqrt";
2336  case ISD::FSIN:   return "fsin";
2337  case ISD::FCOS:   return "fcos";
2338
2339  // Binary operators
2340  case ISD::ADD:    return "add";
2341  case ISD::SUB:    return "sub";
2342  case ISD::MUL:    return "mul";
2343  case ISD::MULHU:  return "mulhu";
2344  case ISD::MULHS:  return "mulhs";
2345  case ISD::SDIV:   return "sdiv";
2346  case ISD::UDIV:   return "udiv";
2347  case ISD::SREM:   return "srem";
2348  case ISD::UREM:   return "urem";
2349  case ISD::AND:    return "and";
2350  case ISD::OR:     return "or";
2351  case ISD::XOR:    return "xor";
2352  case ISD::SHL:    return "shl";
2353  case ISD::SRA:    return "sra";
2354  case ISD::SRL:    return "srl";
2355  case ISD::FADD:   return "fadd";
2356  case ISD::FSUB:   return "fsub";
2357  case ISD::FMUL:   return "fmul";
2358  case ISD::FDIV:   return "fdiv";
2359  case ISD::FREM:   return "frem";
2360
2361  case ISD::SETCC:       return "setcc";
2362  case ISD::SELECT:      return "select";
2363  case ISD::SELECT_CC:   return "select_cc";
2364  case ISD::ADD_PARTS:   return "add_parts";
2365  case ISD::SUB_PARTS:   return "sub_parts";
2366  case ISD::SHL_PARTS:   return "shl_parts";
2367  case ISD::SRA_PARTS:   return "sra_parts";
2368  case ISD::SRL_PARTS:   return "srl_parts";
2369
2370  // Conversion operators.
2371  case ISD::SIGN_EXTEND: return "sign_extend";
2372  case ISD::ZERO_EXTEND: return "zero_extend";
2373  case ISD::ANY_EXTEND:  return "any_extend";
2374  case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg";
2375  case ISD::TRUNCATE:    return "truncate";
2376  case ISD::FP_ROUND:    return "fp_round";
2377  case ISD::FP_ROUND_INREG: return "fp_round_inreg";
2378  case ISD::FP_EXTEND:   return "fp_extend";
2379
2380  case ISD::SINT_TO_FP:  return "sint_to_fp";
2381  case ISD::UINT_TO_FP:  return "uint_to_fp";
2382  case ISD::FP_TO_SINT:  return "fp_to_sint";
2383  case ISD::FP_TO_UINT:  return "fp_to_uint";
2384
2385    // Control flow instructions
2386  case ISD::BR:      return "br";
2387  case ISD::BRCOND:  return "brcond";
2388  case ISD::BRCONDTWOWAY:  return "brcondtwoway";
2389  case ISD::BR_CC:  return "br_cc";
2390  case ISD::BRTWOWAY_CC:  return "brtwoway_cc";
2391  case ISD::RET:     return "ret";
2392  case ISD::CALL:    return "call";
2393  case ISD::TAILCALL:return "tailcall";
2394  case ISD::CALLSEQ_START:  return "callseq_start";
2395  case ISD::CALLSEQ_END:    return "callseq_end";
2396
2397    // Other operators
2398  case ISD::LOAD:    return "load";
2399  case ISD::STORE:   return "store";
2400  case ISD::EXTLOAD:    return "extload";
2401  case ISD::SEXTLOAD:   return "sextload";
2402  case ISD::ZEXTLOAD:   return "zextload";
2403  case ISD::TRUNCSTORE: return "truncstore";
2404
2405  case ISD::DYNAMIC_STACKALLOC: return "dynamic_stackalloc";
2406  case ISD::EXTRACT_ELEMENT: return "extract_element";
2407  case ISD::BUILD_PAIR: return "build_pair";
2408  case ISD::MEMSET:  return "memset";
2409  case ISD::MEMCPY:  return "memcpy";
2410  case ISD::MEMMOVE: return "memmove";
2411
2412  // Bit counting
2413  case ISD::CTPOP:   return "ctpop";
2414  case ISD::CTTZ:    return "cttz";
2415  case ISD::CTLZ:    return "ctlz";
2416
2417  // IO Intrinsics
2418  case ISD::READPORT: return "readport";
2419  case ISD::WRITEPORT: return "writeport";
2420  case ISD::READIO: return "readio";
2421  case ISD::WRITEIO: return "writeio";
2422
2423  case ISD::CONDCODE:
2424    switch (cast<CondCodeSDNode>(this)->get()) {
2425    default: assert(0 && "Unknown setcc condition!");
2426    case ISD::SETOEQ:  return "setoeq";
2427    case ISD::SETOGT:  return "setogt";
2428    case ISD::SETOGE:  return "setoge";
2429    case ISD::SETOLT:  return "setolt";
2430    case ISD::SETOLE:  return "setole";
2431    case ISD::SETONE:  return "setone";
2432
2433    case ISD::SETO:    return "seto";
2434    case ISD::SETUO:   return "setuo";
2435    case ISD::SETUEQ:  return "setue";
2436    case ISD::SETUGT:  return "setugt";
2437    case ISD::SETUGE:  return "setuge";
2438    case ISD::SETULT:  return "setult";
2439    case ISD::SETULE:  return "setule";
2440    case ISD::SETUNE:  return "setune";
2441
2442    case ISD::SETEQ:   return "seteq";
2443    case ISD::SETGT:   return "setgt";
2444    case ISD::SETGE:   return "setge";
2445    case ISD::SETLT:   return "setlt";
2446    case ISD::SETLE:   return "setle";
2447    case ISD::SETNE:   return "setne";
2448    }
2449  }
2450}
2451
2452void SDNode::dump() const { dump(0); }
2453void SDNode::dump(const SelectionDAG *G) const {
2454  std::cerr << (void*)this << ": ";
2455
2456  for (unsigned i = 0, e = getNumValues(); i != e; ++i) {
2457    if (i) std::cerr << ",";
2458    if (getValueType(i) == MVT::Other)
2459      std::cerr << "ch";
2460    else
2461      std::cerr << MVT::getValueTypeString(getValueType(i));
2462  }
2463  std::cerr << " = " << getOperationName(G);
2464
2465  std::cerr << " ";
2466  for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
2467    if (i) std::cerr << ", ";
2468    std::cerr << (void*)getOperand(i).Val;
2469    if (unsigned RN = getOperand(i).ResNo)
2470      std::cerr << ":" << RN;
2471  }
2472
2473  if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) {
2474    std::cerr << "<" << CSDN->getValue() << ">";
2475  } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) {
2476    std::cerr << "<" << CSDN->getValue() << ">";
2477  } else if (const GlobalAddressSDNode *GADN =
2478             dyn_cast<GlobalAddressSDNode>(this)) {
2479    std::cerr << "<";
2480    WriteAsOperand(std::cerr, GADN->getGlobal()) << ">";
2481  } else if (const FrameIndexSDNode *FIDN = dyn_cast<FrameIndexSDNode>(this)) {
2482    std::cerr << "<" << FIDN->getIndex() << ">";
2483  } else if (const ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(this)){
2484    std::cerr << "<" << *CP->get() << ">";
2485  } else if (const BasicBlockSDNode *BBDN = dyn_cast<BasicBlockSDNode>(this)) {
2486    std::cerr << "<";
2487    const Value *LBB = (const Value*)BBDN->getBasicBlock()->getBasicBlock();
2488    if (LBB)
2489      std::cerr << LBB->getName() << " ";
2490    std::cerr << (const void*)BBDN->getBasicBlock() << ">";
2491  } else if (const RegisterSDNode *R = dyn_cast<RegisterSDNode>(this)) {
2492    if (G && MRegisterInfo::isPhysicalRegister(R->getReg())) {
2493      std::cerr << " " <<G->getTarget().getRegisterInfo()->getName(R->getReg());
2494    } else {
2495      std::cerr << " #" << R->getReg();
2496    }
2497  } else if (const ExternalSymbolSDNode *ES =
2498             dyn_cast<ExternalSymbolSDNode>(this)) {
2499    std::cerr << "'" << ES->getSymbol() << "'";
2500  } else if (const SrcValueSDNode *M = dyn_cast<SrcValueSDNode>(this)) {
2501    if (M->getValue())
2502      std::cerr << "<" << M->getValue() << ":" << M->getOffset() << ">";
2503    else
2504      std::cerr << "<null:" << M->getOffset() << ">";
2505  } else if (const VTSDNode *N = dyn_cast<VTSDNode>(this)) {
2506    std::cerr << ":" << getValueTypeString(N->getVT());
2507  }
2508}
2509
2510static void DumpNodes(SDNode *N, unsigned indent, const SelectionDAG *G) {
2511  for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
2512    if (N->getOperand(i).Val->hasOneUse())
2513      DumpNodes(N->getOperand(i).Val, indent+2, G);
2514    else
2515      std::cerr << "\n" << std::string(indent+2, ' ')
2516                << (void*)N->getOperand(i).Val << ": <multiple use>";
2517
2518
2519  std::cerr << "\n" << std::string(indent, ' ');
2520  N->dump(G);
2521}
2522
2523void SelectionDAG::dump() const {
2524  std::cerr << "SelectionDAG has " << AllNodes.size() << " nodes:";
2525  std::vector<SDNode*> Nodes(AllNodes);
2526  std::sort(Nodes.begin(), Nodes.end());
2527
2528  for (unsigned i = 0, e = Nodes.size(); i != e; ++i) {
2529    if (!Nodes[i]->hasOneUse() && Nodes[i] != getRoot().Val)
2530      DumpNodes(Nodes[i], 2, this);
2531  }
2532
2533  DumpNodes(getRoot().Val, 2, this);
2534
2535  std::cerr << "\n\n";
2536}
2537
2538