Fix some bugs in SimplifyNodeWithTwoResults where it would call deletenode to
[oota-llvm.git] / lib / CodeGen / SelectionDAG / DAGCombiner.cpp
1 //===-- DAGCombiner.cpp - Implement a DAG node combiner -------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This pass combines dag nodes to form fewer, simpler DAG nodes.  It can be run
11 // both before and after the DAG is legalized.
12 // 
13 //===----------------------------------------------------------------------===//
14
15 #define DEBUG_TYPE "dagcombine"
16 #include "llvm/CodeGen/SelectionDAG.h"
17 #include "llvm/CodeGen/MachineFunction.h"
18 #include "llvm/CodeGen/MachineFrameInfo.h"
19 #include "llvm/Analysis/AliasAnalysis.h"
20 #include "llvm/Target/TargetData.h"
21 #include "llvm/Target/TargetLowering.h"
22 #include "llvm/Target/TargetMachine.h"
23 #include "llvm/Target/TargetOptions.h"
24 #include "llvm/ADT/SmallPtrSet.h"
25 #include "llvm/ADT/Statistic.h"
26 #include "llvm/Support/Compiler.h"
27 #include "llvm/Support/CommandLine.h"
28 #include "llvm/Support/Debug.h"
29 #include "llvm/Support/MathExtras.h"
30 #include <algorithm>
31 using namespace llvm;
32
33 STATISTIC(NodesCombined   , "Number of dag nodes combined");
34 STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created");
35 STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created");
36
37 namespace {
38 #ifndef NDEBUG
39   static cl::opt<bool>
40     ViewDAGCombine1("view-dag-combine1-dags", cl::Hidden,
41                     cl::desc("Pop up a window to show dags before the first "
42                              "dag combine pass"));
43   static cl::opt<bool>
44     ViewDAGCombine2("view-dag-combine2-dags", cl::Hidden,
45                     cl::desc("Pop up a window to show dags before the second "
46                              "dag combine pass"));
47 #else
48   static const bool ViewDAGCombine1 = false;
49   static const bool ViewDAGCombine2 = false;
50 #endif
51   
52   static cl::opt<bool>
53     CombinerAA("combiner-alias-analysis", cl::Hidden,
54                cl::desc("Turn on alias analysis during testing"));
55
56   static cl::opt<bool>
57     CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden,
58                cl::desc("Include global information in alias analysis"));
59
60 //------------------------------ DAGCombiner ---------------------------------//
61
62   class VISIBILITY_HIDDEN DAGCombiner {
63     SelectionDAG &DAG;
64     TargetLowering &TLI;
65     bool AfterLegalize;
66
67     // Worklist of all of the nodes that need to be simplified.
68     std::vector<SDNode*> WorkList;
69
70     // AA - Used for DAG load/store alias analysis.
71     AliasAnalysis &AA;
72
73     /// AddUsersToWorkList - When an instruction is simplified, add all users of
74     /// the instruction to the work lists because they might get more simplified
75     /// now.
76     ///
77     void AddUsersToWorkList(SDNode *N) {
78       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
79            UI != UE; ++UI)
80         AddToWorkList(*UI);
81     }
82
83     /// removeFromWorkList - remove all instances of N from the worklist.
84     ///
85     void removeFromWorkList(SDNode *N) {
86       WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), N),
87                      WorkList.end());
88     }
89     
90     /// visit - call the node-specific routine that knows how to fold each
91     /// particular type of node.
92     SDOperand visit(SDNode *N);
93
94   public:
95     /// AddToWorkList - Add to the work list making sure it's instance is at the
96     /// the back (next to be processed.)
97     void AddToWorkList(SDNode *N) {
98       removeFromWorkList(N);
99       WorkList.push_back(N);
100     }
101
102     SDOperand CombineTo(SDNode *N, const SDOperand *To, unsigned NumTo,
103                         bool AddTo = true) {
104       assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
105       ++NodesCombined;
106       DOUT << "\nReplacing.1 "; DEBUG(N->dump(&DAG));
107       DOUT << "\nWith: "; DEBUG(To[0].Val->dump(&DAG));
108       DOUT << " and " << NumTo-1 << " other values\n";
109       std::vector<SDNode*> NowDead;
110       DAG.ReplaceAllUsesWith(N, To, &NowDead);
111       
112       if (AddTo) {
113         // Push the new nodes and any users onto the worklist
114         for (unsigned i = 0, e = NumTo; i != e; ++i) {
115           AddToWorkList(To[i].Val);
116           AddUsersToWorkList(To[i].Val);
117         }
118       }
119       
120       // Nodes can be reintroduced into the worklist.  Make sure we do not
121       // process a node that has been replaced.
122       removeFromWorkList(N);
123       for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
124         removeFromWorkList(NowDead[i]);
125       
126       // Finally, since the node is now dead, remove it from the graph.
127       DAG.DeleteNode(N);
128       return SDOperand(N, 0);
129     }
130     
131     SDOperand CombineTo(SDNode *N, SDOperand Res, bool AddTo = true) {
132       return CombineTo(N, &Res, 1, AddTo);
133     }
134     
135     SDOperand CombineTo(SDNode *N, SDOperand Res0, SDOperand Res1,
136                         bool AddTo = true) {
137       SDOperand To[] = { Res0, Res1 };
138       return CombineTo(N, To, 2, AddTo);
139     }
140     
141   private:    
142     
143     /// SimplifyDemandedBits - Check the specified integer node value to see if
144     /// it can be simplified or if things it uses can be simplified by bit
145     /// propagation.  If so, return true.
146     bool SimplifyDemandedBits(SDOperand Op, uint64_t Demanded = ~0ULL) {
147       TargetLowering::TargetLoweringOpt TLO(DAG, AfterLegalize);
148       uint64_t KnownZero, KnownOne;
149       Demanded &= MVT::getIntVTBitMask(Op.getValueType());
150       if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
151         return false;
152
153       // Revisit the node.
154       AddToWorkList(Op.Val);
155       
156       // Replace the old value with the new one.
157       ++NodesCombined;
158       DOUT << "\nReplacing.2 "; DEBUG(TLO.Old.Val->dump(&DAG));
159       DOUT << "\nWith: "; DEBUG(TLO.New.Val->dump(&DAG));
160       DOUT << '\n';
161
162       std::vector<SDNode*> NowDead;
163       DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New, &NowDead);
164       
165       // Push the new node and any (possibly new) users onto the worklist.
166       AddToWorkList(TLO.New.Val);
167       AddUsersToWorkList(TLO.New.Val);
168       
169       // Nodes can end up on the worklist more than once.  Make sure we do
170       // not process a node that has been replaced.
171       for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
172         removeFromWorkList(NowDead[i]);
173       
174       // Finally, if the node is now dead, remove it from the graph.  The node
175       // may not be dead if the replacement process recursively simplified to
176       // something else needing this node.
177       if (TLO.Old.Val->use_empty()) {
178         removeFromWorkList(TLO.Old.Val);
179         
180         // If the operands of this node are only used by the node, they will now
181         // be dead.  Make sure to visit them first to delete dead nodes early.
182         for (unsigned i = 0, e = TLO.Old.Val->getNumOperands(); i != e; ++i)
183           if (TLO.Old.Val->getOperand(i).Val->hasOneUse())
184             AddToWorkList(TLO.Old.Val->getOperand(i).Val);
185         
186         DAG.DeleteNode(TLO.Old.Val);
187       }
188       return true;
189     }
190
191     bool CombineToPreIndexedLoadStore(SDNode *N);
192     bool CombineToPostIndexedLoadStore(SDNode *N);
193     
194     
195     /// combine - call the node-specific routine that knows how to fold each
196     /// particular type of node. If that doesn't do anything, try the
197     /// target-specific DAG combines.
198     SDOperand combine(SDNode *N);
199
200     // Visitation implementation - Implement dag node combining for different
201     // node types.  The semantics are as follows:
202     // Return Value:
203     //   SDOperand.Val == 0   - No change was made
204     //   SDOperand.Val == N   - N was replaced, is dead, and is already handled.
205     //   otherwise            - N should be replaced by the returned Operand.
206     //
207     SDOperand visitTokenFactor(SDNode *N);
208     SDOperand visitADD(SDNode *N);
209     SDOperand visitSUB(SDNode *N);
210     SDOperand visitADDC(SDNode *N);
211     SDOperand visitADDE(SDNode *N);
212     SDOperand visitMUL(SDNode *N);
213     SDOperand visitSDIV(SDNode *N);
214     SDOperand visitUDIV(SDNode *N);
215     SDOperand visitSREM(SDNode *N);
216     SDOperand visitUREM(SDNode *N);
217     SDOperand visitMULHU(SDNode *N);
218     SDOperand visitMULHS(SDNode *N);
219     SDOperand visitSMUL_LOHI(SDNode *N);
220     SDOperand visitUMUL_LOHI(SDNode *N);
221     SDOperand visitSDIVREM(SDNode *N);
222     SDOperand visitUDIVREM(SDNode *N);
223     SDOperand visitAND(SDNode *N);
224     SDOperand visitOR(SDNode *N);
225     SDOperand visitXOR(SDNode *N);
226     SDOperand SimplifyVBinOp(SDNode *N);
227     SDOperand visitSHL(SDNode *N);
228     SDOperand visitSRA(SDNode *N);
229     SDOperand visitSRL(SDNode *N);
230     SDOperand visitCTLZ(SDNode *N);
231     SDOperand visitCTTZ(SDNode *N);
232     SDOperand visitCTPOP(SDNode *N);
233     SDOperand visitSELECT(SDNode *N);
234     SDOperand visitSELECT_CC(SDNode *N);
235     SDOperand visitSETCC(SDNode *N);
236     SDOperand visitSIGN_EXTEND(SDNode *N);
237     SDOperand visitZERO_EXTEND(SDNode *N);
238     SDOperand visitANY_EXTEND(SDNode *N);
239     SDOperand visitSIGN_EXTEND_INREG(SDNode *N);
240     SDOperand visitTRUNCATE(SDNode *N);
241     SDOperand visitBIT_CONVERT(SDNode *N);
242     SDOperand visitFADD(SDNode *N);
243     SDOperand visitFSUB(SDNode *N);
244     SDOperand visitFMUL(SDNode *N);
245     SDOperand visitFDIV(SDNode *N);
246     SDOperand visitFREM(SDNode *N);
247     SDOperand visitFCOPYSIGN(SDNode *N);
248     SDOperand visitSINT_TO_FP(SDNode *N);
249     SDOperand visitUINT_TO_FP(SDNode *N);
250     SDOperand visitFP_TO_SINT(SDNode *N);
251     SDOperand visitFP_TO_UINT(SDNode *N);
252     SDOperand visitFP_ROUND(SDNode *N);
253     SDOperand visitFP_ROUND_INREG(SDNode *N);
254     SDOperand visitFP_EXTEND(SDNode *N);
255     SDOperand visitFNEG(SDNode *N);
256     SDOperand visitFABS(SDNode *N);
257     SDOperand visitBRCOND(SDNode *N);
258     SDOperand visitBR_CC(SDNode *N);
259     SDOperand visitLOAD(SDNode *N);
260     SDOperand visitSTORE(SDNode *N);
261     SDOperand visitINSERT_VECTOR_ELT(SDNode *N);
262     SDOperand visitEXTRACT_VECTOR_ELT(SDNode *N);
263     SDOperand visitBUILD_VECTOR(SDNode *N);
264     SDOperand visitCONCAT_VECTORS(SDNode *N);
265     SDOperand visitVECTOR_SHUFFLE(SDNode *N);
266
267     SDOperand XformToShuffleWithZero(SDNode *N);
268     SDOperand ReassociateOps(unsigned Opc, SDOperand LHS, SDOperand RHS);
269     
270     SDOperand visitShiftByConstant(SDNode *N, unsigned Amt);
271
272     bool SimplifySelectOps(SDNode *SELECT, SDOperand LHS, SDOperand RHS);
273     SDOperand SimplifyBinOpWithSameOpcodeHands(SDNode *N);
274     SDOperand SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2);
275     SDOperand SimplifySelectCC(SDOperand N0, SDOperand N1, SDOperand N2, 
276                                SDOperand N3, ISD::CondCode CC, 
277                                bool NotExtCompare = false);
278     SDOperand SimplifySetCC(MVT::ValueType VT, SDOperand N0, SDOperand N1,
279                             ISD::CondCode Cond, bool foldBooleans = true);
280     SDOperand SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp, 
281                                          unsigned HiOp);
282     SDOperand ConstantFoldBIT_CONVERTofBUILD_VECTOR(SDNode *, MVT::ValueType);
283     SDOperand BuildSDIV(SDNode *N);
284     SDOperand BuildUDIV(SDNode *N);
285     SDNode *MatchRotate(SDOperand LHS, SDOperand RHS);
286     SDOperand ReduceLoadWidth(SDNode *N);
287     
288     SDOperand GetDemandedBits(SDOperand V, uint64_t Mask);
289     
290     /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
291     /// looking for aliasing nodes and adding them to the Aliases vector.
292     void GatherAllAliases(SDNode *N, SDOperand OriginalChain,
293                           SmallVector<SDOperand, 8> &Aliases);
294
295     /// isAlias - Return true if there is any possibility that the two addresses
296     /// overlap.
297     bool isAlias(SDOperand Ptr1, int64_t Size1,
298                  const Value *SrcValue1, int SrcValueOffset1,
299                  SDOperand Ptr2, int64_t Size2,
300                  const Value *SrcValue2, int SrcValueOffset2);
301                  
302     /// FindAliasInfo - Extracts the relevant alias information from the memory
303     /// node.  Returns true if the operand was a load.
304     bool FindAliasInfo(SDNode *N,
305                        SDOperand &Ptr, int64_t &Size,
306                        const Value *&SrcValue, int &SrcValueOffset);
307                        
308     /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
309     /// looking for a better chain (aliasing node.)
310     SDOperand FindBetterChain(SDNode *N, SDOperand Chain);
311     
312 public:
313     DAGCombiner(SelectionDAG &D, AliasAnalysis &A)
314       : DAG(D),
315         TLI(D.getTargetLoweringInfo()),
316         AfterLegalize(false),
317         AA(A) {}
318     
319     /// Run - runs the dag combiner on all nodes in the work list
320     void Run(bool RunningAfterLegalize); 
321   };
322 }
323
324 //===----------------------------------------------------------------------===//
325 //  TargetLowering::DAGCombinerInfo implementation
326 //===----------------------------------------------------------------------===//
327
328 void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
329   ((DAGCombiner*)DC)->AddToWorkList(N);
330 }
331
332 SDOperand TargetLowering::DAGCombinerInfo::
333 CombineTo(SDNode *N, const std::vector<SDOperand> &To) {
334   return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size());
335 }
336
337 SDOperand TargetLowering::DAGCombinerInfo::
338 CombineTo(SDNode *N, SDOperand Res) {
339   return ((DAGCombiner*)DC)->CombineTo(N, Res);
340 }
341
342
343 SDOperand TargetLowering::DAGCombinerInfo::
344 CombineTo(SDNode *N, SDOperand Res0, SDOperand Res1) {
345   return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1);
346 }
347
348
349 //===----------------------------------------------------------------------===//
350 // Helper Functions
351 //===----------------------------------------------------------------------===//
352
353 /// isNegatibleForFree - Return 1 if we can compute the negated form of the
354 /// specified expression for the same cost as the expression itself, or 2 if we
355 /// can compute the negated form more cheaply than the expression itself.
356 static char isNegatibleForFree(SDOperand Op, unsigned Depth = 0) {
357   // No compile time optimizations on this type.
358   if (Op.getValueType() == MVT::ppcf128)
359     return 0;
360
361   // fneg is removable even if it has multiple uses.
362   if (Op.getOpcode() == ISD::FNEG) return 2;
363   
364   // Don't allow anything with multiple uses.
365   if (!Op.hasOneUse()) return 0;
366   
367   // Don't recurse exponentially.
368   if (Depth > 6) return 0;
369   
370   switch (Op.getOpcode()) {
371   default: return false;
372   case ISD::ConstantFP:
373     return 1;
374   case ISD::FADD:
375     // FIXME: determine better conditions for this xform.
376     if (!UnsafeFPMath) return 0;
377     
378     // -(A+B) -> -A - B
379     if (char V = isNegatibleForFree(Op.getOperand(0), Depth+1))
380       return V;
381     // -(A+B) -> -B - A
382     return isNegatibleForFree(Op.getOperand(1), Depth+1);
383   case ISD::FSUB:
384     // We can't turn -(A-B) into B-A when we honor signed zeros. 
385     if (!UnsafeFPMath) return 0;
386     
387     // -(A-B) -> B-A
388     return 1;
389     
390   case ISD::FMUL:
391   case ISD::FDIV:
392     if (HonorSignDependentRoundingFPMath()) return 0;
393     
394     // -(X*Y) -> (-X * Y) or (X*-Y)
395     if (char V = isNegatibleForFree(Op.getOperand(0), Depth+1))
396       return V;
397       
398     return isNegatibleForFree(Op.getOperand(1), Depth+1);
399     
400   case ISD::FP_EXTEND:
401   case ISD::FP_ROUND:
402   case ISD::FSIN:
403     return isNegatibleForFree(Op.getOperand(0), Depth+1);
404   }
405 }
406
407 /// GetNegatedExpression - If isNegatibleForFree returns true, this function
408 /// returns the newly negated expression.
409 static SDOperand GetNegatedExpression(SDOperand Op, SelectionDAG &DAG,
410                                       unsigned Depth = 0) {
411   // fneg is removable even if it has multiple uses.
412   if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
413   
414   // Don't allow anything with multiple uses.
415   assert(Op.hasOneUse() && "Unknown reuse!");
416   
417   assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
418   switch (Op.getOpcode()) {
419   default: assert(0 && "Unknown code");
420   case ISD::ConstantFP: {
421     APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
422     V.changeSign();
423     return DAG.getConstantFP(V, Op.getValueType());
424   }
425   case ISD::FADD:
426     // FIXME: determine better conditions for this xform.
427     assert(UnsafeFPMath);
428     
429     // -(A+B) -> -A - B
430     if (isNegatibleForFree(Op.getOperand(0), Depth+1))
431       return DAG.getNode(ISD::FSUB, Op.getValueType(),
432                          GetNegatedExpression(Op.getOperand(0), DAG, Depth+1),
433                          Op.getOperand(1));
434     // -(A+B) -> -B - A
435     return DAG.getNode(ISD::FSUB, Op.getValueType(),
436                        GetNegatedExpression(Op.getOperand(1), DAG, Depth+1),
437                        Op.getOperand(0));
438   case ISD::FSUB:
439     // We can't turn -(A-B) into B-A when we honor signed zeros. 
440     assert(UnsafeFPMath);
441
442     // -(0-B) -> B
443     if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
444       if (N0CFP->getValueAPF().isZero())
445         return Op.getOperand(1);
446     
447     // -(A-B) -> B-A
448     return DAG.getNode(ISD::FSUB, Op.getValueType(), Op.getOperand(1),
449                        Op.getOperand(0));
450     
451   case ISD::FMUL:
452   case ISD::FDIV:
453     assert(!HonorSignDependentRoundingFPMath());
454     
455     // -(X*Y) -> -X * Y
456     if (isNegatibleForFree(Op.getOperand(0), Depth+1))
457       return DAG.getNode(Op.getOpcode(), Op.getValueType(),
458                          GetNegatedExpression(Op.getOperand(0), DAG, Depth+1),
459                          Op.getOperand(1));
460       
461     // -(X*Y) -> X * -Y
462     return DAG.getNode(Op.getOpcode(), Op.getValueType(),
463                        Op.getOperand(0),
464                        GetNegatedExpression(Op.getOperand(1), DAG, Depth+1));
465     
466   case ISD::FP_EXTEND:
467   case ISD::FSIN:
468     return DAG.getNode(Op.getOpcode(), Op.getValueType(),
469                        GetNegatedExpression(Op.getOperand(0), DAG, Depth+1));
470   case ISD::FP_ROUND:
471       return DAG.getNode(ISD::FP_ROUND, Op.getValueType(),
472                          GetNegatedExpression(Op.getOperand(0), DAG, Depth+1),
473                          Op.getOperand(1));
474   }
475 }
476
477
478 // isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
479 // that selects between the values 1 and 0, making it equivalent to a setcc.
480 // Also, set the incoming LHS, RHS, and CC references to the appropriate 
481 // nodes based on the type of node we are checking.  This simplifies life a
482 // bit for the callers.
483 static bool isSetCCEquivalent(SDOperand N, SDOperand &LHS, SDOperand &RHS,
484                               SDOperand &CC) {
485   if (N.getOpcode() == ISD::SETCC) {
486     LHS = N.getOperand(0);
487     RHS = N.getOperand(1);
488     CC  = N.getOperand(2);
489     return true;
490   }
491   if (N.getOpcode() == ISD::SELECT_CC && 
492       N.getOperand(2).getOpcode() == ISD::Constant &&
493       N.getOperand(3).getOpcode() == ISD::Constant &&
494       cast<ConstantSDNode>(N.getOperand(2))->getValue() == 1 &&
495       cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
496     LHS = N.getOperand(0);
497     RHS = N.getOperand(1);
498     CC  = N.getOperand(4);
499     return true;
500   }
501   return false;
502 }
503
504 // isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
505 // one use.  If this is true, it allows the users to invert the operation for
506 // free when it is profitable to do so.
507 static bool isOneUseSetCC(SDOperand N) {
508   SDOperand N0, N1, N2;
509   if (isSetCCEquivalent(N, N0, N1, N2) && N.Val->hasOneUse())
510     return true;
511   return false;
512 }
513
514 SDOperand DAGCombiner::ReassociateOps(unsigned Opc, SDOperand N0, SDOperand N1){
515   MVT::ValueType VT = N0.getValueType();
516   // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
517   // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
518   if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
519     if (isa<ConstantSDNode>(N1)) {
520       SDOperand OpNode = DAG.getNode(Opc, VT, N0.getOperand(1), N1);
521       AddToWorkList(OpNode.Val);
522       return DAG.getNode(Opc, VT, OpNode, N0.getOperand(0));
523     } else if (N0.hasOneUse()) {
524       SDOperand OpNode = DAG.getNode(Opc, VT, N0.getOperand(0), N1);
525       AddToWorkList(OpNode.Val);
526       return DAG.getNode(Opc, VT, OpNode, N0.getOperand(1));
527     }
528   }
529   // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
530   // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
531   if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
532     if (isa<ConstantSDNode>(N0)) {
533       SDOperand OpNode = DAG.getNode(Opc, VT, N1.getOperand(1), N0);
534       AddToWorkList(OpNode.Val);
535       return DAG.getNode(Opc, VT, OpNode, N1.getOperand(0));
536     } else if (N1.hasOneUse()) {
537       SDOperand OpNode = DAG.getNode(Opc, VT, N1.getOperand(0), N0);
538       AddToWorkList(OpNode.Val);
539       return DAG.getNode(Opc, VT, OpNode, N1.getOperand(1));
540     }
541   }
542   return SDOperand();
543 }
544
545 //===----------------------------------------------------------------------===//
546 //  Main DAG Combiner implementation
547 //===----------------------------------------------------------------------===//
548
549 void DAGCombiner::Run(bool RunningAfterLegalize) {
550   // set the instance variable, so that the various visit routines may use it.
551   AfterLegalize = RunningAfterLegalize;
552
553   // Add all the dag nodes to the worklist.
554   for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
555        E = DAG.allnodes_end(); I != E; ++I)
556     WorkList.push_back(I);
557   
558   // Create a dummy node (which is not added to allnodes), that adds a reference
559   // to the root node, preventing it from being deleted, and tracking any
560   // changes of the root.
561   HandleSDNode Dummy(DAG.getRoot());
562   
563   // The root of the dag may dangle to deleted nodes until the dag combiner is
564   // done.  Set it to null to avoid confusion.
565   DAG.setRoot(SDOperand());
566   
567   // while the worklist isn't empty, inspect the node on the end of it and
568   // try and combine it.
569   while (!WorkList.empty()) {
570     SDNode *N = WorkList.back();
571     WorkList.pop_back();
572     
573     // If N has no uses, it is dead.  Make sure to revisit all N's operands once
574     // N is deleted from the DAG, since they too may now be dead or may have a
575     // reduced number of uses, allowing other xforms.
576     if (N->use_empty() && N != &Dummy) {
577       for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
578         AddToWorkList(N->getOperand(i).Val);
579       
580       DAG.DeleteNode(N);
581       continue;
582     }
583     
584     SDOperand RV = combine(N);
585     
586     if (RV.Val == 0)
587       continue;
588     
589     ++NodesCombined;
590     
591     // If we get back the same node we passed in, rather than a new node or
592     // zero, we know that the node must have defined multiple values and
593     // CombineTo was used.  Since CombineTo takes care of the worklist 
594     // mechanics for us, we have no work to do in this case.
595     if (RV.Val == N)
596       continue;
597     
598     assert(N->getOpcode() != ISD::DELETED_NODE &&
599            RV.Val->getOpcode() != ISD::DELETED_NODE &&
600            "Node was deleted but visit returned new node!");
601
602     DOUT << "\nReplacing.3 "; DEBUG(N->dump(&DAG));
603     DOUT << "\nWith: "; DEBUG(RV.Val->dump(&DAG));
604     DOUT << '\n';
605     std::vector<SDNode*> NowDead;
606     if (N->getNumValues() == RV.Val->getNumValues())
607       DAG.ReplaceAllUsesWith(N, RV.Val, &NowDead);
608     else {
609       assert(N->getValueType(0) == RV.getValueType() &&
610              N->getNumValues() == 1 && "Type mismatch");
611       SDOperand OpV = RV;
612       DAG.ReplaceAllUsesWith(N, &OpV, &NowDead);
613     }
614       
615     // Push the new node and any users onto the worklist
616     AddToWorkList(RV.Val);
617     AddUsersToWorkList(RV.Val);
618     
619     // Add any uses of the old node to the worklist in case this node is the
620     // last one that uses them.  They may become dead after this node is
621     // deleted.
622     for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
623       AddToWorkList(N->getOperand(i).Val);
624       
625     // Nodes can be reintroduced into the worklist.  Make sure we do not
626     // process a node that has been replaced.
627     removeFromWorkList(N);
628     for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
629       removeFromWorkList(NowDead[i]);
630     
631     // Finally, since the node is now dead, remove it from the graph.
632     DAG.DeleteNode(N);
633   }
634   
635   // If the root changed (e.g. it was a dead load, update the root).
636   DAG.setRoot(Dummy.getValue());
637 }
638
639 SDOperand DAGCombiner::visit(SDNode *N) {
640   switch(N->getOpcode()) {
641   default: break;
642   case ISD::TokenFactor:        return visitTokenFactor(N);
643   case ISD::ADD:                return visitADD(N);
644   case ISD::SUB:                return visitSUB(N);
645   case ISD::ADDC:               return visitADDC(N);
646   case ISD::ADDE:               return visitADDE(N);
647   case ISD::MUL:                return visitMUL(N);
648   case ISD::SDIV:               return visitSDIV(N);
649   case ISD::UDIV:               return visitUDIV(N);
650   case ISD::SREM:               return visitSREM(N);
651   case ISD::UREM:               return visitUREM(N);
652   case ISD::MULHU:              return visitMULHU(N);
653   case ISD::MULHS:              return visitMULHS(N);
654   case ISD::SMUL_LOHI:          return visitSMUL_LOHI(N);
655   case ISD::UMUL_LOHI:          return visitUMUL_LOHI(N);
656   case ISD::SDIVREM:            return visitSDIVREM(N);
657   case ISD::UDIVREM:            return visitUDIVREM(N);
658   case ISD::AND:                return visitAND(N);
659   case ISD::OR:                 return visitOR(N);
660   case ISD::XOR:                return visitXOR(N);
661   case ISD::SHL:                return visitSHL(N);
662   case ISD::SRA:                return visitSRA(N);
663   case ISD::SRL:                return visitSRL(N);
664   case ISD::CTLZ:               return visitCTLZ(N);
665   case ISD::CTTZ:               return visitCTTZ(N);
666   case ISD::CTPOP:              return visitCTPOP(N);
667   case ISD::SELECT:             return visitSELECT(N);
668   case ISD::SELECT_CC:          return visitSELECT_CC(N);
669   case ISD::SETCC:              return visitSETCC(N);
670   case ISD::SIGN_EXTEND:        return visitSIGN_EXTEND(N);
671   case ISD::ZERO_EXTEND:        return visitZERO_EXTEND(N);
672   case ISD::ANY_EXTEND:         return visitANY_EXTEND(N);
673   case ISD::SIGN_EXTEND_INREG:  return visitSIGN_EXTEND_INREG(N);
674   case ISD::TRUNCATE:           return visitTRUNCATE(N);
675   case ISD::BIT_CONVERT:        return visitBIT_CONVERT(N);
676   case ISD::FADD:               return visitFADD(N);
677   case ISD::FSUB:               return visitFSUB(N);
678   case ISD::FMUL:               return visitFMUL(N);
679   case ISD::FDIV:               return visitFDIV(N);
680   case ISD::FREM:               return visitFREM(N);
681   case ISD::FCOPYSIGN:          return visitFCOPYSIGN(N);
682   case ISD::SINT_TO_FP:         return visitSINT_TO_FP(N);
683   case ISD::UINT_TO_FP:         return visitUINT_TO_FP(N);
684   case ISD::FP_TO_SINT:         return visitFP_TO_SINT(N);
685   case ISD::FP_TO_UINT:         return visitFP_TO_UINT(N);
686   case ISD::FP_ROUND:           return visitFP_ROUND(N);
687   case ISD::FP_ROUND_INREG:     return visitFP_ROUND_INREG(N);
688   case ISD::FP_EXTEND:          return visitFP_EXTEND(N);
689   case ISD::FNEG:               return visitFNEG(N);
690   case ISD::FABS:               return visitFABS(N);
691   case ISD::BRCOND:             return visitBRCOND(N);
692   case ISD::BR_CC:              return visitBR_CC(N);
693   case ISD::LOAD:               return visitLOAD(N);
694   case ISD::STORE:              return visitSTORE(N);
695   case ISD::INSERT_VECTOR_ELT:  return visitINSERT_VECTOR_ELT(N);
696   case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
697   case ISD::BUILD_VECTOR:       return visitBUILD_VECTOR(N);
698   case ISD::CONCAT_VECTORS:     return visitCONCAT_VECTORS(N);
699   case ISD::VECTOR_SHUFFLE:     return visitVECTOR_SHUFFLE(N);
700   }
701   return SDOperand();
702 }
703
704 SDOperand DAGCombiner::combine(SDNode *N) {
705
706   SDOperand RV = visit(N);
707
708   // If nothing happened, try a target-specific DAG combine.
709   if (RV.Val == 0) {
710     assert(N->getOpcode() != ISD::DELETED_NODE &&
711            "Node was deleted but visit returned NULL!");
712
713     if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
714         TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
715
716       // Expose the DAG combiner to the target combiner impls.
717       TargetLowering::DAGCombinerInfo 
718         DagCombineInfo(DAG, !AfterLegalize, false, this);
719
720       RV = TLI.PerformDAGCombine(N, DagCombineInfo);
721     }
722   }
723
724   return RV;
725
726
727 /// getInputChainForNode - Given a node, return its input chain if it has one,
728 /// otherwise return a null sd operand.
729 static SDOperand getInputChainForNode(SDNode *N) {
730   if (unsigned NumOps = N->getNumOperands()) {
731     if (N->getOperand(0).getValueType() == MVT::Other)
732       return N->getOperand(0);
733     else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
734       return N->getOperand(NumOps-1);
735     for (unsigned i = 1; i < NumOps-1; ++i)
736       if (N->getOperand(i).getValueType() == MVT::Other)
737         return N->getOperand(i);
738   }
739   return SDOperand(0, 0);
740 }
741
742 SDOperand DAGCombiner::visitTokenFactor(SDNode *N) {
743   // If N has two operands, where one has an input chain equal to the other,
744   // the 'other' chain is redundant.
745   if (N->getNumOperands() == 2) {
746     if (getInputChainForNode(N->getOperand(0).Val) == N->getOperand(1))
747       return N->getOperand(0);
748     if (getInputChainForNode(N->getOperand(1).Val) == N->getOperand(0))
749       return N->getOperand(1);
750   }
751   
752   SmallVector<SDNode *, 8> TFs;     // List of token factors to visit.
753   SmallVector<SDOperand, 8> Ops;    // Ops for replacing token factor.
754   SmallPtrSet<SDNode*, 16> SeenOps; 
755   bool Changed = false;             // If we should replace this token factor.
756   
757   // Start out with this token factor.
758   TFs.push_back(N);
759   
760   // Iterate through token factors.  The TFs grows when new token factors are
761   // encountered.
762   for (unsigned i = 0; i < TFs.size(); ++i) {
763     SDNode *TF = TFs[i];
764     
765     // Check each of the operands.
766     for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
767       SDOperand Op = TF->getOperand(i);
768       
769       switch (Op.getOpcode()) {
770       case ISD::EntryToken:
771         // Entry tokens don't need to be added to the list. They are
772         // rededundant.
773         Changed = true;
774         break;
775         
776       case ISD::TokenFactor:
777         if ((CombinerAA || Op.hasOneUse()) &&
778             std::find(TFs.begin(), TFs.end(), Op.Val) == TFs.end()) {
779           // Queue up for processing.
780           TFs.push_back(Op.Val);
781           // Clean up in case the token factor is removed.
782           AddToWorkList(Op.Val);
783           Changed = true;
784           break;
785         }
786         // Fall thru
787         
788       default:
789         // Only add if it isn't already in the list.
790         if (SeenOps.insert(Op.Val))
791           Ops.push_back(Op);
792         else
793           Changed = true;
794         break;
795       }
796     }
797   }
798
799   SDOperand Result;
800
801   // If we've change things around then replace token factor.
802   if (Changed) {
803     if (Ops.size() == 0) {
804       // The entry token is the only possible outcome.
805       Result = DAG.getEntryNode();
806     } else {
807       // New and improved token factor.
808       Result = DAG.getNode(ISD::TokenFactor, MVT::Other, &Ops[0], Ops.size());
809     }
810     
811     // Don't add users to work list.
812     return CombineTo(N, Result, false);
813   }
814   
815   return Result;
816 }
817
818 static
819 SDOperand combineShlAddConstant(SDOperand N0, SDOperand N1, SelectionDAG &DAG) {
820   MVT::ValueType VT = N0.getValueType();
821   SDOperand N00 = N0.getOperand(0);
822   SDOperand N01 = N0.getOperand(1);
823   ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
824   if (N01C && N00.getOpcode() == ISD::ADD && N00.Val->hasOneUse() &&
825       isa<ConstantSDNode>(N00.getOperand(1))) {
826     N0 = DAG.getNode(ISD::ADD, VT,
827                      DAG.getNode(ISD::SHL, VT, N00.getOperand(0), N01),
828                      DAG.getNode(ISD::SHL, VT, N00.getOperand(1), N01));
829     return DAG.getNode(ISD::ADD, VT, N0, N1);
830   }
831   return SDOperand();
832 }
833
834 static
835 SDOperand combineSelectAndUse(SDNode *N, SDOperand Slct, SDOperand OtherOp,
836                               SelectionDAG &DAG) {
837   MVT::ValueType VT = N->getValueType(0);
838   unsigned Opc = N->getOpcode();
839   bool isSlctCC = Slct.getOpcode() == ISD::SELECT_CC;
840   SDOperand LHS = isSlctCC ? Slct.getOperand(2) : Slct.getOperand(1);
841   SDOperand RHS = isSlctCC ? Slct.getOperand(3) : Slct.getOperand(2);
842   ISD::CondCode CC = ISD::SETCC_INVALID;
843   if (isSlctCC)
844     CC = cast<CondCodeSDNode>(Slct.getOperand(4))->get();
845   else {
846     SDOperand CCOp = Slct.getOperand(0);
847     if (CCOp.getOpcode() == ISD::SETCC)
848       CC = cast<CondCodeSDNode>(CCOp.getOperand(2))->get();
849   }
850
851   bool DoXform = false;
852   bool InvCC = false;
853   assert ((Opc == ISD::ADD || (Opc == ISD::SUB && Slct == N->getOperand(1))) &&
854           "Bad input!");
855   if (LHS.getOpcode() == ISD::Constant &&
856       cast<ConstantSDNode>(LHS)->isNullValue())
857     DoXform = true;
858   else if (CC != ISD::SETCC_INVALID &&
859            RHS.getOpcode() == ISD::Constant &&
860            cast<ConstantSDNode>(RHS)->isNullValue()) {
861     std::swap(LHS, RHS);
862     SDOperand Op0 = Slct.getOperand(0);
863     bool isInt = MVT::isInteger(isSlctCC ? Op0.getValueType()
864                                 : Op0.getOperand(0).getValueType());
865     CC = ISD::getSetCCInverse(CC, isInt);
866     DoXform = true;
867     InvCC = true;
868   }
869
870   if (DoXform) {
871     SDOperand Result = DAG.getNode(Opc, VT, OtherOp, RHS);
872     if (isSlctCC)
873       return DAG.getSelectCC(OtherOp, Result,
874                              Slct.getOperand(0), Slct.getOperand(1), CC);
875     SDOperand CCOp = Slct.getOperand(0);
876     if (InvCC)
877       CCOp = DAG.getSetCC(CCOp.getValueType(), CCOp.getOperand(0),
878                           CCOp.getOperand(1), CC);
879     return DAG.getNode(ISD::SELECT, VT, CCOp, OtherOp, Result);
880   }
881   return SDOperand();
882 }
883
884 SDOperand DAGCombiner::visitADD(SDNode *N) {
885   SDOperand N0 = N->getOperand(0);
886   SDOperand N1 = N->getOperand(1);
887   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
888   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
889   MVT::ValueType VT = N0.getValueType();
890
891   // fold vector ops
892   if (MVT::isVector(VT)) {
893     SDOperand FoldedVOp = SimplifyVBinOp(N);
894     if (FoldedVOp.Val) return FoldedVOp;
895   }
896   
897   // fold (add x, undef) -> undef
898   if (N0.getOpcode() == ISD::UNDEF)
899     return N0;
900   if (N1.getOpcode() == ISD::UNDEF)
901     return N1;
902   // fold (add c1, c2) -> c1+c2
903   if (N0C && N1C)
904     return DAG.getNode(ISD::ADD, VT, N0, N1);
905   // canonicalize constant to RHS
906   if (N0C && !N1C)
907     return DAG.getNode(ISD::ADD, VT, N1, N0);
908   // fold (add x, 0) -> x
909   if (N1C && N1C->isNullValue())
910     return N0;
911   // fold ((c1-A)+c2) -> (c1+c2)-A
912   if (N1C && N0.getOpcode() == ISD::SUB)
913     if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
914       return DAG.getNode(ISD::SUB, VT,
915                          DAG.getConstant(N1C->getValue()+N0C->getValue(), VT),
916                          N0.getOperand(1));
917   // reassociate add
918   SDOperand RADD = ReassociateOps(ISD::ADD, N0, N1);
919   if (RADD.Val != 0)
920     return RADD;
921   // fold ((0-A) + B) -> B-A
922   if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
923       cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
924     return DAG.getNode(ISD::SUB, VT, N1, N0.getOperand(1));
925   // fold (A + (0-B)) -> A-B
926   if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
927       cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
928     return DAG.getNode(ISD::SUB, VT, N0, N1.getOperand(1));
929   // fold (A+(B-A)) -> B
930   if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
931     return N1.getOperand(0);
932
933   if (!MVT::isVector(VT) && SimplifyDemandedBits(SDOperand(N, 0)))
934     return SDOperand(N, 0);
935   
936   // fold (a+b) -> (a|b) iff a and b share no bits.
937   if (MVT::isInteger(VT) && !MVT::isVector(VT)) {
938     uint64_t LHSZero, LHSOne;
939     uint64_t RHSZero, RHSOne;
940     uint64_t Mask = MVT::getIntVTBitMask(VT);
941     DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
942     if (LHSZero) {
943       DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
944       
945       // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
946       // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
947       if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
948           (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
949         return DAG.getNode(ISD::OR, VT, N0, N1);
950     }
951   }
952
953   // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
954   if (N0.getOpcode() == ISD::SHL && N0.Val->hasOneUse()) {
955     SDOperand Result = combineShlAddConstant(N0, N1, DAG);
956     if (Result.Val) return Result;
957   }
958   if (N1.getOpcode() == ISD::SHL && N1.Val->hasOneUse()) {
959     SDOperand Result = combineShlAddConstant(N1, N0, DAG);
960     if (Result.Val) return Result;
961   }
962
963   // fold (add (select cc, 0, c), x) -> (select cc, x, (add, x, c))
964   if (N0.getOpcode() == ISD::SELECT && N0.Val->hasOneUse()) {
965     SDOperand Result = combineSelectAndUse(N, N0, N1, DAG);
966     if (Result.Val) return Result;
967   }
968   if (N1.getOpcode() == ISD::SELECT && N1.Val->hasOneUse()) {
969     SDOperand Result = combineSelectAndUse(N, N1, N0, DAG);
970     if (Result.Val) return Result;
971   }
972
973   return SDOperand();
974 }
975
976 SDOperand DAGCombiner::visitADDC(SDNode *N) {
977   SDOperand N0 = N->getOperand(0);
978   SDOperand N1 = N->getOperand(1);
979   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
980   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
981   MVT::ValueType VT = N0.getValueType();
982   
983   // If the flag result is dead, turn this into an ADD.
984   if (N->hasNUsesOfValue(0, 1))
985     return CombineTo(N, DAG.getNode(ISD::ADD, VT, N1, N0),
986                      DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
987   
988   // canonicalize constant to RHS.
989   if (N0C && !N1C) {
990     SDOperand Ops[] = { N1, N0 };
991     return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
992   }
993   
994   // fold (addc x, 0) -> x + no carry out
995   if (N1C && N1C->isNullValue())
996     return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
997   
998   // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
999   uint64_t LHSZero, LHSOne;
1000   uint64_t RHSZero, RHSOne;
1001   uint64_t Mask = MVT::getIntVTBitMask(VT);
1002   DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
1003   if (LHSZero) {
1004     DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
1005     
1006     // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1007     // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1008     if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
1009         (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
1010       return CombineTo(N, DAG.getNode(ISD::OR, VT, N0, N1),
1011                        DAG.getNode(ISD::CARRY_FALSE, MVT::Flag));
1012   }
1013   
1014   return SDOperand();
1015 }
1016
1017 SDOperand DAGCombiner::visitADDE(SDNode *N) {
1018   SDOperand N0 = N->getOperand(0);
1019   SDOperand N1 = N->getOperand(1);
1020   SDOperand CarryIn = N->getOperand(2);
1021   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1022   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1023   //MVT::ValueType VT = N0.getValueType();
1024   
1025   // canonicalize constant to RHS
1026   if (N0C && !N1C) {
1027     SDOperand Ops[] = { N1, N0, CarryIn };
1028     return DAG.getNode(ISD::ADDE, N->getVTList(), Ops, 3);
1029   }
1030   
1031   // fold (adde x, y, false) -> (addc x, y)
1032   if (CarryIn.getOpcode() == ISD::CARRY_FALSE) {
1033     SDOperand Ops[] = { N1, N0 };
1034     return DAG.getNode(ISD::ADDC, N->getVTList(), Ops, 2);
1035   }
1036   
1037   return SDOperand();
1038 }
1039
1040
1041
1042 SDOperand DAGCombiner::visitSUB(SDNode *N) {
1043   SDOperand N0 = N->getOperand(0);
1044   SDOperand N1 = N->getOperand(1);
1045   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1046   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1047   MVT::ValueType VT = N0.getValueType();
1048   
1049   // fold vector ops
1050   if (MVT::isVector(VT)) {
1051     SDOperand FoldedVOp = SimplifyVBinOp(N);
1052     if (FoldedVOp.Val) return FoldedVOp;
1053   }
1054   
1055   // fold (sub x, x) -> 0
1056   if (N0 == N1)
1057     return DAG.getConstant(0, N->getValueType(0));
1058   // fold (sub c1, c2) -> c1-c2
1059   if (N0C && N1C)
1060     return DAG.getNode(ISD::SUB, VT, N0, N1);
1061   // fold (sub x, c) -> (add x, -c)
1062   if (N1C)
1063     return DAG.getNode(ISD::ADD, VT, N0, DAG.getConstant(-N1C->getValue(), VT));
1064   // fold (A+B)-A -> B
1065   if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
1066     return N0.getOperand(1);
1067   // fold (A+B)-B -> A
1068   if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
1069     return N0.getOperand(0);
1070   // fold (sub x, (select cc, 0, c)) -> (select cc, x, (sub, x, c))
1071   if (N1.getOpcode() == ISD::SELECT && N1.Val->hasOneUse()) {
1072     SDOperand Result = combineSelectAndUse(N, N1, N0, DAG);
1073     if (Result.Val) return Result;
1074   }
1075   // If either operand of a sub is undef, the result is undef
1076   if (N0.getOpcode() == ISD::UNDEF)
1077     return N0;
1078   if (N1.getOpcode() == ISD::UNDEF)
1079     return N1;
1080
1081   return SDOperand();
1082 }
1083
1084 SDOperand DAGCombiner::visitMUL(SDNode *N) {
1085   SDOperand N0 = N->getOperand(0);
1086   SDOperand N1 = N->getOperand(1);
1087   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1088   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1089   MVT::ValueType VT = N0.getValueType();
1090   
1091   // fold vector ops
1092   if (MVT::isVector(VT)) {
1093     SDOperand FoldedVOp = SimplifyVBinOp(N);
1094     if (FoldedVOp.Val) return FoldedVOp;
1095   }
1096   
1097   // fold (mul x, undef) -> 0
1098   if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
1099     return DAG.getConstant(0, VT);
1100   // fold (mul c1, c2) -> c1*c2
1101   if (N0C && N1C)
1102     return DAG.getNode(ISD::MUL, VT, N0, N1);
1103   // canonicalize constant to RHS
1104   if (N0C && !N1C)
1105     return DAG.getNode(ISD::MUL, VT, N1, N0);
1106   // fold (mul x, 0) -> 0
1107   if (N1C && N1C->isNullValue())
1108     return N1;
1109   // fold (mul x, -1) -> 0-x
1110   if (N1C && N1C->isAllOnesValue())
1111     return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
1112   // fold (mul x, (1 << c)) -> x << c
1113   if (N1C && isPowerOf2_64(N1C->getValue()))
1114     return DAG.getNode(ISD::SHL, VT, N0,
1115                        DAG.getConstant(Log2_64(N1C->getValue()),
1116                                        TLI.getShiftAmountTy()));
1117   // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
1118   if (N1C && isPowerOf2_64(-N1C->getSignExtended())) {
1119     // FIXME: If the input is something that is easily negated (e.g. a 
1120     // single-use add), we should put the negate there.
1121     return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT),
1122                        DAG.getNode(ISD::SHL, VT, N0,
1123                             DAG.getConstant(Log2_64(-N1C->getSignExtended()),
1124                                             TLI.getShiftAmountTy())));
1125   }
1126
1127   // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
1128   if (N1C && N0.getOpcode() == ISD::SHL && 
1129       isa<ConstantSDNode>(N0.getOperand(1))) {
1130     SDOperand C3 = DAG.getNode(ISD::SHL, VT, N1, N0.getOperand(1));
1131     AddToWorkList(C3.Val);
1132     return DAG.getNode(ISD::MUL, VT, N0.getOperand(0), C3);
1133   }
1134   
1135   // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1136   // use.
1137   {
1138     SDOperand Sh(0,0), Y(0,0);
1139     // Check for both (mul (shl X, C), Y)  and  (mul Y, (shl X, C)).
1140     if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
1141         N0.Val->hasOneUse()) {
1142       Sh = N0; Y = N1;
1143     } else if (N1.getOpcode() == ISD::SHL && 
1144                isa<ConstantSDNode>(N1.getOperand(1)) && N1.Val->hasOneUse()) {
1145       Sh = N1; Y = N0;
1146     }
1147     if (Sh.Val) {
1148       SDOperand Mul = DAG.getNode(ISD::MUL, VT, Sh.getOperand(0), Y);
1149       return DAG.getNode(ISD::SHL, VT, Mul, Sh.getOperand(1));
1150     }
1151   }
1152   // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
1153   if (N1C && N0.getOpcode() == ISD::ADD && N0.Val->hasOneUse() && 
1154       isa<ConstantSDNode>(N0.getOperand(1))) {
1155     return DAG.getNode(ISD::ADD, VT, 
1156                        DAG.getNode(ISD::MUL, VT, N0.getOperand(0), N1),
1157                        DAG.getNode(ISD::MUL, VT, N0.getOperand(1), N1));
1158   }
1159   
1160   // reassociate mul
1161   SDOperand RMUL = ReassociateOps(ISD::MUL, N0, N1);
1162   if (RMUL.Val != 0)
1163     return RMUL;
1164
1165   return SDOperand();
1166 }
1167
1168 SDOperand DAGCombiner::visitSDIV(SDNode *N) {
1169   SDOperand N0 = N->getOperand(0);
1170   SDOperand N1 = N->getOperand(1);
1171   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1172   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1173   MVT::ValueType VT = N->getValueType(0);
1174
1175   // fold vector ops
1176   if (MVT::isVector(VT)) {
1177     SDOperand FoldedVOp = SimplifyVBinOp(N);
1178     if (FoldedVOp.Val) return FoldedVOp;
1179   }
1180   
1181   // fold (sdiv c1, c2) -> c1/c2
1182   if (N0C && N1C && !N1C->isNullValue())
1183     return DAG.getNode(ISD::SDIV, VT, N0, N1);
1184   // fold (sdiv X, 1) -> X
1185   if (N1C && N1C->getSignExtended() == 1LL)
1186     return N0;
1187   // fold (sdiv X, -1) -> 0-X
1188   if (N1C && N1C->isAllOnesValue())
1189     return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), N0);
1190   // If we know the sign bits of both operands are zero, strength reduce to a
1191   // udiv instead.  Handles (X&15) /s 4 -> X&15 >> 2
1192   uint64_t SignBit = 1ULL << (MVT::getSizeInBits(VT)-1);
1193   if (DAG.MaskedValueIsZero(N1, SignBit) &&
1194       DAG.MaskedValueIsZero(N0, SignBit))
1195     return DAG.getNode(ISD::UDIV, N1.getValueType(), N0, N1);
1196   // fold (sdiv X, pow2) -> simple ops after legalize
1197   if (N1C && N1C->getValue() && !TLI.isIntDivCheap() &&
1198       (isPowerOf2_64(N1C->getSignExtended()) || 
1199        isPowerOf2_64(-N1C->getSignExtended()))) {
1200     // If dividing by powers of two is cheap, then don't perform the following
1201     // fold.
1202     if (TLI.isPow2DivCheap())
1203       return SDOperand();
1204     int64_t pow2 = N1C->getSignExtended();
1205     int64_t abs2 = pow2 > 0 ? pow2 : -pow2;
1206     unsigned lg2 = Log2_64(abs2);
1207     // Splat the sign bit into the register
1208     SDOperand SGN = DAG.getNode(ISD::SRA, VT, N0,
1209                                 DAG.getConstant(MVT::getSizeInBits(VT)-1,
1210                                                 TLI.getShiftAmountTy()));
1211     AddToWorkList(SGN.Val);
1212     // Add (N0 < 0) ? abs2 - 1 : 0;
1213     SDOperand SRL = DAG.getNode(ISD::SRL, VT, SGN,
1214                                 DAG.getConstant(MVT::getSizeInBits(VT)-lg2,
1215                                                 TLI.getShiftAmountTy()));
1216     SDOperand ADD = DAG.getNode(ISD::ADD, VT, N0, SRL);
1217     AddToWorkList(SRL.Val);
1218     AddToWorkList(ADD.Val);    // Divide by pow2
1219     SDOperand SRA = DAG.getNode(ISD::SRA, VT, ADD,
1220                                 DAG.getConstant(lg2, TLI.getShiftAmountTy()));
1221     // If we're dividing by a positive value, we're done.  Otherwise, we must
1222     // negate the result.
1223     if (pow2 > 0)
1224       return SRA;
1225     AddToWorkList(SRA.Val);
1226     return DAG.getNode(ISD::SUB, VT, DAG.getConstant(0, VT), SRA);
1227   }
1228   // if integer divide is expensive and we satisfy the requirements, emit an
1229   // alternate sequence.
1230   if (N1C && (N1C->getSignExtended() < -1 || N1C->getSignExtended() > 1) && 
1231       !TLI.isIntDivCheap()) {
1232     SDOperand Op = BuildSDIV(N);
1233     if (Op.Val) return Op;
1234   }
1235
1236   // undef / X -> 0
1237   if (N0.getOpcode() == ISD::UNDEF)
1238     return DAG.getConstant(0, VT);
1239   // X / undef -> undef
1240   if (N1.getOpcode() == ISD::UNDEF)
1241     return N1;
1242
1243   return SDOperand();
1244 }
1245
1246 SDOperand DAGCombiner::visitUDIV(SDNode *N) {
1247   SDOperand N0 = N->getOperand(0);
1248   SDOperand N1 = N->getOperand(1);
1249   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.Val);
1250   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
1251   MVT::ValueType VT = N->getValueType(0);
1252   
1253   // fold vector ops
1254   if (MVT::isVector(VT)) {
1255     SDOperand FoldedVOp = SimplifyVBinOp(N);
1256     if (FoldedVOp.Val) return FoldedVOp;
1257   }
1258   
1259   // fold (udiv c1, c2) -> c1/c2
1260   if (N0C && N1C && !N1C->isNullValue())
1261     return DAG.getNode(ISD::UDIV, VT, N0, N1);
1262   // fold (udiv x, (1 << c)) -> x >>u c
1263   if (N1C && isPowerOf2_64(N1C->getValue()))
1264     return DAG.getNode(ISD::SRL, VT, N0, 
1265                        DAG.getConstant(Log2_64(N1C->getValue()),
1266                                        TLI.getShiftAmountTy()));
1267   // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
1268   if (N1.getOpcode() == ISD::SHL) {
1269     if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
1270       if (isPowerOf2_64(SHC->getValue())) {
1271         MVT::ValueType ADDVT = N1.getOperand(1).getValueType();
1272         SDOperand Add = DAG.getNode(ISD::ADD, ADDVT, N1.getOperand(1),
1273                                     DAG.getConstant(Log2_64(SHC->getValue()),
1274                                                     ADDVT));
1275         AddToWorkList(Add.Val);
1276         return DAG.getNode(ISD::SRL, VT, N0, Add);
1277       }
1278     }
1279   }
1280   // fold (udiv x, c) -> alternate
1281   if (N1C && N1C->getValue() && !TLI.isIntDivCheap()) {
1282     SDOperand Op = BuildUDIV(N);
1283     if (Op.Val) return Op;
1284   }
1285
1286   // undef / X -> 0
1287   if (N0.getOpcode() == ISD::UNDEF)
1288     return DAG.getConstant(0, VT);
1289   // X / undef -> undef
1290   if (N1.getOpcode() == ISD::UNDEF)
1291     return N1;
1292
1293   return SDOperand();
1294 }
1295
1296 SDOperand DAGCombiner::visitSREM(SDNode *N) {
1297   SDOperand N0 = N->getOperand(0);
1298   SDOperand N1 = N->getOperand(1);
1299   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1300   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1301   MVT::ValueType VT = N->getValueType(0);
1302   
1303   // fold (srem c1, c2) -> c1%c2
1304   if (N0C && N1C && !N1C->isNullValue())
1305     return DAG.getNode(ISD::SREM, VT, N0, N1);
1306   // If we know the sign bits of both operands are zero, strength reduce to a
1307   // urem instead.  Handles (X & 0x0FFFFFFF) %s 16 -> X&15
1308   uint64_t SignBit = 1ULL << (MVT::getSizeInBits(VT)-1);
1309   if (DAG.MaskedValueIsZero(N1, SignBit) &&
1310       DAG.MaskedValueIsZero(N0, SignBit))
1311     return DAG.getNode(ISD::UREM, VT, N0, N1);
1312   
1313   // If X/C can be simplified by the division-by-constant logic, lower
1314   // X%C to the equivalent of X-X/C*C.
1315   if (N1C && !N1C->isNullValue()) {
1316     SDOperand Div = DAG.getNode(ISD::SDIV, VT, N0, N1);
1317     AddToWorkList(Div.Val);
1318     SDOperand OptimizedDiv = combine(Div.Val);
1319     if (OptimizedDiv.Val && OptimizedDiv.Val != Div.Val) {
1320       SDOperand Mul = DAG.getNode(ISD::MUL, VT, OptimizedDiv, N1);
1321       SDOperand Sub = DAG.getNode(ISD::SUB, VT, N0, Mul);
1322       AddToWorkList(Mul.Val);
1323       return Sub;
1324     }
1325   }
1326   
1327   // undef % X -> 0
1328   if (N0.getOpcode() == ISD::UNDEF)
1329     return DAG.getConstant(0, VT);
1330   // X % undef -> undef
1331   if (N1.getOpcode() == ISD::UNDEF)
1332     return N1;
1333
1334   return SDOperand();
1335 }
1336
1337 SDOperand DAGCombiner::visitUREM(SDNode *N) {
1338   SDOperand N0 = N->getOperand(0);
1339   SDOperand N1 = N->getOperand(1);
1340   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1341   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1342   MVT::ValueType VT = N->getValueType(0);
1343   
1344   // fold (urem c1, c2) -> c1%c2
1345   if (N0C && N1C && !N1C->isNullValue())
1346     return DAG.getNode(ISD::UREM, VT, N0, N1);
1347   // fold (urem x, pow2) -> (and x, pow2-1)
1348   if (N1C && !N1C->isNullValue() && isPowerOf2_64(N1C->getValue()))
1349     return DAG.getNode(ISD::AND, VT, N0, DAG.getConstant(N1C->getValue()-1,VT));
1350   // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
1351   if (N1.getOpcode() == ISD::SHL) {
1352     if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
1353       if (isPowerOf2_64(SHC->getValue())) {
1354         SDOperand Add = DAG.getNode(ISD::ADD, VT, N1,DAG.getConstant(~0ULL,VT));
1355         AddToWorkList(Add.Val);
1356         return DAG.getNode(ISD::AND, VT, N0, Add);
1357       }
1358     }
1359   }
1360   
1361   // If X/C can be simplified by the division-by-constant logic, lower
1362   // X%C to the equivalent of X-X/C*C.
1363   if (N1C && !N1C->isNullValue()) {
1364     SDOperand Div = DAG.getNode(ISD::UDIV, VT, N0, N1);
1365     SDOperand OptimizedDiv = combine(Div.Val);
1366     if (OptimizedDiv.Val && OptimizedDiv.Val != Div.Val) {
1367       SDOperand Mul = DAG.getNode(ISD::MUL, VT, OptimizedDiv, N1);
1368       SDOperand Sub = DAG.getNode(ISD::SUB, VT, N0, Mul);
1369       AddToWorkList(Mul.Val);
1370       return Sub;
1371     }
1372   }
1373   
1374   // undef % X -> 0
1375   if (N0.getOpcode() == ISD::UNDEF)
1376     return DAG.getConstant(0, VT);
1377   // X % undef -> undef
1378   if (N1.getOpcode() == ISD::UNDEF)
1379     return N1;
1380
1381   return SDOperand();
1382 }
1383
1384 SDOperand DAGCombiner::visitMULHS(SDNode *N) {
1385   SDOperand N0 = N->getOperand(0);
1386   SDOperand N1 = N->getOperand(1);
1387   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1388   MVT::ValueType VT = N->getValueType(0);
1389   
1390   // fold (mulhs x, 0) -> 0
1391   if (N1C && N1C->isNullValue())
1392     return N1;
1393   // fold (mulhs x, 1) -> (sra x, size(x)-1)
1394   if (N1C && N1C->getValue() == 1)
1395     return DAG.getNode(ISD::SRA, N0.getValueType(), N0, 
1396                        DAG.getConstant(MVT::getSizeInBits(N0.getValueType())-1,
1397                                        TLI.getShiftAmountTy()));
1398   // fold (mulhs x, undef) -> 0
1399   if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
1400     return DAG.getConstant(0, VT);
1401
1402   return SDOperand();
1403 }
1404
1405 SDOperand DAGCombiner::visitMULHU(SDNode *N) {
1406   SDOperand N0 = N->getOperand(0);
1407   SDOperand N1 = N->getOperand(1);
1408   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1409   MVT::ValueType VT = N->getValueType(0);
1410   
1411   // fold (mulhu x, 0) -> 0
1412   if (N1C && N1C->isNullValue())
1413     return N1;
1414   // fold (mulhu x, 1) -> 0
1415   if (N1C && N1C->getValue() == 1)
1416     return DAG.getConstant(0, N0.getValueType());
1417   // fold (mulhu x, undef) -> 0
1418   if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
1419     return DAG.getConstant(0, VT);
1420
1421   return SDOperand();
1422 }
1423
1424 /// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
1425 /// compute two values. LoOp and HiOp give the opcodes for the two computations
1426 /// that are being performed. Return true if a simplification was made.
1427 ///
1428 SDOperand DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp, 
1429                                                   unsigned HiOp) {
1430   // If the high half is not needed, just compute the low half.
1431   bool HiExists = N->hasAnyUseOfValue(1);
1432   if (!HiExists &&
1433       (!AfterLegalize ||
1434        TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
1435     SDOperand Res = DAG.getNode(LoOp, N->getValueType(0), N->op_begin(),
1436                                 N->getNumOperands());
1437     return CombineTo(N, Res, Res);
1438   }
1439
1440   // If the low half is not needed, just compute the high half.
1441   bool LoExists = N->hasAnyUseOfValue(0);
1442   if (!LoExists &&
1443       (!AfterLegalize ||
1444        TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
1445     SDOperand Res = DAG.getNode(HiOp, N->getValueType(1), N->op_begin(),
1446                                 N->getNumOperands());
1447     return CombineTo(N, Res, Res);
1448   }
1449
1450   // If both halves are used, return as it is.
1451   if (LoExists && HiExists)
1452     return SDOperand();
1453
1454   // If the two computed results can be simplified separately, separate them.
1455   if (LoExists) {
1456     SDOperand Lo = DAG.getNode(LoOp, N->getValueType(0),
1457                                N->op_begin(), N->getNumOperands());
1458     AddToWorkList(Lo.Val);
1459     SDOperand LoOpt = combine(Lo.Val);
1460     if (LoOpt.Val && LoOpt.Val != Lo.Val &&
1461         TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType()))
1462       return CombineTo(N, LoOpt, LoOpt);
1463   }
1464
1465   if (HiExists) {
1466     SDOperand Hi = DAG.getNode(HiOp, N->getValueType(1),
1467                                N->op_begin(), N->getNumOperands());
1468     AddToWorkList(Hi.Val);
1469     SDOperand HiOpt = combine(Hi.Val);
1470     if (HiOpt.Val && HiOpt != Hi &&
1471         TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType()))
1472       return CombineTo(N, HiOpt, HiOpt);
1473   }
1474   return SDOperand();
1475 }
1476
1477 SDOperand DAGCombiner::visitSMUL_LOHI(SDNode *N) {
1478   SDOperand Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
1479   if (Res.Val) return Res;
1480
1481   return SDOperand();
1482 }
1483
1484 SDOperand DAGCombiner::visitUMUL_LOHI(SDNode *N) {
1485   SDOperand Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
1486   if (Res.Val) return Res;
1487
1488   return SDOperand();
1489 }
1490
1491 SDOperand DAGCombiner::visitSDIVREM(SDNode *N) {
1492   SDOperand Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
1493   if (Res.Val) return Res;
1494   
1495   return SDOperand();
1496 }
1497
1498 SDOperand DAGCombiner::visitUDIVREM(SDNode *N) {
1499   SDOperand Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
1500   if (Res.Val) return Res;
1501   
1502   return SDOperand();
1503 }
1504
1505 /// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
1506 /// two operands of the same opcode, try to simplify it.
1507 SDOperand DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
1508   SDOperand N0 = N->getOperand(0), N1 = N->getOperand(1);
1509   MVT::ValueType VT = N0.getValueType();
1510   assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
1511   
1512   // For each of OP in AND/OR/XOR:
1513   // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
1514   // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
1515   // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
1516   // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y))
1517   if ((N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND||
1518        N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::TRUNCATE) &&
1519       N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()) {
1520     SDOperand ORNode = DAG.getNode(N->getOpcode(), 
1521                                    N0.getOperand(0).getValueType(),
1522                                    N0.getOperand(0), N1.getOperand(0));
1523     AddToWorkList(ORNode.Val);
1524     return DAG.getNode(N0.getOpcode(), VT, ORNode);
1525   }
1526   
1527   // For each of OP in SHL/SRL/SRA/AND...
1528   //   fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
1529   //   fold (or  (OP x, z), (OP y, z)) -> (OP (or  x, y), z)
1530   //   fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
1531   if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
1532        N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
1533       N0.getOperand(1) == N1.getOperand(1)) {
1534     SDOperand ORNode = DAG.getNode(N->getOpcode(),
1535                                    N0.getOperand(0).getValueType(),
1536                                    N0.getOperand(0), N1.getOperand(0));
1537     AddToWorkList(ORNode.Val);
1538     return DAG.getNode(N0.getOpcode(), VT, ORNode, N0.getOperand(1));
1539   }
1540   
1541   return SDOperand();
1542 }
1543
1544 SDOperand DAGCombiner::visitAND(SDNode *N) {
1545   SDOperand N0 = N->getOperand(0);
1546   SDOperand N1 = N->getOperand(1);
1547   SDOperand LL, LR, RL, RR, CC0, CC1;
1548   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1549   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1550   MVT::ValueType VT = N1.getValueType();
1551   
1552   // fold vector ops
1553   if (MVT::isVector(VT)) {
1554     SDOperand FoldedVOp = SimplifyVBinOp(N);
1555     if (FoldedVOp.Val) return FoldedVOp;
1556   }
1557   
1558   // fold (and x, undef) -> 0
1559   if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
1560     return DAG.getConstant(0, VT);
1561   // fold (and c1, c2) -> c1&c2
1562   if (N0C && N1C)
1563     return DAG.getNode(ISD::AND, VT, N0, N1);
1564   // canonicalize constant to RHS
1565   if (N0C && !N1C)
1566     return DAG.getNode(ISD::AND, VT, N1, N0);
1567   // fold (and x, -1) -> x
1568   if (N1C && N1C->isAllOnesValue())
1569     return N0;
1570   // if (and x, c) is known to be zero, return 0
1571   if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0), MVT::getIntVTBitMask(VT)))
1572     return DAG.getConstant(0, VT);
1573   // reassociate and
1574   SDOperand RAND = ReassociateOps(ISD::AND, N0, N1);
1575   if (RAND.Val != 0)
1576     return RAND;
1577   // fold (and (or x, 0xFFFF), 0xFF) -> 0xFF
1578   if (N1C && N0.getOpcode() == ISD::OR)
1579     if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
1580       if ((ORI->getValue() & N1C->getValue()) == N1C->getValue())
1581         return N1;
1582   // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
1583   if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
1584     unsigned InMask = MVT::getIntVTBitMask(N0.getOperand(0).getValueType());
1585     if (DAG.MaskedValueIsZero(N0.getOperand(0),
1586                               ~N1C->getValue() & InMask)) {
1587       SDOperand Zext = DAG.getNode(ISD::ZERO_EXTEND, N0.getValueType(),
1588                                    N0.getOperand(0));
1589       
1590       // Replace uses of the AND with uses of the Zero extend node.
1591       CombineTo(N, Zext);
1592       
1593       // We actually want to replace all uses of the any_extend with the
1594       // zero_extend, to avoid duplicating things.  This will later cause this
1595       // AND to be folded.
1596       CombineTo(N0.Val, Zext);
1597       return SDOperand(N, 0);   // Return N so it doesn't get rechecked!
1598     }
1599   }
1600   // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
1601   if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1602     ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1603     ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1604     
1605     if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
1606         MVT::isInteger(LL.getValueType())) {
1607       // fold (X == 0) & (Y == 0) -> (X|Y == 0)
1608       if (cast<ConstantSDNode>(LR)->getValue() == 0 && Op1 == ISD::SETEQ) {
1609         SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
1610         AddToWorkList(ORNode.Val);
1611         return DAG.getSetCC(VT, ORNode, LR, Op1);
1612       }
1613       // fold (X == -1) & (Y == -1) -> (X&Y == -1)
1614       if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
1615         SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
1616         AddToWorkList(ANDNode.Val);
1617         return DAG.getSetCC(VT, ANDNode, LR, Op1);
1618       }
1619       // fold (X >  -1) & (Y >  -1) -> (X|Y > -1)
1620       if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
1621         SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
1622         AddToWorkList(ORNode.Val);
1623         return DAG.getSetCC(VT, ORNode, LR, Op1);
1624       }
1625     }
1626     // canonicalize equivalent to ll == rl
1627     if (LL == RR && LR == RL) {
1628       Op1 = ISD::getSetCCSwappedOperands(Op1);
1629       std::swap(RL, RR);
1630     }
1631     if (LL == RL && LR == RR) {
1632       bool isInteger = MVT::isInteger(LL.getValueType());
1633       ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
1634       if (Result != ISD::SETCC_INVALID)
1635         return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1636     }
1637   }
1638
1639   // Simplify: and (op x...), (op y...)  -> (op (and x, y))
1640   if (N0.getOpcode() == N1.getOpcode()) {
1641     SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1642     if (Tmp.Val) return Tmp;
1643   }
1644   
1645   // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
1646   // fold (and (sra)) -> (and (srl)) when possible.
1647   if (!MVT::isVector(VT) &&
1648       SimplifyDemandedBits(SDOperand(N, 0)))
1649     return SDOperand(N, 0);
1650   // fold (zext_inreg (extload x)) -> (zextload x)
1651   if (ISD::isEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val)) {
1652     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
1653     MVT::ValueType EVT = LN0->getLoadedVT();
1654     // If we zero all the possible extended bits, then we can turn this into
1655     // a zextload if we are running before legalize or the operation is legal.
1656     if (DAG.MaskedValueIsZero(N1, ~0ULL << MVT::getSizeInBits(EVT)) &&
1657         (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
1658       SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1659                                          LN0->getBasePtr(), LN0->getSrcValue(),
1660                                          LN0->getSrcValueOffset(), EVT,
1661                                          LN0->isVolatile(), 
1662                                          LN0->getAlignment());
1663       AddToWorkList(N);
1664       CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
1665       return SDOperand(N, 0);   // Return N so it doesn't get rechecked!
1666     }
1667   }
1668   // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
1669   if (ISD::isSEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
1670       N0.hasOneUse()) {
1671     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
1672     MVT::ValueType EVT = LN0->getLoadedVT();
1673     // If we zero all the possible extended bits, then we can turn this into
1674     // a zextload if we are running before legalize or the operation is legal.
1675     if (DAG.MaskedValueIsZero(N1, ~0ULL << MVT::getSizeInBits(EVT)) &&
1676         (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
1677       SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
1678                                          LN0->getBasePtr(), LN0->getSrcValue(),
1679                                          LN0->getSrcValueOffset(), EVT,
1680                                          LN0->isVolatile(), 
1681                                          LN0->getAlignment());
1682       AddToWorkList(N);
1683       CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
1684       return SDOperand(N, 0);   // Return N so it doesn't get rechecked!
1685     }
1686   }
1687   
1688   // fold (and (load x), 255) -> (zextload x, i8)
1689   // fold (and (extload x, i16), 255) -> (zextload x, i8)
1690   if (N1C && N0.getOpcode() == ISD::LOAD) {
1691     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
1692     if (LN0->getExtensionType() != ISD::SEXTLOAD &&
1693         LN0->isUnindexed() && N0.hasOneUse()) {
1694       MVT::ValueType EVT, LoadedVT;
1695       if (N1C->getValue() == 255)
1696         EVT = MVT::i8;
1697       else if (N1C->getValue() == 65535)
1698         EVT = MVT::i16;
1699       else if (N1C->getValue() == ~0U)
1700         EVT = MVT::i32;
1701       else
1702         EVT = MVT::Other;
1703     
1704       LoadedVT = LN0->getLoadedVT();
1705       if (EVT != MVT::Other && LoadedVT > EVT &&
1706           (!AfterLegalize || TLI.isLoadXLegal(ISD::ZEXTLOAD, EVT))) {
1707         MVT::ValueType PtrType = N0.getOperand(1).getValueType();
1708         // For big endian targets, we need to add an offset to the pointer to
1709         // load the correct bytes.  For little endian systems, we merely need to
1710         // read fewer bytes from the same pointer.
1711         unsigned LVTStoreBytes = MVT::getStoreSizeInBits(LoadedVT)/8;
1712         unsigned EVTStoreBytes = MVT::getStoreSizeInBits(EVT)/8;
1713         unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
1714         unsigned Alignment = LN0->getAlignment();
1715         SDOperand NewPtr = LN0->getBasePtr();
1716         if (!TLI.isLittleEndian()) {
1717           NewPtr = DAG.getNode(ISD::ADD, PtrType, NewPtr,
1718                                DAG.getConstant(PtrOff, PtrType));
1719           Alignment = MinAlign(Alignment, PtrOff);
1720         }
1721         AddToWorkList(NewPtr.Val);
1722         SDOperand Load =
1723           DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(), NewPtr,
1724                          LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
1725                          LN0->isVolatile(), Alignment);
1726         AddToWorkList(N);
1727         CombineTo(N0.Val, Load, Load.getValue(1));
1728         return SDOperand(N, 0);   // Return N so it doesn't get rechecked!
1729       }
1730     }
1731   }
1732   
1733   return SDOperand();
1734 }
1735
1736 SDOperand DAGCombiner::visitOR(SDNode *N) {
1737   SDOperand N0 = N->getOperand(0);
1738   SDOperand N1 = N->getOperand(1);
1739   SDOperand LL, LR, RL, RR, CC0, CC1;
1740   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1741   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1742   MVT::ValueType VT = N1.getValueType();
1743   unsigned OpSizeInBits = MVT::getSizeInBits(VT);
1744   
1745   // fold vector ops
1746   if (MVT::isVector(VT)) {
1747     SDOperand FoldedVOp = SimplifyVBinOp(N);
1748     if (FoldedVOp.Val) return FoldedVOp;
1749   }
1750   
1751   // fold (or x, undef) -> -1
1752   if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
1753     return DAG.getConstant(~0ULL, VT);
1754   // fold (or c1, c2) -> c1|c2
1755   if (N0C && N1C)
1756     return DAG.getNode(ISD::OR, VT, N0, N1);
1757   // canonicalize constant to RHS
1758   if (N0C && !N1C)
1759     return DAG.getNode(ISD::OR, VT, N1, N0);
1760   // fold (or x, 0) -> x
1761   if (N1C && N1C->isNullValue())
1762     return N0;
1763   // fold (or x, -1) -> -1
1764   if (N1C && N1C->isAllOnesValue())
1765     return N1;
1766   // fold (or x, c) -> c iff (x & ~c) == 0
1767   if (N1C && 
1768       DAG.MaskedValueIsZero(N0,~N1C->getValue() & (~0ULL>>(64-OpSizeInBits))))
1769     return N1;
1770   // reassociate or
1771   SDOperand ROR = ReassociateOps(ISD::OR, N0, N1);
1772   if (ROR.Val != 0)
1773     return ROR;
1774   // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
1775   if (N1C && N0.getOpcode() == ISD::AND && N0.Val->hasOneUse() &&
1776              isa<ConstantSDNode>(N0.getOperand(1))) {
1777     ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
1778     return DAG.getNode(ISD::AND, VT, DAG.getNode(ISD::OR, VT, N0.getOperand(0),
1779                                                  N1),
1780                        DAG.getConstant(N1C->getValue() | C1->getValue(), VT));
1781   }
1782   // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
1783   if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
1784     ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
1785     ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
1786     
1787     if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
1788         MVT::isInteger(LL.getValueType())) {
1789       // fold (X != 0) | (Y != 0) -> (X|Y != 0)
1790       // fold (X <  0) | (Y <  0) -> (X|Y < 0)
1791       if (cast<ConstantSDNode>(LR)->getValue() == 0 && 
1792           (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
1793         SDOperand ORNode = DAG.getNode(ISD::OR, LR.getValueType(), LL, RL);
1794         AddToWorkList(ORNode.Val);
1795         return DAG.getSetCC(VT, ORNode, LR, Op1);
1796       }
1797       // fold (X != -1) | (Y != -1) -> (X&Y != -1)
1798       // fold (X >  -1) | (Y >  -1) -> (X&Y >  -1)
1799       if (cast<ConstantSDNode>(LR)->isAllOnesValue() && 
1800           (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
1801         SDOperand ANDNode = DAG.getNode(ISD::AND, LR.getValueType(), LL, RL);
1802         AddToWorkList(ANDNode.Val);
1803         return DAG.getSetCC(VT, ANDNode, LR, Op1);
1804       }
1805     }
1806     // canonicalize equivalent to ll == rl
1807     if (LL == RR && LR == RL) {
1808       Op1 = ISD::getSetCCSwappedOperands(Op1);
1809       std::swap(RL, RR);
1810     }
1811     if (LL == RL && LR == RR) {
1812       bool isInteger = MVT::isInteger(LL.getValueType());
1813       ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
1814       if (Result != ISD::SETCC_INVALID)
1815         return DAG.getSetCC(N0.getValueType(), LL, LR, Result);
1816     }
1817   }
1818   
1819   // Simplify: or (op x...), (op y...)  -> (op (or x, y))
1820   if (N0.getOpcode() == N1.getOpcode()) {
1821     SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
1822     if (Tmp.Val) return Tmp;
1823   }
1824   
1825   // (X & C1) | (Y & C2)  -> (X|Y) & C3  if possible.
1826   if (N0.getOpcode() == ISD::AND &&
1827       N1.getOpcode() == ISD::AND &&
1828       N0.getOperand(1).getOpcode() == ISD::Constant &&
1829       N1.getOperand(1).getOpcode() == ISD::Constant &&
1830       // Don't increase # computations.
1831       (N0.Val->hasOneUse() || N1.Val->hasOneUse())) {
1832     // We can only do this xform if we know that bits from X that are set in C2
1833     // but not in C1 are already zero.  Likewise for Y.
1834     uint64_t LHSMask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
1835     uint64_t RHSMask = cast<ConstantSDNode>(N1.getOperand(1))->getValue();
1836     
1837     if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
1838         DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
1839       SDOperand X =DAG.getNode(ISD::OR, VT, N0.getOperand(0), N1.getOperand(0));
1840       return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(LHSMask|RHSMask, VT));
1841     }
1842   }
1843   
1844   
1845   // See if this is some rotate idiom.
1846   if (SDNode *Rot = MatchRotate(N0, N1))
1847     return SDOperand(Rot, 0);
1848
1849   return SDOperand();
1850 }
1851
1852
1853 /// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
1854 static bool MatchRotateHalf(SDOperand Op, SDOperand &Shift, SDOperand &Mask) {
1855   if (Op.getOpcode() == ISD::AND) {
1856     if (isa<ConstantSDNode>(Op.getOperand(1))) {
1857       Mask = Op.getOperand(1);
1858       Op = Op.getOperand(0);
1859     } else {
1860       return false;
1861     }
1862   }
1863   
1864   if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
1865     Shift = Op;
1866     return true;
1867   }
1868   return false;  
1869 }
1870
1871
1872 // MatchRotate - Handle an 'or' of two operands.  If this is one of the many
1873 // idioms for rotate, and if the target supports rotation instructions, generate
1874 // a rot[lr].
1875 SDNode *DAGCombiner::MatchRotate(SDOperand LHS, SDOperand RHS) {
1876   // Must be a legal type.  Expanded an promoted things won't work with rotates.
1877   MVT::ValueType VT = LHS.getValueType();
1878   if (!TLI.isTypeLegal(VT)) return 0;
1879
1880   // The target must have at least one rotate flavor.
1881   bool HasROTL = TLI.isOperationLegal(ISD::ROTL, VT);
1882   bool HasROTR = TLI.isOperationLegal(ISD::ROTR, VT);
1883   if (!HasROTL && !HasROTR) return 0;
1884   
1885   // Match "(X shl/srl V1) & V2" where V2 may not be present.
1886   SDOperand LHSShift;   // The shift.
1887   SDOperand LHSMask;    // AND value if any.
1888   if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
1889     return 0; // Not part of a rotate.
1890
1891   SDOperand RHSShift;   // The shift.
1892   SDOperand RHSMask;    // AND value if any.
1893   if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
1894     return 0; // Not part of a rotate.
1895   
1896   if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
1897     return 0;   // Not shifting the same value.
1898
1899   if (LHSShift.getOpcode() == RHSShift.getOpcode())
1900     return 0;   // Shifts must disagree.
1901     
1902   // Canonicalize shl to left side in a shl/srl pair.
1903   if (RHSShift.getOpcode() == ISD::SHL) {
1904     std::swap(LHS, RHS);
1905     std::swap(LHSShift, RHSShift);
1906     std::swap(LHSMask , RHSMask );
1907   }
1908
1909   unsigned OpSizeInBits = MVT::getSizeInBits(VT);
1910   SDOperand LHSShiftArg = LHSShift.getOperand(0);
1911   SDOperand LHSShiftAmt = LHSShift.getOperand(1);
1912   SDOperand RHSShiftAmt = RHSShift.getOperand(1);
1913
1914   // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
1915   // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
1916   if (LHSShiftAmt.getOpcode() == ISD::Constant &&
1917       RHSShiftAmt.getOpcode() == ISD::Constant) {
1918     uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getValue();
1919     uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getValue();
1920     if ((LShVal + RShVal) != OpSizeInBits)
1921       return 0;
1922
1923     SDOperand Rot;
1924     if (HasROTL)
1925       Rot = DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt);
1926     else
1927       Rot = DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt);
1928     
1929     // If there is an AND of either shifted operand, apply it to the result.
1930     if (LHSMask.Val || RHSMask.Val) {
1931       uint64_t Mask = MVT::getIntVTBitMask(VT);
1932       
1933       if (LHSMask.Val) {
1934         uint64_t RHSBits = (1ULL << LShVal)-1;
1935         Mask &= cast<ConstantSDNode>(LHSMask)->getValue() | RHSBits;
1936       }
1937       if (RHSMask.Val) {
1938         uint64_t LHSBits = ~((1ULL << (OpSizeInBits-RShVal))-1);
1939         Mask &= cast<ConstantSDNode>(RHSMask)->getValue() | LHSBits;
1940       }
1941         
1942       Rot = DAG.getNode(ISD::AND, VT, Rot, DAG.getConstant(Mask, VT));
1943     }
1944     
1945     return Rot.Val;
1946   }
1947   
1948   // If there is a mask here, and we have a variable shift, we can't be sure
1949   // that we're masking out the right stuff.
1950   if (LHSMask.Val || RHSMask.Val)
1951     return 0;
1952   
1953   // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
1954   // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
1955   if (RHSShiftAmt.getOpcode() == ISD::SUB &&
1956       LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
1957     if (ConstantSDNode *SUBC = 
1958           dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
1959       if (SUBC->getValue() == OpSizeInBits)
1960         if (HasROTL)
1961           return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
1962         else
1963           return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
1964     }
1965   }
1966   
1967   // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
1968   // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
1969   if (LHSShiftAmt.getOpcode() == ISD::SUB &&
1970       RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
1971     if (ConstantSDNode *SUBC = 
1972           dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
1973       if (SUBC->getValue() == OpSizeInBits)
1974         if (HasROTL)
1975           return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
1976         else
1977           return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
1978     }
1979   }
1980
1981   // Look for sign/zext/any-extended cases:
1982   if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
1983        || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
1984        || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND) &&
1985       (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
1986        || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
1987        || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND)) {
1988     SDOperand LExtOp0 = LHSShiftAmt.getOperand(0);
1989     SDOperand RExtOp0 = RHSShiftAmt.getOperand(0);
1990     if (RExtOp0.getOpcode() == ISD::SUB &&
1991         RExtOp0.getOperand(1) == LExtOp0) {
1992       // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
1993       //   (rotr x, y)
1994       // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
1995       //   (rotl x, (sub 32, y))
1996       if (ConstantSDNode *SUBC = cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
1997         if (SUBC->getValue() == OpSizeInBits) {
1998           if (HasROTL)
1999             return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2000           else
2001             return DAG.getNode(ISD::ROTR, VT, LHSShiftArg, RHSShiftAmt).Val;
2002         }
2003       }
2004     } else if (LExtOp0.getOpcode() == ISD::SUB &&
2005                RExtOp0 == LExtOp0.getOperand(1)) {
2006       // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) -> 
2007       //   (rotl x, y)
2008       // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext r))) ->
2009       //   (rotr x, (sub 32, y))
2010       if (ConstantSDNode *SUBC = cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
2011         if (SUBC->getValue() == OpSizeInBits) {
2012           if (HasROTL)
2013             return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, RHSShiftAmt).Val;
2014           else
2015             return DAG.getNode(ISD::ROTL, VT, LHSShiftArg, LHSShiftAmt).Val;
2016         }
2017       }
2018     }
2019   }
2020   
2021   return 0;
2022 }
2023
2024
2025 SDOperand DAGCombiner::visitXOR(SDNode *N) {
2026   SDOperand N0 = N->getOperand(0);
2027   SDOperand N1 = N->getOperand(1);
2028   SDOperand LHS, RHS, CC;
2029   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2030   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2031   MVT::ValueType VT = N0.getValueType();
2032   
2033   // fold vector ops
2034   if (MVT::isVector(VT)) {
2035     SDOperand FoldedVOp = SimplifyVBinOp(N);
2036     if (FoldedVOp.Val) return FoldedVOp;
2037   }
2038   
2039   // fold (xor x, undef) -> undef
2040   if (N0.getOpcode() == ISD::UNDEF)
2041     return N0;
2042   if (N1.getOpcode() == ISD::UNDEF)
2043     return N1;
2044   // fold (xor c1, c2) -> c1^c2
2045   if (N0C && N1C)
2046     return DAG.getNode(ISD::XOR, VT, N0, N1);
2047   // canonicalize constant to RHS
2048   if (N0C && !N1C)
2049     return DAG.getNode(ISD::XOR, VT, N1, N0);
2050   // fold (xor x, 0) -> x
2051   if (N1C && N1C->isNullValue())
2052     return N0;
2053   // reassociate xor
2054   SDOperand RXOR = ReassociateOps(ISD::XOR, N0, N1);
2055   if (RXOR.Val != 0)
2056     return RXOR;
2057   // fold !(x cc y) -> (x !cc y)
2058   if (N1C && N1C->getValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
2059     bool isInt = MVT::isInteger(LHS.getValueType());
2060     ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
2061                                                isInt);
2062     if (N0.getOpcode() == ISD::SETCC)
2063       return DAG.getSetCC(VT, LHS, RHS, NotCC);
2064     if (N0.getOpcode() == ISD::SELECT_CC)
2065       return DAG.getSelectCC(LHS, RHS, N0.getOperand(2),N0.getOperand(3),NotCC);
2066     assert(0 && "Unhandled SetCC Equivalent!");
2067     abort();
2068   }
2069   // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
2070   if (N1C && N1C->getValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
2071       N0.Val->hasOneUse() && isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
2072     SDOperand V = N0.getOperand(0);
2073     V = DAG.getNode(ISD::XOR, V.getValueType(), V, 
2074                     DAG.getConstant(1, V.getValueType()));
2075     AddToWorkList(V.Val);
2076     return DAG.getNode(ISD::ZERO_EXTEND, VT, V);
2077   }
2078   
2079   // fold !(x or y) -> (!x and !y) iff x or y are setcc
2080   if (N1C && N1C->getValue() == 1 && VT == MVT::i1 &&
2081       (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
2082     SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
2083     if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
2084       unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
2085       LHS = DAG.getNode(ISD::XOR, VT, LHS, N1);  // RHS = ~LHS
2086       RHS = DAG.getNode(ISD::XOR, VT, RHS, N1);  // RHS = ~RHS
2087       AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
2088       return DAG.getNode(NewOpcode, VT, LHS, RHS);
2089     }
2090   }
2091   // fold !(x or y) -> (!x and !y) iff x or y are constants
2092   if (N1C && N1C->isAllOnesValue() && 
2093       (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
2094     SDOperand LHS = N0.getOperand(0), RHS = N0.getOperand(1);
2095     if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
2096       unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
2097       LHS = DAG.getNode(ISD::XOR, VT, LHS, N1);  // RHS = ~LHS
2098       RHS = DAG.getNode(ISD::XOR, VT, RHS, N1);  // RHS = ~RHS
2099       AddToWorkList(LHS.Val); AddToWorkList(RHS.Val);
2100       return DAG.getNode(NewOpcode, VT, LHS, RHS);
2101     }
2102   }
2103   // fold (xor (xor x, c1), c2) -> (xor x, c1^c2)
2104   if (N1C && N0.getOpcode() == ISD::XOR) {
2105     ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
2106     ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2107     if (N00C)
2108       return DAG.getNode(ISD::XOR, VT, N0.getOperand(1),
2109                          DAG.getConstant(N1C->getValue()^N00C->getValue(), VT));
2110     if (N01C)
2111       return DAG.getNode(ISD::XOR, VT, N0.getOperand(0),
2112                          DAG.getConstant(N1C->getValue()^N01C->getValue(), VT));
2113   }
2114   // fold (xor x, x) -> 0
2115   if (N0 == N1) {
2116     if (!MVT::isVector(VT)) {
2117       return DAG.getConstant(0, VT);
2118     } else if (!AfterLegalize || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
2119       // Produce a vector of zeros.
2120       SDOperand El = DAG.getConstant(0, MVT::getVectorElementType(VT));
2121       std::vector<SDOperand> Ops(MVT::getVectorNumElements(VT), El);
2122       return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
2123     }
2124   }
2125   
2126   // Simplify: xor (op x...), (op y...)  -> (op (xor x, y))
2127   if (N0.getOpcode() == N1.getOpcode()) {
2128     SDOperand Tmp = SimplifyBinOpWithSameOpcodeHands(N);
2129     if (Tmp.Val) return Tmp;
2130   }
2131   
2132   // Simplify the expression using non-local knowledge.
2133   if (!MVT::isVector(VT) &&
2134       SimplifyDemandedBits(SDOperand(N, 0)))
2135     return SDOperand(N, 0);
2136   
2137   return SDOperand();
2138 }
2139
2140 /// visitShiftByConstant - Handle transforms common to the three shifts, when
2141 /// the shift amount is a constant.
2142 SDOperand DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
2143   SDNode *LHS = N->getOperand(0).Val;
2144   if (!LHS->hasOneUse()) return SDOperand();
2145   
2146   // We want to pull some binops through shifts, so that we have (and (shift))
2147   // instead of (shift (and)), likewise for add, or, xor, etc.  This sort of
2148   // thing happens with address calculations, so it's important to canonicalize
2149   // it.
2150   bool HighBitSet = false;  // Can we transform this if the high bit is set?
2151   
2152   switch (LHS->getOpcode()) {
2153   default: return SDOperand();
2154   case ISD::OR:
2155   case ISD::XOR:
2156     HighBitSet = false; // We can only transform sra if the high bit is clear.
2157     break;
2158   case ISD::AND:
2159     HighBitSet = true;  // We can only transform sra if the high bit is set.
2160     break;
2161   case ISD::ADD:
2162     if (N->getOpcode() != ISD::SHL) 
2163       return SDOperand(); // only shl(add) not sr[al](add).
2164     HighBitSet = false; // We can only transform sra if the high bit is clear.
2165     break;
2166   }
2167   
2168   // We require the RHS of the binop to be a constant as well.
2169   ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
2170   if (!BinOpCst) return SDOperand();
2171   
2172   
2173   // FIXME: disable this for unless the input to the binop is a shift by a
2174   // constant.  If it is not a shift, it pessimizes some common cases like:
2175   //
2176   //void foo(int *X, int i) { X[i & 1235] = 1; }
2177   //int bar(int *X, int i) { return X[i & 255]; }
2178   SDNode *BinOpLHSVal = LHS->getOperand(0).Val;
2179   if ((BinOpLHSVal->getOpcode() != ISD::SHL && 
2180        BinOpLHSVal->getOpcode() != ISD::SRA &&
2181        BinOpLHSVal->getOpcode() != ISD::SRL) ||
2182       !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
2183     return SDOperand();
2184   
2185   MVT::ValueType VT = N->getValueType(0);
2186   
2187   // If this is a signed shift right, and the high bit is modified
2188   // by the logical operation, do not perform the transformation.
2189   // The highBitSet boolean indicates the value of the high bit of
2190   // the constant which would cause it to be modified for this
2191   // operation.
2192   if (N->getOpcode() == ISD::SRA) {
2193     uint64_t BinOpRHSSign = BinOpCst->getValue() >> MVT::getSizeInBits(VT)-1;
2194     if ((bool)BinOpRHSSign != HighBitSet)
2195       return SDOperand();
2196   }
2197   
2198   // Fold the constants, shifting the binop RHS by the shift amount.
2199   SDOperand NewRHS = DAG.getNode(N->getOpcode(), N->getValueType(0),
2200                                  LHS->getOperand(1), N->getOperand(1));
2201
2202   // Create the new shift.
2203   SDOperand NewShift = DAG.getNode(N->getOpcode(), VT, LHS->getOperand(0),
2204                                    N->getOperand(1));
2205
2206   // Create the new binop.
2207   return DAG.getNode(LHS->getOpcode(), VT, NewShift, NewRHS);
2208 }
2209
2210
2211 SDOperand DAGCombiner::visitSHL(SDNode *N) {
2212   SDOperand N0 = N->getOperand(0);
2213   SDOperand N1 = N->getOperand(1);
2214   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2215   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2216   MVT::ValueType VT = N0.getValueType();
2217   unsigned OpSizeInBits = MVT::getSizeInBits(VT);
2218   
2219   // fold (shl c1, c2) -> c1<<c2
2220   if (N0C && N1C)
2221     return DAG.getNode(ISD::SHL, VT, N0, N1);
2222   // fold (shl 0, x) -> 0
2223   if (N0C && N0C->isNullValue())
2224     return N0;
2225   // fold (shl x, c >= size(x)) -> undef
2226   if (N1C && N1C->getValue() >= OpSizeInBits)
2227     return DAG.getNode(ISD::UNDEF, VT);
2228   // fold (shl x, 0) -> x
2229   if (N1C && N1C->isNullValue())
2230     return N0;
2231   // if (shl x, c) is known to be zero, return 0
2232   if (DAG.MaskedValueIsZero(SDOperand(N, 0), MVT::getIntVTBitMask(VT)))
2233     return DAG.getConstant(0, VT);
2234   if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2235     return SDOperand(N, 0);
2236   // fold (shl (shl x, c1), c2) -> 0 or (shl x, c1+c2)
2237   if (N1C && N0.getOpcode() == ISD::SHL && 
2238       N0.getOperand(1).getOpcode() == ISD::Constant) {
2239     uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2240     uint64_t c2 = N1C->getValue();
2241     if (c1 + c2 > OpSizeInBits)
2242       return DAG.getConstant(0, VT);
2243     return DAG.getNode(ISD::SHL, VT, N0.getOperand(0), 
2244                        DAG.getConstant(c1 + c2, N1.getValueType()));
2245   }
2246   // fold (shl (srl x, c1), c2) -> (shl (and x, -1 << c1), c2-c1) or
2247   //                               (srl (and x, -1 << c1), c1-c2)
2248   if (N1C && N0.getOpcode() == ISD::SRL && 
2249       N0.getOperand(1).getOpcode() == ISD::Constant) {
2250     uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2251     uint64_t c2 = N1C->getValue();
2252     SDOperand Mask = DAG.getNode(ISD::AND, VT, N0.getOperand(0),
2253                                  DAG.getConstant(~0ULL << c1, VT));
2254     if (c2 > c1)
2255       return DAG.getNode(ISD::SHL, VT, Mask, 
2256                          DAG.getConstant(c2-c1, N1.getValueType()));
2257     else
2258       return DAG.getNode(ISD::SRL, VT, Mask, 
2259                          DAG.getConstant(c1-c2, N1.getValueType()));
2260   }
2261   // fold (shl (sra x, c1), c1) -> (and x, -1 << c1)
2262   if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1))
2263     return DAG.getNode(ISD::AND, VT, N0.getOperand(0),
2264                        DAG.getConstant(~0ULL << N1C->getValue(), VT));
2265   
2266   return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
2267 }
2268
2269 SDOperand DAGCombiner::visitSRA(SDNode *N) {
2270   SDOperand N0 = N->getOperand(0);
2271   SDOperand N1 = N->getOperand(1);
2272   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2273   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2274   MVT::ValueType VT = N0.getValueType();
2275   
2276   // fold (sra c1, c2) -> c1>>c2
2277   if (N0C && N1C)
2278     return DAG.getNode(ISD::SRA, VT, N0, N1);
2279   // fold (sra 0, x) -> 0
2280   if (N0C && N0C->isNullValue())
2281     return N0;
2282   // fold (sra -1, x) -> -1
2283   if (N0C && N0C->isAllOnesValue())
2284     return N0;
2285   // fold (sra x, c >= size(x)) -> undef
2286   if (N1C && N1C->getValue() >= MVT::getSizeInBits(VT))
2287     return DAG.getNode(ISD::UNDEF, VT);
2288   // fold (sra x, 0) -> x
2289   if (N1C && N1C->isNullValue())
2290     return N0;
2291   // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
2292   // sext_inreg.
2293   if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
2294     unsigned LowBits = MVT::getSizeInBits(VT) - (unsigned)N1C->getValue();
2295     MVT::ValueType EVT;
2296     switch (LowBits) {
2297     default: EVT = MVT::Other; break;
2298     case  1: EVT = MVT::i1;    break;
2299     case  8: EVT = MVT::i8;    break;
2300     case 16: EVT = MVT::i16;   break;
2301     case 32: EVT = MVT::i32;   break;
2302     }
2303     if (EVT > MVT::Other && TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, EVT))
2304       return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0),
2305                          DAG.getValueType(EVT));
2306   }
2307   
2308   // fold (sra (sra x, c1), c2) -> (sra x, c1+c2)
2309   if (N1C && N0.getOpcode() == ISD::SRA) {
2310     if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2311       unsigned Sum = N1C->getValue() + C1->getValue();
2312       if (Sum >= MVT::getSizeInBits(VT)) Sum = MVT::getSizeInBits(VT)-1;
2313       return DAG.getNode(ISD::SRA, VT, N0.getOperand(0),
2314                          DAG.getConstant(Sum, N1C->getValueType(0)));
2315     }
2316   }
2317   
2318   // Simplify, based on bits shifted out of the LHS. 
2319   if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2320     return SDOperand(N, 0);
2321   
2322   
2323   // If the sign bit is known to be zero, switch this to a SRL.
2324   if (DAG.MaskedValueIsZero(N0, MVT::getIntVTSignBit(VT)))
2325     return DAG.getNode(ISD::SRL, VT, N0, N1);
2326
2327   return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
2328 }
2329
2330 SDOperand DAGCombiner::visitSRL(SDNode *N) {
2331   SDOperand N0 = N->getOperand(0);
2332   SDOperand N1 = N->getOperand(1);
2333   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2334   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2335   MVT::ValueType VT = N0.getValueType();
2336   unsigned OpSizeInBits = MVT::getSizeInBits(VT);
2337   
2338   // fold (srl c1, c2) -> c1 >>u c2
2339   if (N0C && N1C)
2340     return DAG.getNode(ISD::SRL, VT, N0, N1);
2341   // fold (srl 0, x) -> 0
2342   if (N0C && N0C->isNullValue())
2343     return N0;
2344   // fold (srl x, c >= size(x)) -> undef
2345   if (N1C && N1C->getValue() >= OpSizeInBits)
2346     return DAG.getNode(ISD::UNDEF, VT);
2347   // fold (srl x, 0) -> x
2348   if (N1C && N1C->isNullValue())
2349     return N0;
2350   // if (srl x, c) is known to be zero, return 0
2351   if (N1C && DAG.MaskedValueIsZero(SDOperand(N, 0), ~0ULL >> (64-OpSizeInBits)))
2352     return DAG.getConstant(0, VT);
2353   
2354   // fold (srl (srl x, c1), c2) -> 0 or (srl x, c1+c2)
2355   if (N1C && N0.getOpcode() == ISD::SRL && 
2356       N0.getOperand(1).getOpcode() == ISD::Constant) {
2357     uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2358     uint64_t c2 = N1C->getValue();
2359     if (c1 + c2 > OpSizeInBits)
2360       return DAG.getConstant(0, VT);
2361     return DAG.getNode(ISD::SRL, VT, N0.getOperand(0), 
2362                        DAG.getConstant(c1 + c2, N1.getValueType()));
2363   }
2364   
2365   // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
2366   if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
2367     // Shifting in all undef bits?
2368     MVT::ValueType SmallVT = N0.getOperand(0).getValueType();
2369     if (N1C->getValue() >= MVT::getSizeInBits(SmallVT))
2370       return DAG.getNode(ISD::UNDEF, VT);
2371
2372     SDOperand SmallShift = DAG.getNode(ISD::SRL, SmallVT, N0.getOperand(0), N1);
2373     AddToWorkList(SmallShift.Val);
2374     return DAG.getNode(ISD::ANY_EXTEND, VT, SmallShift);
2375   }
2376   
2377   // fold (srl (sra X, Y), 31) -> (srl X, 31).  This srl only looks at the sign
2378   // bit, which is unmodified by sra.
2379   if (N1C && N1C->getValue()+1 == MVT::getSizeInBits(VT)) {
2380     if (N0.getOpcode() == ISD::SRA)
2381       return DAG.getNode(ISD::SRL, VT, N0.getOperand(0), N1);
2382   }
2383   
2384   // fold (srl (ctlz x), "5") -> x  iff x has one bit set (the low bit).
2385   if (N1C && N0.getOpcode() == ISD::CTLZ && 
2386       N1C->getValue() == Log2_32(MVT::getSizeInBits(VT))) {
2387     uint64_t KnownZero, KnownOne, Mask = MVT::getIntVTBitMask(VT);
2388     DAG.ComputeMaskedBits(N0.getOperand(0), Mask, KnownZero, KnownOne);
2389     
2390     // If any of the input bits are KnownOne, then the input couldn't be all
2391     // zeros, thus the result of the srl will always be zero.
2392     if (KnownOne) return DAG.getConstant(0, VT);
2393     
2394     // If all of the bits input the to ctlz node are known to be zero, then
2395     // the result of the ctlz is "32" and the result of the shift is one.
2396     uint64_t UnknownBits = ~KnownZero & Mask;
2397     if (UnknownBits == 0) return DAG.getConstant(1, VT);
2398     
2399     // Otherwise, check to see if there is exactly one bit input to the ctlz.
2400     if ((UnknownBits & (UnknownBits-1)) == 0) {
2401       // Okay, we know that only that the single bit specified by UnknownBits
2402       // could be set on input to the CTLZ node.  If this bit is set, the SRL
2403       // will return 0, if it is clear, it returns 1.  Change the CTLZ/SRL pair
2404       // to an SRL,XOR pair, which is likely to simplify more.
2405       unsigned ShAmt = CountTrailingZeros_64(UnknownBits);
2406       SDOperand Op = N0.getOperand(0);
2407       if (ShAmt) {
2408         Op = DAG.getNode(ISD::SRL, VT, Op,
2409                          DAG.getConstant(ShAmt, TLI.getShiftAmountTy()));
2410         AddToWorkList(Op.Val);
2411       }
2412       return DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(1, VT));
2413     }
2414   }
2415   
2416   // fold operands of srl based on knowledge that the low bits are not
2417   // demanded.
2418   if (N1C && SimplifyDemandedBits(SDOperand(N, 0)))
2419     return SDOperand(N, 0);
2420   
2421   return N1C ? visitShiftByConstant(N, N1C->getValue()) : SDOperand();
2422 }
2423
2424 SDOperand DAGCombiner::visitCTLZ(SDNode *N) {
2425   SDOperand N0 = N->getOperand(0);
2426   MVT::ValueType VT = N->getValueType(0);
2427
2428   // fold (ctlz c1) -> c2
2429   if (isa<ConstantSDNode>(N0))
2430     return DAG.getNode(ISD::CTLZ, VT, N0);
2431   return SDOperand();
2432 }
2433
2434 SDOperand DAGCombiner::visitCTTZ(SDNode *N) {
2435   SDOperand N0 = N->getOperand(0);
2436   MVT::ValueType VT = N->getValueType(0);
2437   
2438   // fold (cttz c1) -> c2
2439   if (isa<ConstantSDNode>(N0))
2440     return DAG.getNode(ISD::CTTZ, VT, N0);
2441   return SDOperand();
2442 }
2443
2444 SDOperand DAGCombiner::visitCTPOP(SDNode *N) {
2445   SDOperand N0 = N->getOperand(0);
2446   MVT::ValueType VT = N->getValueType(0);
2447   
2448   // fold (ctpop c1) -> c2
2449   if (isa<ConstantSDNode>(N0))
2450     return DAG.getNode(ISD::CTPOP, VT, N0);
2451   return SDOperand();
2452 }
2453
2454 SDOperand DAGCombiner::visitSELECT(SDNode *N) {
2455   SDOperand N0 = N->getOperand(0);
2456   SDOperand N1 = N->getOperand(1);
2457   SDOperand N2 = N->getOperand(2);
2458   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2459   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2460   ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
2461   MVT::ValueType VT = N->getValueType(0);
2462   MVT::ValueType VT0 = N0.getValueType();
2463
2464   // fold select C, X, X -> X
2465   if (N1 == N2)
2466     return N1;
2467   // fold select true, X, Y -> X
2468   if (N0C && !N0C->isNullValue())
2469     return N1;
2470   // fold select false, X, Y -> Y
2471   if (N0C && N0C->isNullValue())
2472     return N2;
2473   // fold select C, 1, X -> C | X
2474   if (MVT::i1 == VT && N1C && N1C->getValue() == 1)
2475     return DAG.getNode(ISD::OR, VT, N0, N2);
2476   // fold select C, 0, 1 -> ~C
2477   if (MVT::isInteger(VT) && MVT::isInteger(VT0) &&
2478       N1C && N2C && N1C->isNullValue() && N2C->getValue() == 1) {
2479     SDOperand XORNode = DAG.getNode(ISD::XOR, VT0, N0, DAG.getConstant(1, VT0));
2480     if (VT == VT0)
2481       return XORNode;
2482     AddToWorkList(XORNode.Val);
2483     if (MVT::getSizeInBits(VT) > MVT::getSizeInBits(VT0))
2484       return DAG.getNode(ISD::ZERO_EXTEND, VT, XORNode);
2485     return DAG.getNode(ISD::TRUNCATE, VT, XORNode);
2486   }
2487   // fold select C, 0, X -> ~C & X
2488   if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
2489     SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
2490     AddToWorkList(XORNode.Val);
2491     return DAG.getNode(ISD::AND, VT, XORNode, N2);
2492   }
2493   // fold select C, X, 1 -> ~C | X
2494   if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getValue() == 1) {
2495     SDOperand XORNode = DAG.getNode(ISD::XOR, VT, N0, DAG.getConstant(1, VT));
2496     AddToWorkList(XORNode.Val);
2497     return DAG.getNode(ISD::OR, VT, XORNode, N1);
2498   }
2499   // fold select C, X, 0 -> C & X
2500   // FIXME: this should check for C type == X type, not i1?
2501   if (MVT::i1 == VT && N2C && N2C->isNullValue())
2502     return DAG.getNode(ISD::AND, VT, N0, N1);
2503   // fold  X ? X : Y --> X ? 1 : Y --> X | Y
2504   if (MVT::i1 == VT && N0 == N1)
2505     return DAG.getNode(ISD::OR, VT, N0, N2);
2506   // fold X ? Y : X --> X ? Y : 0 --> X & Y
2507   if (MVT::i1 == VT && N0 == N2)
2508     return DAG.getNode(ISD::AND, VT, N0, N1);
2509   
2510   // If we can fold this based on the true/false value, do so.
2511   if (SimplifySelectOps(N, N1, N2))
2512     return SDOperand(N, 0);  // Don't revisit N.
2513   
2514   // fold selects based on a setcc into other things, such as min/max/abs
2515   if (N0.getOpcode() == ISD::SETCC)
2516     // FIXME:
2517     // Check against MVT::Other for SELECT_CC, which is a workaround for targets
2518     // having to say they don't support SELECT_CC on every type the DAG knows
2519     // about, since there is no way to mark an opcode illegal at all value types
2520     if (TLI.isOperationLegal(ISD::SELECT_CC, MVT::Other))
2521       return DAG.getNode(ISD::SELECT_CC, VT, N0.getOperand(0), N0.getOperand(1),
2522                          N1, N2, N0.getOperand(2));
2523     else
2524       return SimplifySelect(N0, N1, N2);
2525   return SDOperand();
2526 }
2527
2528 SDOperand DAGCombiner::visitSELECT_CC(SDNode *N) {
2529   SDOperand N0 = N->getOperand(0);
2530   SDOperand N1 = N->getOperand(1);
2531   SDOperand N2 = N->getOperand(2);
2532   SDOperand N3 = N->getOperand(3);
2533   SDOperand N4 = N->getOperand(4);
2534   ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
2535   
2536   // fold select_cc lhs, rhs, x, x, cc -> x
2537   if (N2 == N3)
2538     return N2;
2539   
2540   // Determine if the condition we're dealing with is constant
2541   SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), N0, N1, CC, false);
2542   if (SCC.Val) AddToWorkList(SCC.Val);
2543
2544   if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val)) {
2545     if (SCCC->getValue())
2546       return N2;    // cond always true -> true val
2547     else
2548       return N3;    // cond always false -> false val
2549   }
2550   
2551   // Fold to a simpler select_cc
2552   if (SCC.Val && SCC.getOpcode() == ISD::SETCC)
2553     return DAG.getNode(ISD::SELECT_CC, N2.getValueType(), 
2554                        SCC.getOperand(0), SCC.getOperand(1), N2, N3, 
2555                        SCC.getOperand(2));
2556   
2557   // If we can fold this based on the true/false value, do so.
2558   if (SimplifySelectOps(N, N2, N3))
2559     return SDOperand(N, 0);  // Don't revisit N.
2560   
2561   // fold select_cc into other things, such as min/max/abs
2562   return SimplifySelectCC(N0, N1, N2, N3, CC);
2563 }
2564
2565 SDOperand DAGCombiner::visitSETCC(SDNode *N) {
2566   return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
2567                        cast<CondCodeSDNode>(N->getOperand(2))->get());
2568 }
2569
2570 // ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
2571 // "fold ({s|z}ext (load x)) -> ({s|z}ext (truncate ({s|z}extload x)))"
2572 // transformation. Returns true if extension are possible and the above
2573 // mentioned transformation is profitable. 
2574 static bool ExtendUsesToFormExtLoad(SDNode *N, SDOperand N0,
2575                                     unsigned ExtOpc,
2576                                     SmallVector<SDNode*, 4> &ExtendNodes,
2577                                     TargetLowering &TLI) {
2578   bool HasCopyToRegUses = false;
2579   bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
2580   for (SDNode::use_iterator UI = N0.Val->use_begin(), UE = N0.Val->use_end();
2581        UI != UE; ++UI) {
2582     SDNode *User = *UI;
2583     if (User == N)
2584       continue;
2585     // FIXME: Only extend SETCC N, N and SETCC N, c for now.
2586     if (User->getOpcode() == ISD::SETCC) {
2587       ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
2588       if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
2589         // Sign bits will be lost after a zext.
2590         return false;
2591       bool Add = false;
2592       for (unsigned i = 0; i != 2; ++i) {
2593         SDOperand UseOp = User->getOperand(i);
2594         if (UseOp == N0)
2595           continue;
2596         if (!isa<ConstantSDNode>(UseOp))
2597           return false;
2598         Add = true;
2599       }
2600       if (Add)
2601         ExtendNodes.push_back(User);
2602     } else {
2603       for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
2604         SDOperand UseOp = User->getOperand(i);
2605         if (UseOp == N0) {
2606           // If truncate from extended type to original load type is free
2607           // on this target, then it's ok to extend a CopyToReg.
2608           if (isTruncFree && User->getOpcode() == ISD::CopyToReg)
2609             HasCopyToRegUses = true;
2610           else
2611             return false;
2612         }
2613       }
2614     }
2615   }
2616
2617   if (HasCopyToRegUses) {
2618     bool BothLiveOut = false;
2619     for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
2620          UI != UE; ++UI) {
2621       SDNode *User = *UI;
2622       for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i) {
2623         SDOperand UseOp = User->getOperand(i);
2624         if (UseOp.Val == N && UseOp.ResNo == 0) {
2625           BothLiveOut = true;
2626           break;
2627         }
2628       }
2629     }
2630     if (BothLiveOut)
2631       // Both unextended and extended values are live out. There had better be
2632       // good a reason for the transformation.
2633       return ExtendNodes.size();
2634   }
2635   return true;
2636 }
2637
2638 SDOperand DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
2639   SDOperand N0 = N->getOperand(0);
2640   MVT::ValueType VT = N->getValueType(0);
2641
2642   // fold (sext c1) -> c1
2643   if (isa<ConstantSDNode>(N0))
2644     return DAG.getNode(ISD::SIGN_EXTEND, VT, N0);
2645   
2646   // fold (sext (sext x)) -> (sext x)
2647   // fold (sext (aext x)) -> (sext x)
2648   if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
2649     return DAG.getNode(ISD::SIGN_EXTEND, VT, N0.getOperand(0));
2650   
2651   // fold (sext (truncate (load x))) -> (sext (smaller load x))
2652   // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
2653   if (N0.getOpcode() == ISD::TRUNCATE) {
2654     SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
2655     if (NarrowLoad.Val) {
2656       if (NarrowLoad.Val != N0.Val)
2657         CombineTo(N0.Val, NarrowLoad);
2658       return DAG.getNode(ISD::SIGN_EXTEND, VT, NarrowLoad);
2659     }
2660   }
2661
2662   // See if the value being truncated is already sign extended.  If so, just
2663   // eliminate the trunc/sext pair.
2664   if (N0.getOpcode() == ISD::TRUNCATE) {
2665     SDOperand Op = N0.getOperand(0);
2666     unsigned OpBits   = MVT::getSizeInBits(Op.getValueType());
2667     unsigned MidBits  = MVT::getSizeInBits(N0.getValueType());
2668     unsigned DestBits = MVT::getSizeInBits(VT);
2669     unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
2670     
2671     if (OpBits == DestBits) {
2672       // Op is i32, Mid is i8, and Dest is i32.  If Op has more than 24 sign
2673       // bits, it is already ready.
2674       if (NumSignBits > DestBits-MidBits)
2675         return Op;
2676     } else if (OpBits < DestBits) {
2677       // Op is i32, Mid is i8, and Dest is i64.  If Op has more than 24 sign
2678       // bits, just sext from i32.
2679       if (NumSignBits > OpBits-MidBits)
2680         return DAG.getNode(ISD::SIGN_EXTEND, VT, Op);
2681     } else {
2682       // Op is i64, Mid is i8, and Dest is i32.  If Op has more than 56 sign
2683       // bits, just truncate to i32.
2684       if (NumSignBits > OpBits-MidBits)
2685         return DAG.getNode(ISD::TRUNCATE, VT, Op);
2686     }
2687     
2688     // fold (sext (truncate x)) -> (sextinreg x).
2689     if (!AfterLegalize || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
2690                                                N0.getValueType())) {
2691       if (Op.getValueType() < VT)
2692         Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
2693       else if (Op.getValueType() > VT)
2694         Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2695       return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, Op,
2696                          DAG.getValueType(N0.getValueType()));
2697     }
2698   }
2699   
2700   // fold (sext (load x)) -> (sext (truncate (sextload x)))
2701   if (ISD::isNON_EXTLoad(N0.Val) &&
2702       (!AfterLegalize||TLI.isLoadXLegal(ISD::SEXTLOAD, N0.getValueType()))){
2703     bool DoXform = true;
2704     SmallVector<SDNode*, 4> SetCCs;
2705     if (!N0.hasOneUse())
2706       DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
2707     if (DoXform) {
2708       LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2709       SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2710                                          LN0->getBasePtr(), LN0->getSrcValue(),
2711                                          LN0->getSrcValueOffset(),
2712                                          N0.getValueType(), 
2713                                          LN0->isVolatile(),
2714                                          LN0->getAlignment());
2715       CombineTo(N, ExtLoad);
2716       SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad);
2717       CombineTo(N0.Val, Trunc, ExtLoad.getValue(1));
2718       // Extend SetCC uses if necessary.
2719       for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
2720         SDNode *SetCC = SetCCs[i];
2721         SmallVector<SDOperand, 4> Ops;
2722         for (unsigned j = 0; j != 2; ++j) {
2723           SDOperand SOp = SetCC->getOperand(j);
2724           if (SOp == Trunc)
2725             Ops.push_back(ExtLoad);
2726           else
2727             Ops.push_back(DAG.getNode(ISD::SIGN_EXTEND, VT, SOp));
2728           }
2729         Ops.push_back(SetCC->getOperand(2));
2730         CombineTo(SetCC, DAG.getNode(ISD::SETCC, SetCC->getValueType(0),
2731                                      &Ops[0], Ops.size()));
2732       }
2733       return SDOperand(N, 0);   // Return N so it doesn't get rechecked!
2734     }
2735   }
2736
2737   // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
2738   // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
2739   if ((ISD::isSEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2740       ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
2741     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2742     MVT::ValueType EVT = LN0->getLoadedVT();
2743     if (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT)) {
2744       SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
2745                                          LN0->getBasePtr(), LN0->getSrcValue(),
2746                                          LN0->getSrcValueOffset(), EVT,
2747                                          LN0->isVolatile(), 
2748                                          LN0->getAlignment());
2749       CombineTo(N, ExtLoad);
2750       CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2751                 ExtLoad.getValue(1));
2752       return SDOperand(N, 0);   // Return N so it doesn't get rechecked!
2753     }
2754   }
2755   
2756   // sext(setcc x,y,cc) -> select_cc x, y, -1, 0, cc
2757   if (N0.getOpcode() == ISD::SETCC) {
2758     SDOperand SCC = 
2759       SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2760                        DAG.getConstant(~0ULL, VT), DAG.getConstant(0, VT),
2761                        cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
2762     if (SCC.Val) return SCC;
2763   }
2764   
2765   return SDOperand();
2766 }
2767
2768 SDOperand DAGCombiner::visitZERO_EXTEND(SDNode *N) {
2769   SDOperand N0 = N->getOperand(0);
2770   MVT::ValueType VT = N->getValueType(0);
2771
2772   // fold (zext c1) -> c1
2773   if (isa<ConstantSDNode>(N0))
2774     return DAG.getNode(ISD::ZERO_EXTEND, VT, N0);
2775   // fold (zext (zext x)) -> (zext x)
2776   // fold (zext (aext x)) -> (zext x)
2777   if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
2778     return DAG.getNode(ISD::ZERO_EXTEND, VT, N0.getOperand(0));
2779
2780   // fold (zext (truncate (load x))) -> (zext (smaller load x))
2781   // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
2782   if (N0.getOpcode() == ISD::TRUNCATE) {
2783     SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
2784     if (NarrowLoad.Val) {
2785       if (NarrowLoad.Val != N0.Val)
2786         CombineTo(N0.Val, NarrowLoad);
2787       return DAG.getNode(ISD::ZERO_EXTEND, VT, NarrowLoad);
2788     }
2789   }
2790
2791   // fold (zext (truncate x)) -> (and x, mask)
2792   if (N0.getOpcode() == ISD::TRUNCATE &&
2793       (!AfterLegalize || TLI.isOperationLegal(ISD::AND, VT))) {
2794     SDOperand Op = N0.getOperand(0);
2795     if (Op.getValueType() < VT) {
2796       Op = DAG.getNode(ISD::ANY_EXTEND, VT, Op);
2797     } else if (Op.getValueType() > VT) {
2798       Op = DAG.getNode(ISD::TRUNCATE, VT, Op);
2799     }
2800     return DAG.getZeroExtendInReg(Op, N0.getValueType());
2801   }
2802   
2803   // fold (zext (and (trunc x), cst)) -> (and x, cst).
2804   if (N0.getOpcode() == ISD::AND &&
2805       N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
2806       N0.getOperand(1).getOpcode() == ISD::Constant) {
2807     SDOperand X = N0.getOperand(0).getOperand(0);
2808     if (X.getValueType() < VT) {
2809       X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
2810     } else if (X.getValueType() > VT) {
2811       X = DAG.getNode(ISD::TRUNCATE, VT, X);
2812     }
2813     uint64_t Mask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2814     return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
2815   }
2816   
2817   // fold (zext (load x)) -> (zext (truncate (zextload x)))
2818   if (ISD::isNON_EXTLoad(N0.Val) &&
2819       (!AfterLegalize||TLI.isLoadXLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
2820     bool DoXform = true;
2821     SmallVector<SDNode*, 4> SetCCs;
2822     if (!N0.hasOneUse())
2823       DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
2824     if (DoXform) {
2825       LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2826       SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
2827                                          LN0->getBasePtr(), LN0->getSrcValue(),
2828                                          LN0->getSrcValueOffset(),
2829                                          N0.getValueType(),
2830                                          LN0->isVolatile(), 
2831                                          LN0->getAlignment());
2832       CombineTo(N, ExtLoad);
2833       SDOperand Trunc = DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad);
2834       CombineTo(N0.Val, Trunc, ExtLoad.getValue(1));
2835       // Extend SetCC uses if necessary.
2836       for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
2837         SDNode *SetCC = SetCCs[i];
2838         SmallVector<SDOperand, 4> Ops;
2839         for (unsigned j = 0; j != 2; ++j) {
2840           SDOperand SOp = SetCC->getOperand(j);
2841           if (SOp == Trunc)
2842             Ops.push_back(ExtLoad);
2843           else
2844             Ops.push_back(DAG.getNode(ISD::ZERO_EXTEND, VT, SOp));
2845           }
2846         Ops.push_back(SetCC->getOperand(2));
2847         CombineTo(SetCC, DAG.getNode(ISD::SETCC, SetCC->getValueType(0),
2848                                      &Ops[0], Ops.size()));
2849       }
2850       return SDOperand(N, 0);   // Return N so it doesn't get rechecked!
2851     }
2852   }
2853
2854   // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
2855   // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
2856   if ((ISD::isZEXTLoad(N0.Val) || ISD::isEXTLoad(N0.Val)) &&
2857       ISD::isUNINDEXEDLoad(N0.Val) && N0.hasOneUse()) {
2858     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2859     MVT::ValueType EVT = LN0->getLoadedVT();
2860     SDOperand ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, VT, LN0->getChain(),
2861                                        LN0->getBasePtr(), LN0->getSrcValue(),
2862                                        LN0->getSrcValueOffset(), EVT,
2863                                        LN0->isVolatile(), 
2864                                        LN0->getAlignment());
2865     CombineTo(N, ExtLoad);
2866     CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2867               ExtLoad.getValue(1));
2868     return SDOperand(N, 0);   // Return N so it doesn't get rechecked!
2869   }
2870   
2871   // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
2872   if (N0.getOpcode() == ISD::SETCC) {
2873     SDOperand SCC = 
2874       SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2875                        DAG.getConstant(1, VT), DAG.getConstant(0, VT),
2876                        cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
2877     if (SCC.Val) return SCC;
2878   }
2879   
2880   return SDOperand();
2881 }
2882
2883 SDOperand DAGCombiner::visitANY_EXTEND(SDNode *N) {
2884   SDOperand N0 = N->getOperand(0);
2885   MVT::ValueType VT = N->getValueType(0);
2886   
2887   // fold (aext c1) -> c1
2888   if (isa<ConstantSDNode>(N0))
2889     return DAG.getNode(ISD::ANY_EXTEND, VT, N0);
2890   // fold (aext (aext x)) -> (aext x)
2891   // fold (aext (zext x)) -> (zext x)
2892   // fold (aext (sext x)) -> (sext x)
2893   if (N0.getOpcode() == ISD::ANY_EXTEND  ||
2894       N0.getOpcode() == ISD::ZERO_EXTEND ||
2895       N0.getOpcode() == ISD::SIGN_EXTEND)
2896     return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
2897   
2898   // fold (aext (truncate (load x))) -> (aext (smaller load x))
2899   // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
2900   if (N0.getOpcode() == ISD::TRUNCATE) {
2901     SDOperand NarrowLoad = ReduceLoadWidth(N0.Val);
2902     if (NarrowLoad.Val) {
2903       if (NarrowLoad.Val != N0.Val)
2904         CombineTo(N0.Val, NarrowLoad);
2905       return DAG.getNode(ISD::ANY_EXTEND, VT, NarrowLoad);
2906     }
2907   }
2908
2909   // fold (aext (truncate x))
2910   if (N0.getOpcode() == ISD::TRUNCATE) {
2911     SDOperand TruncOp = N0.getOperand(0);
2912     if (TruncOp.getValueType() == VT)
2913       return TruncOp; // x iff x size == zext size.
2914     if (TruncOp.getValueType() > VT)
2915       return DAG.getNode(ISD::TRUNCATE, VT, TruncOp);
2916     return DAG.getNode(ISD::ANY_EXTEND, VT, TruncOp);
2917   }
2918   
2919   // fold (aext (and (trunc x), cst)) -> (and x, cst).
2920   if (N0.getOpcode() == ISD::AND &&
2921       N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
2922       N0.getOperand(1).getOpcode() == ISD::Constant) {
2923     SDOperand X = N0.getOperand(0).getOperand(0);
2924     if (X.getValueType() < VT) {
2925       X = DAG.getNode(ISD::ANY_EXTEND, VT, X);
2926     } else if (X.getValueType() > VT) {
2927       X = DAG.getNode(ISD::TRUNCATE, VT, X);
2928     }
2929     uint64_t Mask = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
2930     return DAG.getNode(ISD::AND, VT, X, DAG.getConstant(Mask, VT));
2931   }
2932   
2933   // fold (aext (load x)) -> (aext (truncate (extload x)))
2934   if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
2935       (!AfterLegalize||TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
2936     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2937     SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
2938                                        LN0->getBasePtr(), LN0->getSrcValue(),
2939                                        LN0->getSrcValueOffset(),
2940                                        N0.getValueType(),
2941                                        LN0->isVolatile(), 
2942                                        LN0->getAlignment());
2943     CombineTo(N, ExtLoad);
2944     CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2945               ExtLoad.getValue(1));
2946     return SDOperand(N, 0);   // Return N so it doesn't get rechecked!
2947   }
2948   
2949   // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
2950   // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
2951   // fold (aext ( extload x)) -> (aext (truncate (extload  x)))
2952   if (N0.getOpcode() == ISD::LOAD &&
2953       !ISD::isNON_EXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
2954       N0.hasOneUse()) {
2955     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2956     MVT::ValueType EVT = LN0->getLoadedVT();
2957     SDOperand ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), VT,
2958                                        LN0->getChain(), LN0->getBasePtr(),
2959                                        LN0->getSrcValue(),
2960                                        LN0->getSrcValueOffset(), EVT,
2961                                        LN0->isVolatile(), 
2962                                        LN0->getAlignment());
2963     CombineTo(N, ExtLoad);
2964     CombineTo(N0.Val, DAG.getNode(ISD::TRUNCATE, N0.getValueType(), ExtLoad),
2965               ExtLoad.getValue(1));
2966     return SDOperand(N, 0);   // Return N so it doesn't get rechecked!
2967   }
2968   
2969   // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
2970   if (N0.getOpcode() == ISD::SETCC) {
2971     SDOperand SCC = 
2972       SimplifySelectCC(N0.getOperand(0), N0.getOperand(1),
2973                        DAG.getConstant(1, VT), DAG.getConstant(0, VT),
2974                        cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
2975     if (SCC.Val)
2976       return SCC;
2977   }
2978   
2979   return SDOperand();
2980 }
2981
2982 /// GetDemandedBits - See if the specified operand can be simplified with the
2983 /// knowledge that only the bits specified by Mask are used.  If so, return the
2984 /// simpler operand, otherwise return a null SDOperand.
2985 SDOperand DAGCombiner::GetDemandedBits(SDOperand V, uint64_t Mask) {
2986   switch (V.getOpcode()) {
2987   default: break;
2988   case ISD::OR:
2989   case ISD::XOR:
2990     // If the LHS or RHS don't contribute bits to the or, drop them.
2991     if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
2992       return V.getOperand(1);
2993     if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
2994       return V.getOperand(0);
2995     break;
2996   case ISD::SRL:
2997     // Only look at single-use SRLs.
2998     if (!V.Val->hasOneUse())
2999       break;
3000     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
3001       // See if we can recursively simplify the LHS.
3002       unsigned Amt = RHSC->getValue();
3003       Mask = (Mask << Amt) & MVT::getIntVTBitMask(V.getValueType());
3004       SDOperand SimplifyLHS = GetDemandedBits(V.getOperand(0), Mask);
3005       if (SimplifyLHS.Val) {
3006         return DAG.getNode(ISD::SRL, V.getValueType(), 
3007                            SimplifyLHS, V.getOperand(1));
3008       }
3009     }
3010   }
3011   return SDOperand();
3012 }
3013
3014 /// ReduceLoadWidth - If the result of a wider load is shifted to right of N
3015 /// bits and then truncated to a narrower type and where N is a multiple
3016 /// of number of bits of the narrower type, transform it to a narrower load
3017 /// from address + N / num of bits of new type. If the result is to be
3018 /// extended, also fold the extension to form a extending load.
3019 SDOperand DAGCombiner::ReduceLoadWidth(SDNode *N) {
3020   unsigned Opc = N->getOpcode();
3021   ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
3022   SDOperand N0 = N->getOperand(0);
3023   MVT::ValueType VT = N->getValueType(0);
3024   MVT::ValueType EVT = N->getValueType(0);
3025
3026   // Special case: SIGN_EXTEND_INREG is basically truncating to EVT then
3027   // extended to VT.
3028   if (Opc == ISD::SIGN_EXTEND_INREG) {
3029     ExtType = ISD::SEXTLOAD;
3030     EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
3031     if (AfterLegalize && !TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))
3032       return SDOperand();
3033   }
3034
3035   unsigned EVTBits = MVT::getSizeInBits(EVT);
3036   unsigned ShAmt = 0;
3037   bool CombineSRL =  false;
3038   if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
3039     if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
3040       ShAmt = N01->getValue();
3041       // Is the shift amount a multiple of size of VT?
3042       if ((ShAmt & (EVTBits-1)) == 0) {
3043         N0 = N0.getOperand(0);
3044         if (MVT::getSizeInBits(N0.getValueType()) <= EVTBits)
3045           return SDOperand();
3046         CombineSRL = true;
3047       }
3048     }
3049   }
3050
3051   if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
3052       // Do not allow folding to i1 here.  i1 is implicitly stored in memory in
3053       // zero extended form: by shrinking the load, we lose track of the fact
3054       // that it is already zero extended.
3055       // FIXME: This should be reevaluated.
3056       VT != MVT::i1) {
3057     assert(MVT::getSizeInBits(N0.getValueType()) > EVTBits &&
3058            "Cannot truncate to larger type!");
3059     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3060     MVT::ValueType PtrType = N0.getOperand(1).getValueType();
3061     // For big endian targets, we need to adjust the offset to the pointer to
3062     // load the correct bytes.
3063     if (!TLI.isLittleEndian()) {
3064       unsigned LVTStoreBits = MVT::getStoreSizeInBits(N0.getValueType());
3065       unsigned EVTStoreBits = MVT::getStoreSizeInBits(EVT);
3066       ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
3067     }
3068     uint64_t PtrOff =  ShAmt / 8;
3069     unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
3070     SDOperand NewPtr = DAG.getNode(ISD::ADD, PtrType, LN0->getBasePtr(),
3071                                    DAG.getConstant(PtrOff, PtrType));
3072     AddToWorkList(NewPtr.Val);
3073     SDOperand Load = (ExtType == ISD::NON_EXTLOAD)
3074       ? DAG.getLoad(VT, LN0->getChain(), NewPtr,
3075                     LN0->getSrcValue(), LN0->getSrcValueOffset(),
3076                     LN0->isVolatile(), NewAlign)
3077       : DAG.getExtLoad(ExtType, VT, LN0->getChain(), NewPtr,
3078                        LN0->getSrcValue(), LN0->getSrcValueOffset(), EVT,
3079                        LN0->isVolatile(), NewAlign);
3080     AddToWorkList(N);
3081     if (CombineSRL) {
3082       DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
3083       CombineTo(N->getOperand(0).Val, Load);
3084     } else
3085       CombineTo(N0.Val, Load, Load.getValue(1));
3086     if (ShAmt) {
3087       if (Opc == ISD::SIGN_EXTEND_INREG)
3088         return DAG.getNode(Opc, VT, Load, N->getOperand(1));
3089       else
3090         return DAG.getNode(Opc, VT, Load);
3091     }
3092     return SDOperand(N, 0);   // Return N so it doesn't get rechecked!
3093   }
3094
3095   return SDOperand();
3096 }
3097
3098
3099 SDOperand DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
3100   SDOperand N0 = N->getOperand(0);
3101   SDOperand N1 = N->getOperand(1);
3102   MVT::ValueType VT = N->getValueType(0);
3103   MVT::ValueType EVT = cast<VTSDNode>(N1)->getVT();
3104   unsigned EVTBits = MVT::getSizeInBits(EVT);
3105   
3106   // fold (sext_in_reg c1) -> c1
3107   if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
3108     return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0, N1);
3109   
3110   // If the input is already sign extended, just drop the extension.
3111   if (DAG.ComputeNumSignBits(N0) >= MVT::getSizeInBits(VT)-EVTBits+1)
3112     return N0;
3113   
3114   // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
3115   if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
3116       EVT < cast<VTSDNode>(N0.getOperand(1))->getVT()) {
3117     return DAG.getNode(ISD::SIGN_EXTEND_INREG, VT, N0.getOperand(0), N1);
3118   }
3119
3120   // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
3121   if (DAG.MaskedValueIsZero(N0, 1ULL << (EVTBits-1)))
3122     return DAG.getZeroExtendInReg(N0, EVT);
3123   
3124   // fold operands of sext_in_reg based on knowledge that the top bits are not
3125   // demanded.
3126   if (SimplifyDemandedBits(SDOperand(N, 0)))
3127     return SDOperand(N, 0);
3128   
3129   // fold (sext_in_reg (load x)) -> (smaller sextload x)
3130   // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
3131   SDOperand NarrowLoad = ReduceLoadWidth(N);
3132   if (NarrowLoad.Val)
3133     return NarrowLoad;
3134
3135   // fold (sext_in_reg (srl X, 24), i8) -> sra X, 24
3136   // fold (sext_in_reg (srl X, 23), i8) -> sra X, 23 iff possible.
3137   // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
3138   if (N0.getOpcode() == ISD::SRL) {
3139     if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
3140       if (ShAmt->getValue()+EVTBits <= MVT::getSizeInBits(VT)) {
3141         // We can turn this into an SRA iff the input to the SRL is already sign
3142         // extended enough.
3143         unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
3144         if (MVT::getSizeInBits(VT)-(ShAmt->getValue()+EVTBits) < InSignBits)
3145           return DAG.getNode(ISD::SRA, VT, N0.getOperand(0), N0.getOperand(1));
3146       }
3147   }
3148
3149   // fold (sext_inreg (extload x)) -> (sextload x)
3150   if (ISD::isEXTLoad(N0.Val) && 
3151       ISD::isUNINDEXEDLoad(N0.Val) &&
3152       EVT == cast<LoadSDNode>(N0)->getLoadedVT() &&
3153       (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
3154     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3155     SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
3156                                        LN0->getBasePtr(), LN0->getSrcValue(),
3157                                        LN0->getSrcValueOffset(), EVT,
3158                                        LN0->isVolatile(), 
3159                                        LN0->getAlignment());
3160     CombineTo(N, ExtLoad);
3161     CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
3162     return SDOperand(N, 0);   // Return N so it doesn't get rechecked!
3163   }
3164   // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
3165   if (ISD::isZEXTLoad(N0.Val) && ISD::isUNINDEXEDLoad(N0.Val) &&
3166       N0.hasOneUse() &&
3167       EVT == cast<LoadSDNode>(N0)->getLoadedVT() &&
3168       (!AfterLegalize || TLI.isLoadXLegal(ISD::SEXTLOAD, EVT))) {
3169     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3170     SDOperand ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, VT, LN0->getChain(),
3171                                        LN0->getBasePtr(), LN0->getSrcValue(),
3172                                        LN0->getSrcValueOffset(), EVT,
3173                                        LN0->isVolatile(), 
3174                                        LN0->getAlignment());
3175     CombineTo(N, ExtLoad);
3176     CombineTo(N0.Val, ExtLoad, ExtLoad.getValue(1));
3177     return SDOperand(N, 0);   // Return N so it doesn't get rechecked!
3178   }
3179   return SDOperand();
3180 }
3181
3182 SDOperand DAGCombiner::visitTRUNCATE(SDNode *N) {
3183   SDOperand N0 = N->getOperand(0);
3184   MVT::ValueType VT = N->getValueType(0);
3185
3186   // noop truncate
3187   if (N0.getValueType() == N->getValueType(0))
3188     return N0;
3189   // fold (truncate c1) -> c1
3190   if (isa<ConstantSDNode>(N0))
3191     return DAG.getNode(ISD::TRUNCATE, VT, N0);
3192   // fold (truncate (truncate x)) -> (truncate x)
3193   if (N0.getOpcode() == ISD::TRUNCATE)
3194     return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
3195   // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
3196   if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::SIGN_EXTEND||
3197       N0.getOpcode() == ISD::ANY_EXTEND) {
3198     if (N0.getOperand(0).getValueType() < VT)
3199       // if the source is smaller than the dest, we still need an extend
3200       return DAG.getNode(N0.getOpcode(), VT, N0.getOperand(0));
3201     else if (N0.getOperand(0).getValueType() > VT)
3202       // if the source is larger than the dest, than we just need the truncate
3203       return DAG.getNode(ISD::TRUNCATE, VT, N0.getOperand(0));
3204     else
3205       // if the source and dest are the same type, we can drop both the extend
3206       // and the truncate
3207       return N0.getOperand(0);
3208   }
3209
3210   // See if we can simplify the input to this truncate through knowledge that
3211   // only the low bits are being used.  For example "trunc (or (shl x, 8), y)"
3212   // -> trunc y
3213   SDOperand Shorter = GetDemandedBits(N0, MVT::getIntVTBitMask(VT));
3214   if (Shorter.Val)
3215     return DAG.getNode(ISD::TRUNCATE, VT, Shorter);
3216
3217   // fold (truncate (load x)) -> (smaller load x)
3218   // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
3219   return ReduceLoadWidth(N);
3220 }
3221
3222 SDOperand DAGCombiner::visitBIT_CONVERT(SDNode *N) {
3223   SDOperand N0 = N->getOperand(0);
3224   MVT::ValueType VT = N->getValueType(0);
3225
3226   // If the input is a BUILD_VECTOR with all constant elements, fold this now.
3227   // Only do this before legalize, since afterward the target may be depending
3228   // on the bitconvert.
3229   // First check to see if this is all constant.
3230   if (!AfterLegalize &&
3231       N0.getOpcode() == ISD::BUILD_VECTOR && N0.Val->hasOneUse() &&
3232       MVT::isVector(VT)) {
3233     bool isSimple = true;
3234     for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
3235       if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
3236           N0.getOperand(i).getOpcode() != ISD::Constant &&
3237           N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
3238         isSimple = false; 
3239         break;
3240       }
3241         
3242     MVT::ValueType DestEltVT = MVT::getVectorElementType(N->getValueType(0));
3243     assert(!MVT::isVector(DestEltVT) &&
3244            "Element type of vector ValueType must not be vector!");
3245     if (isSimple) {
3246       return ConstantFoldBIT_CONVERTofBUILD_VECTOR(N0.Val, DestEltVT);
3247     }
3248   }
3249   
3250   // If the input is a constant, let getNode() fold it.
3251   if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
3252     SDOperand Res = DAG.getNode(ISD::BIT_CONVERT, VT, N0);
3253     if (Res.Val != N) return Res;
3254   }
3255   
3256   if (N0.getOpcode() == ISD::BIT_CONVERT)  // conv(conv(x,t1),t2) -> conv(x,t2)
3257     return DAG.getNode(ISD::BIT_CONVERT, VT, N0.getOperand(0));
3258
3259   // fold (conv (load x)) -> (load (conv*)x)
3260   // If the resultant load doesn't need a higher alignment than the original!
3261   if (ISD::isNormalLoad(N0.Val) && N0.hasOneUse() &&
3262       TLI.isOperationLegal(ISD::LOAD, VT)) {
3263     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3264     unsigned Align = TLI.getTargetMachine().getTargetData()->
3265       getABITypeAlignment(MVT::getTypeForValueType(VT));
3266     unsigned OrigAlign = LN0->getAlignment();
3267     if (Align <= OrigAlign) {
3268       SDOperand Load = DAG.getLoad(VT, LN0->getChain(), LN0->getBasePtr(),
3269                                    LN0->getSrcValue(), LN0->getSrcValueOffset(),
3270                                    LN0->isVolatile(), Align);
3271       AddToWorkList(N);
3272       CombineTo(N0.Val, DAG.getNode(ISD::BIT_CONVERT, N0.getValueType(), Load),
3273                 Load.getValue(1));
3274       return Load;
3275     }
3276   }
3277   
3278   return SDOperand();
3279 }
3280
3281 /// ConstantFoldBIT_CONVERTofBUILD_VECTOR - We know that BV is a build_vector
3282 /// node with Constant, ConstantFP or Undef operands.  DstEltVT indicates the 
3283 /// destination element value type.
3284 SDOperand DAGCombiner::
3285 ConstantFoldBIT_CONVERTofBUILD_VECTOR(SDNode *BV, MVT::ValueType DstEltVT) {
3286   MVT::ValueType SrcEltVT = BV->getOperand(0).getValueType();
3287   
3288   // If this is already the right type, we're done.
3289   if (SrcEltVT == DstEltVT) return SDOperand(BV, 0);
3290   
3291   unsigned SrcBitSize = MVT::getSizeInBits(SrcEltVT);
3292   unsigned DstBitSize = MVT::getSizeInBits(DstEltVT);
3293   
3294   // If this is a conversion of N elements of one type to N elements of another
3295   // type, convert each element.  This handles FP<->INT cases.
3296   if (SrcBitSize == DstBitSize) {
3297     SmallVector<SDOperand, 8> Ops;
3298     for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
3299       Ops.push_back(DAG.getNode(ISD::BIT_CONVERT, DstEltVT, BV->getOperand(i)));
3300       AddToWorkList(Ops.back().Val);
3301     }
3302     MVT::ValueType VT =
3303       MVT::getVectorType(DstEltVT,
3304                          MVT::getVectorNumElements(BV->getValueType(0)));
3305     return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
3306   }
3307   
3308   // Otherwise, we're growing or shrinking the elements.  To avoid having to
3309   // handle annoying details of growing/shrinking FP values, we convert them to
3310   // int first.
3311   if (MVT::isFloatingPoint(SrcEltVT)) {
3312     // Convert the input float vector to a int vector where the elements are the
3313     // same sizes.
3314     assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
3315     MVT::ValueType IntVT = SrcEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
3316     BV = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, IntVT).Val;
3317     SrcEltVT = IntVT;
3318   }
3319   
3320   // Now we know the input is an integer vector.  If the output is a FP type,
3321   // convert to integer first, then to FP of the right size.
3322   if (MVT::isFloatingPoint(DstEltVT)) {
3323     assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
3324     MVT::ValueType TmpVT = DstEltVT == MVT::f32 ? MVT::i32 : MVT::i64;
3325     SDNode *Tmp = ConstantFoldBIT_CONVERTofBUILD_VECTOR(BV, TmpVT).Val;
3326     
3327     // Next, convert to FP elements of the same size.
3328     return ConstantFoldBIT_CONVERTofBUILD_VECTOR(Tmp, DstEltVT);
3329   }
3330   
3331   // Okay, we know the src/dst types are both integers of differing types.
3332   // Handling growing first.
3333   assert(MVT::isInteger(SrcEltVT) && MVT::isInteger(DstEltVT));
3334   if (SrcBitSize < DstBitSize) {
3335     unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
3336     
3337     SmallVector<SDOperand, 8> Ops;
3338     for (unsigned i = 0, e = BV->getNumOperands(); i != e;
3339          i += NumInputsPerOutput) {
3340       bool isLE = TLI.isLittleEndian();
3341       uint64_t NewBits = 0;
3342       bool EltIsUndef = true;
3343       for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
3344         // Shift the previously computed bits over.
3345         NewBits <<= SrcBitSize;
3346         SDOperand Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
3347         if (Op.getOpcode() == ISD::UNDEF) continue;
3348         EltIsUndef = false;
3349         
3350         NewBits |= cast<ConstantSDNode>(Op)->getValue();
3351       }
3352       
3353       if (EltIsUndef)
3354         Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3355       else
3356         Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
3357     }
3358
3359     MVT::ValueType VT = MVT::getVectorType(DstEltVT,
3360                                            Ops.size());
3361     return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
3362   }
3363   
3364   // Finally, this must be the case where we are shrinking elements: each input
3365   // turns into multiple outputs.
3366   unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
3367   SmallVector<SDOperand, 8> Ops;
3368   for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
3369     if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
3370       for (unsigned j = 0; j != NumOutputsPerInput; ++j)
3371         Ops.push_back(DAG.getNode(ISD::UNDEF, DstEltVT));
3372       continue;
3373     }
3374     uint64_t OpVal = cast<ConstantSDNode>(BV->getOperand(i))->getValue();
3375
3376     for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
3377       unsigned ThisVal = OpVal & ((1ULL << DstBitSize)-1);
3378       OpVal >>= DstBitSize;
3379       Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
3380     }
3381
3382     // For big endian targets, swap the order of the pieces of each element.
3383     if (!TLI.isLittleEndian())
3384       std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
3385   }
3386   MVT::ValueType VT = MVT::getVectorType(DstEltVT, Ops.size());
3387   return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
3388 }
3389
3390
3391
3392 SDOperand DAGCombiner::visitFADD(SDNode *N) {
3393   SDOperand N0 = N->getOperand(0);
3394   SDOperand N1 = N->getOperand(1);
3395   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3396   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
3397   MVT::ValueType VT = N->getValueType(0);
3398   
3399   // fold vector ops
3400   if (MVT::isVector(VT)) {
3401     SDOperand FoldedVOp = SimplifyVBinOp(N);
3402     if (FoldedVOp.Val) return FoldedVOp;
3403   }
3404   
3405   // fold (fadd c1, c2) -> c1+c2
3406   if (N0CFP && N1CFP && VT != MVT::ppcf128)
3407     return DAG.getNode(ISD::FADD, VT, N0, N1);
3408   // canonicalize constant to RHS
3409   if (N0CFP && !N1CFP)
3410     return DAG.getNode(ISD::FADD, VT, N1, N0);
3411   // fold (A + (-B)) -> A-B
3412   if (isNegatibleForFree(N1) == 2)
3413     return DAG.getNode(ISD::FSUB, VT, N0, GetNegatedExpression(N1, DAG));
3414   // fold ((-A) + B) -> B-A
3415   if (isNegatibleForFree(N0) == 2)
3416     return DAG.getNode(ISD::FSUB, VT, N1, GetNegatedExpression(N0, DAG));
3417   
3418   // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
3419   if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FADD &&
3420       N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3421     return DAG.getNode(ISD::FADD, VT, N0.getOperand(0),
3422                        DAG.getNode(ISD::FADD, VT, N0.getOperand(1), N1));
3423   
3424   return SDOperand();
3425 }
3426
3427 SDOperand DAGCombiner::visitFSUB(SDNode *N) {
3428   SDOperand N0 = N->getOperand(0);
3429   SDOperand N1 = N->getOperand(1);
3430   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3431   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
3432   MVT::ValueType VT = N->getValueType(0);
3433   
3434   // fold vector ops
3435   if (MVT::isVector(VT)) {
3436     SDOperand FoldedVOp = SimplifyVBinOp(N);
3437     if (FoldedVOp.Val) return FoldedVOp;
3438   }
3439   
3440   // fold (fsub c1, c2) -> c1-c2
3441   if (N0CFP && N1CFP && VT != MVT::ppcf128)
3442     return DAG.getNode(ISD::FSUB, VT, N0, N1);
3443   // fold (0-B) -> -B
3444   if (UnsafeFPMath && N0CFP && N0CFP->getValueAPF().isZero()) {
3445     if (isNegatibleForFree(N1))
3446       return GetNegatedExpression(N1, DAG);
3447     return DAG.getNode(ISD::FNEG, VT, N1);
3448   }
3449   // fold (A-(-B)) -> A+B
3450   if (isNegatibleForFree(N1))
3451     return DAG.getNode(ISD::FADD, VT, N0, GetNegatedExpression(N1, DAG));
3452   
3453   return SDOperand();
3454 }
3455
3456 SDOperand DAGCombiner::visitFMUL(SDNode *N) {
3457   SDOperand N0 = N->getOperand(0);
3458   SDOperand N1 = N->getOperand(1);
3459   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3460   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
3461   MVT::ValueType VT = N->getValueType(0);
3462
3463   // fold vector ops
3464   if (MVT::isVector(VT)) {
3465     SDOperand FoldedVOp = SimplifyVBinOp(N);
3466     if (FoldedVOp.Val) return FoldedVOp;
3467   }
3468   
3469   // fold (fmul c1, c2) -> c1*c2
3470   if (N0CFP && N1CFP && VT != MVT::ppcf128)
3471     return DAG.getNode(ISD::FMUL, VT, N0, N1);
3472   // canonicalize constant to RHS
3473   if (N0CFP && !N1CFP)
3474     return DAG.getNode(ISD::FMUL, VT, N1, N0);
3475   // fold (fmul X, 2.0) -> (fadd X, X)
3476   if (N1CFP && N1CFP->isExactlyValue(+2.0))
3477     return DAG.getNode(ISD::FADD, VT, N0, N0);
3478   // fold (fmul X, -1.0) -> (fneg X)
3479   if (N1CFP && N1CFP->isExactlyValue(-1.0))
3480     return DAG.getNode(ISD::FNEG, VT, N0);
3481   
3482   // -X * -Y -> X*Y
3483   if (char LHSNeg = isNegatibleForFree(N0)) {
3484     if (char RHSNeg = isNegatibleForFree(N1)) {
3485       // Both can be negated for free, check to see if at least one is cheaper
3486       // negated.
3487       if (LHSNeg == 2 || RHSNeg == 2)
3488         return DAG.getNode(ISD::FMUL, VT, GetNegatedExpression(N0, DAG),
3489                            GetNegatedExpression(N1, DAG));
3490     }
3491   }
3492   
3493   // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
3494   if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FMUL &&
3495       N0.Val->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
3496     return DAG.getNode(ISD::FMUL, VT, N0.getOperand(0),
3497                        DAG.getNode(ISD::FMUL, VT, N0.getOperand(1), N1));
3498   
3499   return SDOperand();
3500 }
3501
3502 SDOperand DAGCombiner::visitFDIV(SDNode *N) {
3503   SDOperand N0 = N->getOperand(0);
3504   SDOperand N1 = N->getOperand(1);
3505   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3506   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
3507   MVT::ValueType VT = N->getValueType(0);
3508
3509   // fold vector ops
3510   if (MVT::isVector(VT)) {
3511     SDOperand FoldedVOp = SimplifyVBinOp(N);
3512     if (FoldedVOp.Val) return FoldedVOp;
3513   }
3514   
3515   // fold (fdiv c1, c2) -> c1/c2
3516   if (N0CFP && N1CFP && VT != MVT::ppcf128)
3517     return DAG.getNode(ISD::FDIV, VT, N0, N1);
3518   
3519   
3520   // -X / -Y -> X*Y
3521   if (char LHSNeg = isNegatibleForFree(N0)) {
3522     if (char RHSNeg = isNegatibleForFree(N1)) {
3523       // Both can be negated for free, check to see if at least one is cheaper
3524       // negated.
3525       if (LHSNeg == 2 || RHSNeg == 2)
3526         return DAG.getNode(ISD::FDIV, VT, GetNegatedExpression(N0, DAG),
3527                            GetNegatedExpression(N1, DAG));
3528     }
3529   }
3530   
3531   return SDOperand();
3532 }
3533
3534 SDOperand DAGCombiner::visitFREM(SDNode *N) {
3535   SDOperand N0 = N->getOperand(0);
3536   SDOperand N1 = N->getOperand(1);
3537   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3538   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
3539   MVT::ValueType VT = N->getValueType(0);
3540
3541   // fold (frem c1, c2) -> fmod(c1,c2)
3542   if (N0CFP && N1CFP && VT != MVT::ppcf128)
3543     return DAG.getNode(ISD::FREM, VT, N0, N1);
3544
3545   return SDOperand();
3546 }
3547
3548 SDOperand DAGCombiner::visitFCOPYSIGN(SDNode *N) {
3549   SDOperand N0 = N->getOperand(0);
3550   SDOperand N1 = N->getOperand(1);
3551   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3552   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
3553   MVT::ValueType VT = N->getValueType(0);
3554
3555   if (N0CFP && N1CFP && VT != MVT::ppcf128)  // Constant fold
3556     return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1);
3557   
3558   if (N1CFP) {
3559     const APFloat& V = N1CFP->getValueAPF();
3560     // copysign(x, c1) -> fabs(x)       iff ispos(c1)
3561     // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
3562     if (!V.isNegative())
3563       return DAG.getNode(ISD::FABS, VT, N0);
3564     else
3565       return DAG.getNode(ISD::FNEG, VT, DAG.getNode(ISD::FABS, VT, N0));
3566   }
3567   
3568   // copysign(fabs(x), y) -> copysign(x, y)
3569   // copysign(fneg(x), y) -> copysign(x, y)
3570   // copysign(copysign(x,z), y) -> copysign(x, y)
3571   if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
3572       N0.getOpcode() == ISD::FCOPYSIGN)
3573     return DAG.getNode(ISD::FCOPYSIGN, VT, N0.getOperand(0), N1);
3574
3575   // copysign(x, abs(y)) -> abs(x)
3576   if (N1.getOpcode() == ISD::FABS)
3577     return DAG.getNode(ISD::FABS, VT, N0);
3578   
3579   // copysign(x, copysign(y,z)) -> copysign(x, z)
3580   if (N1.getOpcode() == ISD::FCOPYSIGN)
3581     return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(1));
3582   
3583   // copysign(x, fp_extend(y)) -> copysign(x, y)
3584   // copysign(x, fp_round(y)) -> copysign(x, y)
3585   if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
3586     return DAG.getNode(ISD::FCOPYSIGN, VT, N0, N1.getOperand(0));
3587   
3588   return SDOperand();
3589 }
3590
3591
3592
3593 SDOperand DAGCombiner::visitSINT_TO_FP(SDNode *N) {
3594   SDOperand N0 = N->getOperand(0);
3595   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3596   MVT::ValueType VT = N->getValueType(0);
3597   
3598   // fold (sint_to_fp c1) -> c1fp
3599   if (N0C && N0.getValueType() != MVT::ppcf128)
3600     return DAG.getNode(ISD::SINT_TO_FP, VT, N0);
3601   return SDOperand();
3602 }
3603
3604 SDOperand DAGCombiner::visitUINT_TO_FP(SDNode *N) {
3605   SDOperand N0 = N->getOperand(0);
3606   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3607   MVT::ValueType VT = N->getValueType(0);
3608
3609   // fold (uint_to_fp c1) -> c1fp
3610   if (N0C && N0.getValueType() != MVT::ppcf128)
3611     return DAG.getNode(ISD::UINT_TO_FP, VT, N0);
3612   return SDOperand();
3613 }
3614
3615 SDOperand DAGCombiner::visitFP_TO_SINT(SDNode *N) {
3616   SDOperand N0 = N->getOperand(0);
3617   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3618   MVT::ValueType VT = N->getValueType(0);
3619   
3620   // fold (fp_to_sint c1fp) -> c1
3621   if (N0CFP)
3622     return DAG.getNode(ISD::FP_TO_SINT, VT, N0);
3623   return SDOperand();
3624 }
3625
3626 SDOperand DAGCombiner::visitFP_TO_UINT(SDNode *N) {
3627   SDOperand N0 = N->getOperand(0);
3628   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3629   MVT::ValueType VT = N->getValueType(0);
3630   
3631   // fold (fp_to_uint c1fp) -> c1
3632   if (N0CFP && VT != MVT::ppcf128)
3633     return DAG.getNode(ISD::FP_TO_UINT, VT, N0);
3634   return SDOperand();
3635 }
3636
3637 SDOperand DAGCombiner::visitFP_ROUND(SDNode *N) {
3638   SDOperand N0 = N->getOperand(0);
3639   SDOperand N1 = N->getOperand(1);
3640   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3641   MVT::ValueType VT = N->getValueType(0);
3642   
3643   // fold (fp_round c1fp) -> c1fp
3644   if (N0CFP && N0.getValueType() != MVT::ppcf128)
3645     return DAG.getNode(ISD::FP_ROUND, VT, N0, N1);
3646   
3647   // fold (fp_round (fp_extend x)) -> x
3648   if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
3649     return N0.getOperand(0);
3650   
3651   // fold (fp_round (fp_round x)) -> (fp_round x)
3652   if (N0.getOpcode() == ISD::FP_ROUND) {
3653     // This is a value preserving truncation if both round's are.
3654     bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
3655                    N0.Val->getConstantOperandVal(1) == 1;
3656     return DAG.getNode(ISD::FP_ROUND, VT, N0.getOperand(0),
3657                        DAG.getIntPtrConstant(IsTrunc));
3658   }
3659   
3660   // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
3661   if (N0.getOpcode() == ISD::FCOPYSIGN && N0.Val->hasOneUse()) {
3662     SDOperand Tmp = DAG.getNode(ISD::FP_ROUND, VT, N0.getOperand(0), N1);
3663     AddToWorkList(Tmp.Val);
3664     return DAG.getNode(ISD::FCOPYSIGN, VT, Tmp, N0.getOperand(1));
3665   }
3666   
3667   return SDOperand();
3668 }
3669
3670 SDOperand DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
3671   SDOperand N0 = N->getOperand(0);
3672   MVT::ValueType VT = N->getValueType(0);
3673   MVT::ValueType EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
3674   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3675   
3676   // fold (fp_round_inreg c1fp) -> c1fp
3677   if (N0CFP) {
3678     SDOperand Round = DAG.getConstantFP(N0CFP->getValueAPF(), EVT);
3679     return DAG.getNode(ISD::FP_EXTEND, VT, Round);
3680   }
3681   return SDOperand();
3682 }
3683
3684 SDOperand DAGCombiner::visitFP_EXTEND(SDNode *N) {
3685   SDOperand N0 = N->getOperand(0);
3686   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3687   MVT::ValueType VT = N->getValueType(0);
3688   
3689   // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
3690   if (N->hasOneUse() && (*N->use_begin())->getOpcode() == ISD::FP_ROUND)
3691     return SDOperand();
3692
3693   // fold (fp_extend c1fp) -> c1fp
3694   if (N0CFP && VT != MVT::ppcf128)
3695     return DAG.getNode(ISD::FP_EXTEND, VT, N0);
3696
3697   // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
3698   // value of X.
3699   if (N0.getOpcode() == ISD::FP_ROUND && N0.Val->getConstantOperandVal(1) == 1){
3700     SDOperand In = N0.getOperand(0);
3701     if (In.getValueType() == VT) return In;
3702     if (VT < In.getValueType())
3703       return DAG.getNode(ISD::FP_ROUND, VT, In, N0.getOperand(1));
3704     return DAG.getNode(ISD::FP_EXTEND, VT, In);
3705   }
3706       
3707   // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
3708   if (ISD::isNON_EXTLoad(N0.Val) && N0.hasOneUse() &&
3709       (!AfterLegalize||TLI.isLoadXLegal(ISD::EXTLOAD, N0.getValueType()))) {
3710     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
3711     SDOperand ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, VT, LN0->getChain(),
3712                                        LN0->getBasePtr(), LN0->getSrcValue(),
3713                                        LN0->getSrcValueOffset(),
3714                                        N0.getValueType(),
3715                                        LN0->isVolatile(), 
3716                                        LN0->getAlignment());
3717     CombineTo(N, ExtLoad);
3718     CombineTo(N0.Val, DAG.getNode(ISD::FP_ROUND, N0.getValueType(), ExtLoad,
3719                                   DAG.getIntPtrConstant(1)),
3720               ExtLoad.getValue(1));
3721     return SDOperand(N, 0);   // Return N so it doesn't get rechecked!
3722   }
3723   
3724   
3725   return SDOperand();
3726 }
3727
3728 SDOperand DAGCombiner::visitFNEG(SDNode *N) {
3729   SDOperand N0 = N->getOperand(0);
3730
3731   if (isNegatibleForFree(N0))
3732     return GetNegatedExpression(N0, DAG);
3733
3734   return SDOperand();
3735 }
3736
3737 SDOperand DAGCombiner::visitFABS(SDNode *N) {
3738   SDOperand N0 = N->getOperand(0);
3739   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
3740   MVT::ValueType VT = N->getValueType(0);
3741   
3742   // fold (fabs c1) -> fabs(c1)
3743   if (N0CFP && VT != MVT::ppcf128)
3744     return DAG.getNode(ISD::FABS, VT, N0);
3745   // fold (fabs (fabs x)) -> (fabs x)
3746   if (N0.getOpcode() == ISD::FABS)
3747     return N->getOperand(0);
3748   // fold (fabs (fneg x)) -> (fabs x)
3749   // fold (fabs (fcopysign x, y)) -> (fabs x)
3750   if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
3751     return DAG.getNode(ISD::FABS, VT, N0.getOperand(0));
3752   
3753   return SDOperand();
3754 }
3755
3756 SDOperand DAGCombiner::visitBRCOND(SDNode *N) {
3757   SDOperand Chain = N->getOperand(0);
3758   SDOperand N1 = N->getOperand(1);
3759   SDOperand N2 = N->getOperand(2);
3760   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3761   
3762   // never taken branch, fold to chain
3763   if (N1C && N1C->isNullValue())
3764     return Chain;
3765   // unconditional branch
3766   if (N1C && N1C->getValue() == 1)
3767     return DAG.getNode(ISD::BR, MVT::Other, Chain, N2);
3768   // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
3769   // on the target.
3770   if (N1.getOpcode() == ISD::SETCC && 
3771       TLI.isOperationLegal(ISD::BR_CC, MVT::Other)) {
3772     return DAG.getNode(ISD::BR_CC, MVT::Other, Chain, N1.getOperand(2),
3773                        N1.getOperand(0), N1.getOperand(1), N2);
3774   }
3775   return SDOperand();
3776 }
3777
3778 // Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
3779 //
3780 SDOperand DAGCombiner::visitBR_CC(SDNode *N) {
3781   CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
3782   SDOperand CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
3783   
3784   // Use SimplifySetCC  to simplify SETCC's.
3785   SDOperand Simp = SimplifySetCC(MVT::i1, CondLHS, CondRHS, CC->get(), false);
3786   if (Simp.Val) AddToWorkList(Simp.Val);
3787
3788   ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(Simp.Val);
3789
3790   // fold br_cc true, dest -> br dest (unconditional branch)
3791   if (SCCC && SCCC->getValue())
3792     return DAG.getNode(ISD::BR, MVT::Other, N->getOperand(0),
3793                        N->getOperand(4));
3794   // fold br_cc false, dest -> unconditional fall through
3795   if (SCCC && SCCC->isNullValue())
3796     return N->getOperand(0);
3797
3798   // fold to a simpler setcc
3799   if (Simp.Val && Simp.getOpcode() == ISD::SETCC)
3800     return DAG.getNode(ISD::BR_CC, MVT::Other, N->getOperand(0), 
3801                        Simp.getOperand(2), Simp.getOperand(0),
3802                        Simp.getOperand(1), N->getOperand(4));
3803   return SDOperand();
3804 }
3805
3806
3807 /// CombineToPreIndexedLoadStore - Try turning a load / store and a
3808 /// pre-indexed load / store when the base pointer is a add or subtract
3809 /// and it has other uses besides the load / store. After the
3810 /// transformation, the new indexed load / store has effectively folded
3811 /// the add / subtract in and all of its other uses are redirected to the
3812 /// new load / store.
3813 bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
3814   if (!AfterLegalize)
3815     return false;
3816
3817   bool isLoad = true;
3818   SDOperand Ptr;
3819   MVT::ValueType VT;
3820   if (LoadSDNode *LD  = dyn_cast<LoadSDNode>(N)) {
3821     if (LD->isIndexed())
3822       return false;
3823     VT = LD->getLoadedVT();
3824     if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
3825         !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
3826       return false;
3827     Ptr = LD->getBasePtr();
3828   } else if (StoreSDNode *ST  = dyn_cast<StoreSDNode>(N)) {
3829     if (ST->isIndexed())
3830       return false;
3831     VT = ST->getStoredVT();
3832     if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
3833         !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
3834       return false;
3835     Ptr = ST->getBasePtr();
3836     isLoad = false;
3837   } else
3838     return false;
3839
3840   // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
3841   // out.  There is no reason to make this a preinc/predec.
3842   if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
3843       Ptr.Val->hasOneUse())
3844     return false;
3845
3846   // Ask the target to do addressing mode selection.
3847   SDOperand BasePtr;
3848   SDOperand Offset;
3849   ISD::MemIndexedMode AM = ISD::UNINDEXED;
3850   if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
3851     return false;
3852   // Don't create a indexed load / store with zero offset.
3853   if (isa<ConstantSDNode>(Offset) &&
3854       cast<ConstantSDNode>(Offset)->getValue() == 0)
3855     return false;
3856   
3857   // Try turning it into a pre-indexed load / store except when:
3858   // 1) The new base ptr is a frame index.
3859   // 2) If N is a store and the new base ptr is either the same as or is a
3860   //    predecessor of the value being stored.
3861   // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
3862   //    that would create a cycle.
3863   // 4) All uses are load / store ops that use it as old base ptr.
3864
3865   // Check #1.  Preinc'ing a frame index would require copying the stack pointer
3866   // (plus the implicit offset) to a register to preinc anyway.
3867   if (isa<FrameIndexSDNode>(BasePtr))
3868     return false;
3869   
3870   // Check #2.
3871   if (!isLoad) {
3872     SDOperand Val = cast<StoreSDNode>(N)->getValue();
3873     if (Val == BasePtr || BasePtr.Val->isPredecessor(Val.Val))
3874       return false;
3875   }
3876
3877   // Now check for #3 and #4.
3878   bool RealUse = false;
3879   for (SDNode::use_iterator I = Ptr.Val->use_begin(),
3880          E = Ptr.Val->use_end(); I != E; ++I) {
3881     SDNode *Use = *I;
3882     if (Use == N)
3883       continue;
3884     if (Use->isPredecessor(N))
3885       return false;
3886
3887     if (!((Use->getOpcode() == ISD::LOAD &&
3888            cast<LoadSDNode>(Use)->getBasePtr() == Ptr) ||
3889           (Use->getOpcode() == ISD::STORE) &&
3890           cast<StoreSDNode>(Use)->getBasePtr() == Ptr))
3891       RealUse = true;
3892   }
3893   if (!RealUse)
3894     return false;
3895
3896   SDOperand Result;
3897   if (isLoad)
3898     Result = DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM);
3899   else
3900     Result = DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
3901   ++PreIndexedNodes;
3902   ++NodesCombined;
3903   DOUT << "\nReplacing.4 "; DEBUG(N->dump(&DAG));
3904   DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
3905   DOUT << '\n';
3906   std::vector<SDNode*> NowDead;
3907   if (isLoad) {
3908     DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
3909                                   &NowDead);
3910     DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
3911                                   &NowDead);
3912   } else {
3913     DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
3914                                   &NowDead);
3915   }
3916
3917   // Nodes can end up on the worklist more than once.  Make sure we do
3918   // not process a node that has been replaced.
3919   for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
3920     removeFromWorkList(NowDead[i]);
3921   // Finally, since the node is now dead, remove it from the graph.
3922   DAG.DeleteNode(N);
3923
3924   // Replace the uses of Ptr with uses of the updated base value.
3925   DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0),
3926                                 &NowDead);
3927   removeFromWorkList(Ptr.Val);
3928   for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
3929     removeFromWorkList(NowDead[i]);
3930   DAG.DeleteNode(Ptr.Val);
3931
3932   return true;
3933 }
3934
3935 /// CombineToPostIndexedLoadStore - Try combine a load / store with a
3936 /// add / sub of the base pointer node into a post-indexed load / store.
3937 /// The transformation folded the add / subtract into the new indexed
3938 /// load / store effectively and all of its uses are redirected to the
3939 /// new load / store.
3940 bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
3941   if (!AfterLegalize)
3942     return false;
3943
3944   bool isLoad = true;
3945   SDOperand Ptr;
3946   MVT::ValueType VT;
3947   if (LoadSDNode *LD  = dyn_cast<LoadSDNode>(N)) {
3948     if (LD->isIndexed())
3949       return false;
3950     VT = LD->getLoadedVT();
3951     if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
3952         !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
3953       return false;
3954     Ptr = LD->getBasePtr();
3955   } else if (StoreSDNode *ST  = dyn_cast<StoreSDNode>(N)) {
3956     if (ST->isIndexed())
3957       return false;
3958     VT = ST->getStoredVT();
3959     if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
3960         !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
3961       return false;
3962     Ptr = ST->getBasePtr();
3963     isLoad = false;
3964   } else
3965     return false;
3966
3967   if (Ptr.Val->hasOneUse())
3968     return false;
3969   
3970   for (SDNode::use_iterator I = Ptr.Val->use_begin(),
3971          E = Ptr.Val->use_end(); I != E; ++I) {
3972     SDNode *Op = *I;
3973     if (Op == N ||
3974         (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
3975       continue;
3976
3977     SDOperand BasePtr;
3978     SDOperand Offset;
3979     ISD::MemIndexedMode AM = ISD::UNINDEXED;
3980     if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
3981       if (Ptr == Offset)
3982         std::swap(BasePtr, Offset);
3983       if (Ptr != BasePtr)
3984         continue;
3985       // Don't create a indexed load / store with zero offset.
3986       if (isa<ConstantSDNode>(Offset) &&
3987           cast<ConstantSDNode>(Offset)->getValue() == 0)
3988         continue;
3989
3990       // Try turning it into a post-indexed load / store except when
3991       // 1) All uses are load / store ops that use it as base ptr.
3992       // 2) Op must be independent of N, i.e. Op is neither a predecessor
3993       //    nor a successor of N. Otherwise, if Op is folded that would
3994       //    create a cycle.
3995
3996       // Check for #1.
3997       bool TryNext = false;
3998       for (SDNode::use_iterator II = BasePtr.Val->use_begin(),
3999              EE = BasePtr.Val->use_end(); II != EE; ++II) {
4000         SDNode *Use = *II;
4001         if (Use == Ptr.Val)
4002           continue;
4003
4004         // If all the uses are load / store addresses, then don't do the
4005         // transformation.
4006         if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
4007           bool RealUse = false;
4008           for (SDNode::use_iterator III = Use->use_begin(),
4009                  EEE = Use->use_end(); III != EEE; ++III) {
4010             SDNode *UseUse = *III;
4011             if (!((UseUse->getOpcode() == ISD::LOAD &&
4012                    cast<LoadSDNode>(UseUse)->getBasePtr().Val == Use) ||
4013                   (UseUse->getOpcode() == ISD::STORE) &&
4014                   cast<StoreSDNode>(UseUse)->getBasePtr().Val == Use))
4015               RealUse = true;
4016           }
4017
4018           if (!RealUse) {
4019             TryNext = true;
4020             break;
4021           }
4022         }
4023       }
4024       if (TryNext)
4025         continue;
4026
4027       // Check for #2
4028       if (!Op->isPredecessor(N) && !N->isPredecessor(Op)) {
4029         SDOperand Result = isLoad
4030           ? DAG.getIndexedLoad(SDOperand(N,0), BasePtr, Offset, AM)
4031           : DAG.getIndexedStore(SDOperand(N,0), BasePtr, Offset, AM);
4032         ++PostIndexedNodes;
4033         ++NodesCombined;
4034         DOUT << "\nReplacing.5 "; DEBUG(N->dump(&DAG));
4035         DOUT << "\nWith: "; DEBUG(Result.Val->dump(&DAG));
4036         DOUT << '\n';
4037         std::vector<SDNode*> NowDead;
4038         if (isLoad) {
4039           DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(0),
4040                                         &NowDead);
4041           DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Result.getValue(2),
4042                                         &NowDead);
4043         } else {
4044           DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Result.getValue(1),
4045                                         &NowDead);
4046         }
4047
4048         // Nodes can end up on the worklist more than once.  Make sure we do
4049         // not process a node that has been replaced.
4050         for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4051           removeFromWorkList(NowDead[i]);
4052         // Finally, since the node is now dead, remove it from the graph.
4053         DAG.DeleteNode(N);
4054
4055         // Replace the uses of Use with uses of the updated base value.
4056         DAG.ReplaceAllUsesOfValueWith(SDOperand(Op, 0),
4057                                       Result.getValue(isLoad ? 1 : 0),
4058                                       &NowDead);
4059         removeFromWorkList(Op);
4060         for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4061           removeFromWorkList(NowDead[i]);
4062         DAG.DeleteNode(Op);
4063
4064         return true;
4065       }
4066     }
4067   }
4068   return false;
4069 }
4070
4071 /// InferAlignment - If we can infer some alignment information from this
4072 /// pointer, return it.
4073 static unsigned InferAlignment(SDOperand Ptr, SelectionDAG &DAG) {
4074   // If this is a direct reference to a stack slot, use information about the
4075   // stack slot's alignment.
4076   if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr)) {
4077     return DAG.getMachineFunction().getFrameInfo()->
4078          getObjectAlignment(FI->getIndex());
4079   }
4080   
4081   // FIXME: Handle FI+CST.
4082   
4083   return 0;
4084 }
4085
4086 SDOperand DAGCombiner::visitLOAD(SDNode *N) {
4087   LoadSDNode *LD  = cast<LoadSDNode>(N);
4088   SDOperand Chain = LD->getChain();
4089   SDOperand Ptr   = LD->getBasePtr();
4090   
4091   // Try to infer better alignment information than the load already has.
4092   if (LD->isUnindexed()) {
4093     if (unsigned Align = InferAlignment(Ptr, DAG)) {
4094       if (Align > LD->getAlignment())
4095         return DAG.getExtLoad(LD->getExtensionType(), LD->getValueType(0),
4096                               Chain, Ptr, LD->getSrcValue(),
4097                               LD->getSrcValueOffset(), LD->getLoadedVT(),
4098                               LD->isVolatile(), Align);
4099     }
4100   }
4101   
4102
4103   // If load is not volatile and there are no uses of the loaded value (and
4104   // the updated indexed value in case of indexed loads), change uses of the
4105   // chain value into uses of the chain input (i.e. delete the dead load).
4106   if (!LD->isVolatile()) {
4107     if (N->getValueType(1) == MVT::Other) {
4108       // Unindexed loads.
4109       if (N->hasNUsesOfValue(0, 0)) {
4110         // It's not safe to use the two value CombineTo variant here. e.g.
4111         // v1, chain2 = load chain1, loc
4112         // v2, chain3 = load chain2, loc
4113         // v3         = add v2, c
4114         // Now we replace use of chain2 with chain1.  This makes the second load
4115         // isomorphic to the one we are deleting, and thus makes this load live.
4116         std::vector<SDNode*> NowDead;
4117         DOUT << "\nReplacing.6 "; DEBUG(N->dump(&DAG));
4118         DOUT << "\nWith chain: "; DEBUG(Chain.Val->dump(&DAG));
4119         DOUT << "\n";
4120         DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1), Chain, &NowDead);
4121         for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4122           removeFromWorkList(NowDead[i]);
4123         if (N->use_empty()) {
4124           removeFromWorkList(N);
4125           DAG.DeleteNode(N);
4126         }
4127         return SDOperand(N, 0);   // Return N so it doesn't get rechecked!
4128       }
4129     } else {
4130       // Indexed loads.
4131       assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
4132       if (N->hasNUsesOfValue(0, 0) && N->hasNUsesOfValue(0, 1)) {
4133         std::vector<SDNode*> NowDead;
4134         SDOperand Undef = DAG.getNode(ISD::UNDEF, N->getValueType(0));
4135         DOUT << "\nReplacing.6 "; DEBUG(N->dump(&DAG));
4136         DOUT << "\nWith: "; DEBUG(Undef.Val->dump(&DAG));
4137         DOUT << " and 2 other values\n";
4138         DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 0), Undef, &NowDead);
4139         DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 1),
4140                                     DAG.getNode(ISD::UNDEF, N->getValueType(1)),
4141                                       &NowDead);
4142         DAG.ReplaceAllUsesOfValueWith(SDOperand(N, 2), Chain, &NowDead);
4143         removeFromWorkList(N);
4144         for (unsigned i = 0, e = NowDead.size(); i != e; ++i)
4145           removeFromWorkList(NowDead[i]);
4146         DAG.DeleteNode(N);
4147         return SDOperand(N, 0);   // Return N so it doesn't get rechecked!
4148       }
4149     }
4150   }
4151   
4152   // If this load is directly stored, replace the load value with the stored
4153   // value.
4154   // TODO: Handle store large -> read small portion.
4155   // TODO: Handle TRUNCSTORE/LOADEXT
4156   if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
4157     if (ISD::isNON_TRUNCStore(Chain.Val)) {
4158       StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
4159       if (PrevST->getBasePtr() == Ptr &&
4160           PrevST->getValue().getValueType() == N->getValueType(0))
4161       return CombineTo(N, Chain.getOperand(1), Chain);
4162     }
4163   }
4164     
4165   if (CombinerAA) {
4166     // Walk up chain skipping non-aliasing memory nodes.
4167     SDOperand BetterChain = FindBetterChain(N, Chain);
4168     
4169     // If there is a better chain.
4170     if (Chain != BetterChain) {
4171       SDOperand ReplLoad;
4172
4173       // Replace the chain to void dependency.
4174       if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
4175         ReplLoad = DAG.getLoad(N->getValueType(0), BetterChain, Ptr,
4176                                LD->getSrcValue(), LD->getSrcValueOffset(),
4177                                LD->isVolatile(), LD->getAlignment());
4178       } else {
4179         ReplLoad = DAG.getExtLoad(LD->getExtensionType(),
4180                                   LD->getValueType(0),
4181                                   BetterChain, Ptr, LD->getSrcValue(),
4182                                   LD->getSrcValueOffset(),
4183                                   LD->getLoadedVT(),
4184                                   LD->isVolatile(), 
4185                                   LD->getAlignment());
4186       }
4187
4188       // Create token factor to keep old chain connected.
4189       SDOperand Token = DAG.getNode(ISD::TokenFactor, MVT::Other,
4190                                     Chain, ReplLoad.getValue(1));
4191       
4192       // Replace uses with load result and token factor. Don't add users
4193       // to work list.
4194       return CombineTo(N, ReplLoad.getValue(0), Token, false);
4195     }
4196   }
4197
4198   // Try transforming N to an indexed load.
4199   if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
4200     return SDOperand(N, 0);
4201
4202   return SDOperand();
4203 }
4204
4205
4206 SDOperand DAGCombiner::visitSTORE(SDNode *N) {
4207   StoreSDNode *ST  = cast<StoreSDNode>(N);
4208   SDOperand Chain = ST->getChain();
4209   SDOperand Value = ST->getValue();
4210   SDOperand Ptr   = ST->getBasePtr();
4211   
4212   // Try to infer better alignment information than the store already has.
4213   if (ST->isUnindexed()) {
4214     if (unsigned Align = InferAlignment(Ptr, DAG)) {
4215       if (Align > ST->getAlignment())
4216         return DAG.getTruncStore(Chain, Value, Ptr, ST->getSrcValue(),
4217                                  ST->getSrcValueOffset(), ST->getStoredVT(),
4218                                  ST->isVolatile(), Align);
4219     }
4220   }
4221   
4222   // If this is a store of a bit convert, store the input value if the
4223   // resultant store does not need a higher alignment than the original.
4224   if (Value.getOpcode() == ISD::BIT_CONVERT && !ST->isTruncatingStore() &&
4225       ST->isUnindexed()) {
4226     unsigned Align = ST->getAlignment();
4227     MVT::ValueType SVT = Value.getOperand(0).getValueType();
4228     unsigned OrigAlign = TLI.getTargetMachine().getTargetData()->
4229       getABITypeAlignment(MVT::getTypeForValueType(SVT));
4230     if (Align <= OrigAlign && TLI.isOperationLegal(ISD::STORE, SVT))
4231       return DAG.getStore(Chain, Value.getOperand(0), Ptr, ST->getSrcValue(),
4232                           ST->getSrcValueOffset(), ST->isVolatile(), Align);
4233   }
4234   
4235   // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
4236   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
4237     if (Value.getOpcode() != ISD::TargetConstantFP) {
4238       SDOperand Tmp;
4239       switch (CFP->getValueType(0)) {
4240       default: assert(0 && "Unknown FP type");
4241       case MVT::f80:    // We don't do this for these yet.
4242       case MVT::f128:
4243       case MVT::ppcf128:
4244         break;
4245       case MVT::f32:
4246         if (!AfterLegalize || TLI.isTypeLegal(MVT::i32)) {
4247           Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
4248                               convertToAPInt().getZExtValue(), MVT::i32);
4249           return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
4250                               ST->getSrcValueOffset(), ST->isVolatile(),
4251                               ST->getAlignment());
4252         }
4253         break;
4254       case MVT::f64:
4255         if (!AfterLegalize || TLI.isTypeLegal(MVT::i64)) {
4256           Tmp = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
4257                                   getZExtValue(), MVT::i64);
4258           return DAG.getStore(Chain, Tmp, Ptr, ST->getSrcValue(),
4259                               ST->getSrcValueOffset(), ST->isVolatile(),
4260                               ST->getAlignment());
4261         } else if (TLI.isTypeLegal(MVT::i32)) {
4262           // Many FP stores are not made apparent until after legalize, e.g. for
4263           // argument passing.  Since this is so common, custom legalize the
4264           // 64-bit integer store into two 32-bit stores.
4265           uint64_t Val = CFP->getValueAPF().convertToAPInt().getZExtValue();
4266           SDOperand Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
4267           SDOperand Hi = DAG.getConstant(Val >> 32, MVT::i32);
4268           if (!TLI.isLittleEndian()) std::swap(Lo, Hi);
4269
4270           int SVOffset = ST->getSrcValueOffset();
4271           unsigned Alignment = ST->getAlignment();
4272           bool isVolatile = ST->isVolatile();
4273
4274           SDOperand St0 = DAG.getStore(Chain, Lo, Ptr, ST->getSrcValue(),
4275                                        ST->getSrcValueOffset(),
4276                                        isVolatile, ST->getAlignment());
4277           Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
4278                             DAG.getConstant(4, Ptr.getValueType()));
4279           SVOffset += 4;
4280           Alignment = MinAlign(Alignment, 4U);
4281           SDOperand St1 = DAG.getStore(Chain, Hi, Ptr, ST->getSrcValue(),
4282                                        SVOffset, isVolatile, Alignment);
4283           return DAG.getNode(ISD::TokenFactor, MVT::Other, St0, St1);
4284         }
4285         break;
4286       }
4287     }
4288   }
4289
4290   if (CombinerAA) { 
4291     // Walk up chain skipping non-aliasing memory nodes.
4292     SDOperand BetterChain = FindBetterChain(N, Chain);
4293     
4294     // If there is a better chain.
4295     if (Chain != BetterChain) {
4296       // Replace the chain to avoid dependency.
4297       SDOperand ReplStore;
4298       if (ST->isTruncatingStore()) {
4299         ReplStore = DAG.getTruncStore(BetterChain, Value, Ptr,
4300                                       ST->getSrcValue(),ST->getSrcValueOffset(),
4301                                       ST->getStoredVT(),
4302                                       ST->isVolatile(), ST->getAlignment());
4303       } else {
4304         ReplStore = DAG.getStore(BetterChain, Value, Ptr,
4305                                  ST->getSrcValue(), ST->getSrcValueOffset(),
4306                                  ST->isVolatile(), ST->getAlignment());
4307       }
4308       
4309       // Create token to keep both nodes around.
4310       SDOperand Token =
4311         DAG.getNode(ISD::TokenFactor, MVT::Other, Chain, ReplStore);
4312         
4313       // Don't add users to work list.
4314       return CombineTo(N, Token, false);
4315     }
4316   }
4317   
4318   // Try transforming N to an indexed store.
4319   if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
4320     return SDOperand(N, 0);
4321
4322   // FIXME: is there such a thing as a truncating indexed store?
4323   if (ST->isTruncatingStore() && ST->isUnindexed() &&
4324       MVT::isInteger(Value.getValueType())) {
4325     // See if we can simplify the input to this truncstore with knowledge that
4326     // only the low bits are being used.  For example:
4327     // "truncstore (or (shl x, 8), y), i8"  -> "truncstore y, i8"
4328     SDOperand Shorter = 
4329       GetDemandedBits(Value, MVT::getIntVTBitMask(ST->getStoredVT()));
4330     AddToWorkList(Value.Val);
4331     if (Shorter.Val)
4332       return DAG.getTruncStore(Chain, Shorter, Ptr, ST->getSrcValue(),
4333                                ST->getSrcValueOffset(), ST->getStoredVT(),
4334                                ST->isVolatile(), ST->getAlignment());
4335     
4336     // Otherwise, see if we can simplify the operation with
4337     // SimplifyDemandedBits, which only works if the value has a single use.
4338     if (SimplifyDemandedBits(Value, MVT::getIntVTBitMask(ST->getStoredVT())))
4339       return SDOperand(N, 0);
4340   }
4341   
4342   // If this is a load followed by a store to the same location, then the store
4343   // is dead/noop.
4344   if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
4345     if (Ld->getBasePtr() == Ptr && ST->getStoredVT() == Ld->getLoadedVT() &&
4346         ST->isUnindexed() && !ST->isVolatile() &&
4347         // There can't be any side effects between the load and store, such as
4348         // a call or store.
4349         Chain.reachesChainWithoutSideEffects(SDOperand(Ld, 1))) {
4350       // The store is dead, remove it.
4351       return Chain;
4352     }
4353   }
4354   
4355   // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
4356   // truncating store.  We can do this even if this is already a truncstore.
4357   if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
4358       && TLI.isTypeLegal(Value.getOperand(0).getValueType()) &&
4359       Value.Val->hasOneUse() && ST->isUnindexed() &&
4360       TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
4361                             ST->getStoredVT())) {
4362     return DAG.getTruncStore(Chain, Value.getOperand(0), Ptr, ST->getSrcValue(),
4363                              ST->getSrcValueOffset(), ST->getStoredVT(),
4364                              ST->isVolatile(), ST->getAlignment());
4365   }
4366   
4367   return SDOperand();
4368 }
4369
4370 SDOperand DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
4371   SDOperand InVec = N->getOperand(0);
4372   SDOperand InVal = N->getOperand(1);
4373   SDOperand EltNo = N->getOperand(2);
4374   
4375   // If the invec is a BUILD_VECTOR and if EltNo is a constant, build a new
4376   // vector with the inserted element.
4377   if (InVec.getOpcode() == ISD::BUILD_VECTOR && isa<ConstantSDNode>(EltNo)) {
4378     unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
4379     SmallVector<SDOperand, 8> Ops(InVec.Val->op_begin(), InVec.Val->op_end());
4380     if (Elt < Ops.size())
4381       Ops[Elt] = InVal;
4382     return DAG.getNode(ISD::BUILD_VECTOR, InVec.getValueType(),
4383                        &Ops[0], Ops.size());
4384   }
4385   
4386   return SDOperand();
4387 }
4388
4389 SDOperand DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
4390   SDOperand InVec = N->getOperand(0);
4391   SDOperand EltNo = N->getOperand(1);
4392
4393   // (vextract (v4f32 s2v (f32 load $addr)), 0) -> (f32 load $addr)
4394   // (vextract (v4i32 bc (v4f32 s2v (f32 load $addr))), 0) -> (i32 load $addr)
4395   if (isa<ConstantSDNode>(EltNo)) {
4396     unsigned Elt = cast<ConstantSDNode>(EltNo)->getValue();
4397     bool NewLoad = false;
4398     if (Elt == 0) {
4399       MVT::ValueType VT = InVec.getValueType();
4400       MVT::ValueType EVT = MVT::getVectorElementType(VT);
4401       MVT::ValueType LVT = EVT;
4402       unsigned NumElts = MVT::getVectorNumElements(VT);
4403       if (InVec.getOpcode() == ISD::BIT_CONVERT) {
4404         MVT::ValueType BCVT = InVec.getOperand(0).getValueType();
4405         if (!MVT::isVector(BCVT) ||
4406             NumElts != MVT::getVectorNumElements(BCVT))
4407           return SDOperand();
4408         InVec = InVec.getOperand(0);
4409         EVT = MVT::getVectorElementType(BCVT);
4410         NewLoad = true;
4411       }
4412       if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4413           InVec.getOperand(0).getValueType() == EVT &&
4414           ISD::isNormalLoad(InVec.getOperand(0).Val) &&
4415           InVec.getOperand(0).hasOneUse()) {
4416         LoadSDNode *LN0 = cast<LoadSDNode>(InVec.getOperand(0));
4417         unsigned Align = LN0->getAlignment();
4418         if (NewLoad) {
4419           // Check the resultant load doesn't need a higher alignment than the
4420           // original load.
4421           unsigned NewAlign = TLI.getTargetMachine().getTargetData()->
4422             getABITypeAlignment(MVT::getTypeForValueType(LVT));
4423           if (!TLI.isOperationLegal(ISD::LOAD, LVT) || NewAlign > Align)
4424             return SDOperand();
4425           Align = NewAlign;
4426         }
4427
4428         return DAG.getLoad(LVT, LN0->getChain(), LN0->getBasePtr(),
4429                            LN0->getSrcValue(), LN0->getSrcValueOffset(),
4430                            LN0->isVolatile(), Align);
4431       }
4432     }
4433   }
4434   return SDOperand();
4435 }
4436   
4437
4438 SDOperand DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
4439   unsigned NumInScalars = N->getNumOperands();
4440   MVT::ValueType VT = N->getValueType(0);
4441   unsigned NumElts = MVT::getVectorNumElements(VT);
4442   MVT::ValueType EltType = MVT::getVectorElementType(VT);
4443
4444   // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
4445   // operations.  If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
4446   // at most two distinct vectors, turn this into a shuffle node.
4447   SDOperand VecIn1, VecIn2;
4448   for (unsigned i = 0; i != NumInScalars; ++i) {
4449     // Ignore undef inputs.
4450     if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
4451     
4452     // If this input is something other than a EXTRACT_VECTOR_ELT with a
4453     // constant index, bail out.
4454     if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
4455         !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
4456       VecIn1 = VecIn2 = SDOperand(0, 0);
4457       break;
4458     }
4459     
4460     // If the input vector type disagrees with the result of the build_vector,
4461     // we can't make a shuffle.
4462     SDOperand ExtractedFromVec = N->getOperand(i).getOperand(0);
4463     if (ExtractedFromVec.getValueType() != VT) {
4464       VecIn1 = VecIn2 = SDOperand(0, 0);
4465       break;
4466     }
4467     
4468     // Otherwise, remember this.  We allow up to two distinct input vectors.
4469     if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
4470       continue;
4471     
4472     if (VecIn1.Val == 0) {
4473       VecIn1 = ExtractedFromVec;
4474     } else if (VecIn2.Val == 0) {
4475       VecIn2 = ExtractedFromVec;
4476     } else {
4477       // Too many inputs.
4478       VecIn1 = VecIn2 = SDOperand(0, 0);
4479       break;
4480     }
4481   }
4482   
4483   // If everything is good, we can make a shuffle operation.
4484   if (VecIn1.Val) {
4485     SmallVector<SDOperand, 8> BuildVecIndices;
4486     for (unsigned i = 0; i != NumInScalars; ++i) {
4487       if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
4488         BuildVecIndices.push_back(DAG.getNode(ISD::UNDEF, TLI.getPointerTy()));
4489         continue;
4490       }
4491       
4492       SDOperand Extract = N->getOperand(i);
4493       
4494       // If extracting from the first vector, just use the index directly.
4495       if (Extract.getOperand(0) == VecIn1) {
4496         BuildVecIndices.push_back(Extract.getOperand(1));
4497         continue;
4498       }
4499
4500       // Otherwise, use InIdx + VecSize
4501       unsigned Idx = cast<ConstantSDNode>(Extract.getOperand(1))->getValue();
4502       BuildVecIndices.push_back(DAG.getIntPtrConstant(Idx+NumInScalars));
4503     }
4504     
4505     // Add count and size info.
4506     MVT::ValueType BuildVecVT = MVT::getVectorType(TLI.getPointerTy(), NumElts);
4507     
4508     // Return the new VECTOR_SHUFFLE node.
4509     SDOperand Ops[5];
4510     Ops[0] = VecIn1;
4511     if (VecIn2.Val) {
4512       Ops[1] = VecIn2;
4513     } else {
4514       // Use an undef build_vector as input for the second operand.
4515       std::vector<SDOperand> UnOps(NumInScalars,
4516                                    DAG.getNode(ISD::UNDEF, 
4517                                                EltType));
4518       Ops[1] = DAG.getNode(ISD::BUILD_VECTOR, VT,
4519                            &UnOps[0], UnOps.size());
4520       AddToWorkList(Ops[1].Val);
4521     }
4522     Ops[2] = DAG.getNode(ISD::BUILD_VECTOR, BuildVecVT,
4523                          &BuildVecIndices[0], BuildVecIndices.size());
4524     return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, Ops, 3);
4525   }
4526   
4527   return SDOperand();
4528 }
4529
4530 SDOperand DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
4531   // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
4532   // EXTRACT_SUBVECTOR operations.  If so, and if the EXTRACT_SUBVECTOR vector
4533   // inputs come from at most two distinct vectors, turn this into a shuffle
4534   // node.
4535
4536   // If we only have one input vector, we don't need to do any concatenation.
4537   if (N->getNumOperands() == 1) {
4538     return N->getOperand(0);
4539   }
4540
4541   return SDOperand();
4542 }
4543
4544 SDOperand DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
4545   SDOperand ShufMask = N->getOperand(2);
4546   unsigned NumElts = ShufMask.getNumOperands();
4547
4548   // If the shuffle mask is an identity operation on the LHS, return the LHS.
4549   bool isIdentity = true;
4550   for (unsigned i = 0; i != NumElts; ++i) {
4551     if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4552         cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i) {
4553       isIdentity = false;
4554       break;
4555     }
4556   }
4557   if (isIdentity) return N->getOperand(0);
4558
4559   // If the shuffle mask is an identity operation on the RHS, return the RHS.
4560   isIdentity = true;
4561   for (unsigned i = 0; i != NumElts; ++i) {
4562     if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF &&
4563         cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() != i+NumElts) {
4564       isIdentity = false;
4565       break;
4566     }
4567   }
4568   if (isIdentity) return N->getOperand(1);
4569
4570   // Check if the shuffle is a unary shuffle, i.e. one of the vectors is not
4571   // needed at all.
4572   bool isUnary = true;
4573   bool isSplat = true;
4574   int VecNum = -1;
4575   unsigned BaseIdx = 0;
4576   for (unsigned i = 0; i != NumElts; ++i)
4577     if (ShufMask.getOperand(i).getOpcode() != ISD::UNDEF) {
4578       unsigned Idx = cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue();
4579       int V = (Idx < NumElts) ? 0 : 1;
4580       if (VecNum == -1) {
4581         VecNum = V;
4582         BaseIdx = Idx;
4583       } else {
4584         if (BaseIdx != Idx)
4585           isSplat = false;
4586         if (VecNum != V) {
4587           isUnary = false;
4588           break;
4589         }
4590       }
4591     }
4592
4593   SDOperand N0 = N->getOperand(0);
4594   SDOperand N1 = N->getOperand(1);
4595   // Normalize unary shuffle so the RHS is undef.
4596   if (isUnary && VecNum == 1)
4597     std::swap(N0, N1);
4598
4599   // If it is a splat, check if the argument vector is a build_vector with
4600   // all scalar elements the same.
4601   if (isSplat) {
4602     SDNode *V = N0.Val;
4603
4604     // If this is a bit convert that changes the element type of the vector but
4605     // not the number of vector elements, look through it.  Be careful not to
4606     // look though conversions that change things like v4f32 to v2f64.
4607     if (V->getOpcode() == ISD::BIT_CONVERT) {
4608       SDOperand ConvInput = V->getOperand(0);
4609       if (MVT::getVectorNumElements(ConvInput.getValueType()) == NumElts)
4610         V = ConvInput.Val;
4611     }
4612
4613     if (V->getOpcode() == ISD::BUILD_VECTOR) {
4614       unsigned NumElems = V->getNumOperands();
4615       if (NumElems > BaseIdx) {
4616         SDOperand Base;
4617         bool AllSame = true;
4618         for (unsigned i = 0; i != NumElems; ++i) {
4619           if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
4620             Base = V->getOperand(i);
4621             break;
4622           }
4623         }
4624         // Splat of <u, u, u, u>, return <u, u, u, u>
4625         if (!Base.Val)
4626           return N0;
4627         for (unsigned i = 0; i != NumElems; ++i) {
4628           if (V->getOperand(i) != Base) {
4629             AllSame = false;
4630             break;
4631           }
4632         }
4633         // Splat of <x, x, x, x>, return <x, x, x, x>
4634         if (AllSame)
4635           return N0;
4636       }
4637     }
4638   }
4639
4640   // If it is a unary or the LHS and the RHS are the same node, turn the RHS
4641   // into an undef.
4642   if (isUnary || N0 == N1) {
4643     // Check the SHUFFLE mask, mapping any inputs from the 2nd operand into the
4644     // first operand.
4645     SmallVector<SDOperand, 8> MappedOps;
4646     for (unsigned i = 0; i != NumElts; ++i) {
4647       if (ShufMask.getOperand(i).getOpcode() == ISD::UNDEF ||
4648           cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() < NumElts) {
4649         MappedOps.push_back(ShufMask.getOperand(i));
4650       } else {
4651         unsigned NewIdx = 
4652           cast<ConstantSDNode>(ShufMask.getOperand(i))->getValue() - NumElts;
4653         MappedOps.push_back(DAG.getConstant(NewIdx, MVT::i32));
4654       }
4655     }
4656     ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMask.getValueType(),
4657                            &MappedOps[0], MappedOps.size());
4658     AddToWorkList(ShufMask.Val);
4659     return DAG.getNode(ISD::VECTOR_SHUFFLE, N->getValueType(0),
4660                        N0,
4661                        DAG.getNode(ISD::UNDEF, N->getValueType(0)),
4662                        ShufMask);
4663   }
4664  
4665   return SDOperand();
4666 }
4667
4668 /// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
4669 /// an AND to a vector_shuffle with the destination vector and a zero vector.
4670 /// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
4671 ///      vector_shuffle V, Zero, <0, 4, 2, 4>
4672 SDOperand DAGCombiner::XformToShuffleWithZero(SDNode *N) {
4673   SDOperand LHS = N->getOperand(0);
4674   SDOperand RHS = N->getOperand(1);
4675   if (N->getOpcode() == ISD::AND) {
4676     if (RHS.getOpcode() == ISD::BIT_CONVERT)
4677       RHS = RHS.getOperand(0);
4678     if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
4679       std::vector<SDOperand> IdxOps;
4680       unsigned NumOps = RHS.getNumOperands();
4681       unsigned NumElts = NumOps;
4682       MVT::ValueType EVT = MVT::getVectorElementType(RHS.getValueType());
4683       for (unsigned i = 0; i != NumElts; ++i) {
4684         SDOperand Elt = RHS.getOperand(i);
4685         if (!isa<ConstantSDNode>(Elt))
4686           return SDOperand();
4687         else if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
4688           IdxOps.push_back(DAG.getConstant(i, EVT));
4689         else if (cast<ConstantSDNode>(Elt)->isNullValue())
4690           IdxOps.push_back(DAG.getConstant(NumElts, EVT));
4691         else
4692           return SDOperand();
4693       }
4694
4695       // Let's see if the target supports this vector_shuffle.
4696       if (!TLI.isVectorClearMaskLegal(IdxOps, EVT, DAG))
4697         return SDOperand();
4698
4699       // Return the new VECTOR_SHUFFLE node.
4700       MVT::ValueType VT = MVT::getVectorType(EVT, NumElts);
4701       std::vector<SDOperand> Ops;
4702       LHS = DAG.getNode(ISD::BIT_CONVERT, VT, LHS);
4703       Ops.push_back(LHS);
4704       AddToWorkList(LHS.Val);
4705       std::vector<SDOperand> ZeroOps(NumElts, DAG.getConstant(0, EVT));
4706       Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
4707                                 &ZeroOps[0], ZeroOps.size()));
4708       Ops.push_back(DAG.getNode(ISD::BUILD_VECTOR, VT,
4709                                 &IdxOps[0], IdxOps.size()));
4710       SDOperand Result = DAG.getNode(ISD::VECTOR_SHUFFLE, VT,
4711                                      &Ops[0], Ops.size());
4712       if (VT != LHS.getValueType()) {
4713         Result = DAG.getNode(ISD::BIT_CONVERT, LHS.getValueType(), Result);
4714       }
4715       return Result;
4716     }
4717   }
4718   return SDOperand();
4719 }
4720
4721 /// SimplifyVBinOp - Visit a binary vector operation, like ADD.
4722 SDOperand DAGCombiner::SimplifyVBinOp(SDNode *N) {
4723   // After legalize, the target may be depending on adds and other
4724   // binary ops to provide legal ways to construct constants or other
4725   // things. Simplifying them may result in a loss of legality.
4726   if (AfterLegalize) return SDOperand();
4727
4728   MVT::ValueType VT = N->getValueType(0);
4729   assert(MVT::isVector(VT) && "SimplifyVBinOp only works on vectors!");
4730
4731   MVT::ValueType EltType = MVT::getVectorElementType(VT);
4732   SDOperand LHS = N->getOperand(0);
4733   SDOperand RHS = N->getOperand(1);
4734   SDOperand Shuffle = XformToShuffleWithZero(N);
4735   if (Shuffle.Val) return Shuffle;
4736
4737   // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
4738   // this operation.
4739   if (LHS.getOpcode() == ISD::BUILD_VECTOR && 
4740       RHS.getOpcode() == ISD::BUILD_VECTOR) {
4741     SmallVector<SDOperand, 8> Ops;
4742     for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
4743       SDOperand LHSOp = LHS.getOperand(i);
4744       SDOperand RHSOp = RHS.getOperand(i);
4745       // If these two elements can't be folded, bail out.
4746       if ((LHSOp.getOpcode() != ISD::UNDEF &&
4747            LHSOp.getOpcode() != ISD::Constant &&
4748            LHSOp.getOpcode() != ISD::ConstantFP) ||
4749           (RHSOp.getOpcode() != ISD::UNDEF &&
4750            RHSOp.getOpcode() != ISD::Constant &&
4751            RHSOp.getOpcode() != ISD::ConstantFP))
4752         break;
4753       // Can't fold divide by zero.
4754       if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
4755           N->getOpcode() == ISD::FDIV) {
4756         if ((RHSOp.getOpcode() == ISD::Constant &&
4757              cast<ConstantSDNode>(RHSOp.Val)->isNullValue()) ||
4758             (RHSOp.getOpcode() == ISD::ConstantFP &&
4759              cast<ConstantFPSDNode>(RHSOp.Val)->getValueAPF().isZero()))
4760           break;
4761       }
4762       Ops.push_back(DAG.getNode(N->getOpcode(), EltType, LHSOp, RHSOp));
4763       AddToWorkList(Ops.back().Val);
4764       assert((Ops.back().getOpcode() == ISD::UNDEF ||
4765               Ops.back().getOpcode() == ISD::Constant ||
4766               Ops.back().getOpcode() == ISD::ConstantFP) &&
4767              "Scalar binop didn't fold!");
4768     }
4769     
4770     if (Ops.size() == LHS.getNumOperands()) {
4771       MVT::ValueType VT = LHS.getValueType();
4772       return DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
4773     }
4774   }
4775   
4776   return SDOperand();
4777 }
4778
4779 SDOperand DAGCombiner::SimplifySelect(SDOperand N0, SDOperand N1, SDOperand N2){
4780   assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
4781   
4782   SDOperand SCC = SimplifySelectCC(N0.getOperand(0), N0.getOperand(1), N1, N2,
4783                                  cast<CondCodeSDNode>(N0.getOperand(2))->get());
4784   // If we got a simplified select_cc node back from SimplifySelectCC, then
4785   // break it down into a new SETCC node, and a new SELECT node, and then return
4786   // the SELECT node, since we were called with a SELECT node.
4787   if (SCC.Val) {
4788     // Check to see if we got a select_cc back (to turn into setcc/select).
4789     // Otherwise, just return whatever node we got back, like fabs.
4790     if (SCC.getOpcode() == ISD::SELECT_CC) {
4791       SDOperand SETCC = DAG.getNode(ISD::SETCC, N0.getValueType(),
4792                                     SCC.getOperand(0), SCC.getOperand(1), 
4793                                     SCC.getOperand(4));
4794       AddToWorkList(SETCC.Val);
4795       return DAG.getNode(ISD::SELECT, SCC.getValueType(), SCC.getOperand(2),
4796                          SCC.getOperand(3), SETCC);
4797     }
4798     return SCC;
4799   }
4800   return SDOperand();
4801 }
4802
4803 /// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
4804 /// are the two values being selected between, see if we can simplify the
4805 /// select.  Callers of this should assume that TheSelect is deleted if this
4806 /// returns true.  As such, they should return the appropriate thing (e.g. the
4807 /// node) back to the top-level of the DAG combiner loop to avoid it being
4808 /// looked at.
4809 ///
4810 bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDOperand LHS, 
4811                                     SDOperand RHS) {
4812   
4813   // If this is a select from two identical things, try to pull the operation
4814   // through the select.
4815   if (LHS.getOpcode() == RHS.getOpcode() && LHS.hasOneUse() && RHS.hasOneUse()){
4816     // If this is a load and the token chain is identical, replace the select
4817     // of two loads with a load through a select of the address to load from.
4818     // This triggers in things like "select bool X, 10.0, 123.0" after the FP
4819     // constants have been dropped into the constant pool.
4820     if (LHS.getOpcode() == ISD::LOAD &&
4821         // Token chains must be identical.
4822         LHS.getOperand(0) == RHS.getOperand(0)) {
4823       LoadSDNode *LLD = cast<LoadSDNode>(LHS);
4824       LoadSDNode *RLD = cast<LoadSDNode>(RHS);
4825
4826       // If this is an EXTLOAD, the VT's must match.
4827       if (LLD->getLoadedVT() == RLD->getLoadedVT()) {
4828         // FIXME: this conflates two src values, discarding one.  This is not
4829         // the right thing to do, but nothing uses srcvalues now.  When they do,
4830         // turn SrcValue into a list of locations.
4831         SDOperand Addr;
4832         if (TheSelect->getOpcode() == ISD::SELECT) {
4833           // Check that the condition doesn't reach either load.  If so, folding
4834           // this will induce a cycle into the DAG.
4835           if (!LLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4836               !RLD->isPredecessor(TheSelect->getOperand(0).Val)) {
4837             Addr = DAG.getNode(ISD::SELECT, LLD->getBasePtr().getValueType(),
4838                                TheSelect->getOperand(0), LLD->getBasePtr(),
4839                                RLD->getBasePtr());
4840           }
4841         } else {
4842           // Check that the condition doesn't reach either load.  If so, folding
4843           // this will induce a cycle into the DAG.
4844           if (!LLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4845               !RLD->isPredecessor(TheSelect->getOperand(0).Val) &&
4846               !LLD->isPredecessor(TheSelect->getOperand(1).Val) &&
4847               !RLD->isPredecessor(TheSelect->getOperand(1).Val)) {
4848             Addr = DAG.getNode(ISD::SELECT_CC, LLD->getBasePtr().getValueType(),
4849                              TheSelect->getOperand(0),
4850                              TheSelect->getOperand(1), 
4851                              LLD->getBasePtr(), RLD->getBasePtr(),
4852                              TheSelect->getOperand(4));
4853           }
4854         }
4855         
4856         if (Addr.Val) {
4857           SDOperand Load;
4858           if (LLD->getExtensionType() == ISD::NON_EXTLOAD)
4859             Load = DAG.getLoad(TheSelect->getValueType(0), LLD->getChain(),
4860                                Addr,LLD->getSrcValue(), 
4861                                LLD->getSrcValueOffset(),
4862                                LLD->isVolatile(), 
4863                                LLD->getAlignment());
4864           else {
4865             Load = DAG.getExtLoad(LLD->getExtensionType(),
4866                                   TheSelect->getValueType(0),
4867                                   LLD->getChain(), Addr, LLD->getSrcValue(),
4868                                   LLD->getSrcValueOffset(),
4869                                   LLD->getLoadedVT(),
4870                                   LLD->isVolatile(), 
4871                                   LLD->getAlignment());
4872           }
4873           // Users of the select now use the result of the load.
4874           CombineTo(TheSelect, Load);
4875         
4876           // Users of the old loads now use the new load's chain.  We know the
4877           // old-load value is dead now.
4878           CombineTo(LHS.Val, Load.getValue(0), Load.getValue(1));
4879           CombineTo(RHS.Val, Load.getValue(0), Load.getValue(1));
4880           return true;
4881         }
4882       }
4883     }
4884   }
4885   
4886   return false;
4887 }
4888
4889 SDOperand DAGCombiner::SimplifySelectCC(SDOperand N0, SDOperand N1, 
4890                                         SDOperand N2, SDOperand N3,
4891                                         ISD::CondCode CC, bool NotExtCompare) {
4892   
4893   MVT::ValueType VT = N2.getValueType();
4894   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.Val);
4895   ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.Val);
4896   ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.Val);
4897
4898   // Determine if the condition we're dealing with is constant
4899   SDOperand SCC = SimplifySetCC(TLI.getSetCCResultTy(), N0, N1, CC, false);
4900   if (SCC.Val) AddToWorkList(SCC.Val);
4901   ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.Val);
4902
4903   // fold select_cc true, x, y -> x
4904   if (SCCC && SCCC->getValue())
4905     return N2;
4906   // fold select_cc false, x, y -> y
4907   if (SCCC && SCCC->getValue() == 0)
4908     return N3;
4909   
4910   // Check to see if we can simplify the select into an fabs node
4911   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
4912     // Allow either -0.0 or 0.0
4913     if (CFP->getValueAPF().isZero()) {
4914       // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
4915       if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
4916           N0 == N2 && N3.getOpcode() == ISD::FNEG &&
4917           N2 == N3.getOperand(0))
4918         return DAG.getNode(ISD::FABS, VT, N0);
4919       
4920       // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
4921       if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
4922           N0 == N3 && N2.getOpcode() == ISD::FNEG &&
4923           N2.getOperand(0) == N3)
4924         return DAG.getNode(ISD::FABS, VT, N3);
4925     }
4926   }
4927   
4928   // Check to see if we can perform the "gzip trick", transforming
4929   // select_cc setlt X, 0, A, 0 -> and (sra X, size(X)-1), A
4930   if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
4931       MVT::isInteger(N0.getValueType()) && 
4932       MVT::isInteger(N2.getValueType()) && 
4933       (N1C->isNullValue() ||                    // (a < 0) ? b : 0
4934        (N1C->getValue() == 1 && N0 == N2))) {   // (a < 1) ? a : 0
4935     MVT::ValueType XType = N0.getValueType();
4936     MVT::ValueType AType = N2.getValueType();
4937     if (XType >= AType) {
4938       // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
4939       // single-bit constant.
4940       if (N2C && ((N2C->getValue() & (N2C->getValue()-1)) == 0)) {
4941         unsigned ShCtV = Log2_64(N2C->getValue());
4942         ShCtV = MVT::getSizeInBits(XType)-ShCtV-1;
4943         SDOperand ShCt = DAG.getConstant(ShCtV, TLI.getShiftAmountTy());
4944         SDOperand Shift = DAG.getNode(ISD::SRL, XType, N0, ShCt);
4945         AddToWorkList(Shift.Val);
4946         if (XType > AType) {
4947           Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
4948           AddToWorkList(Shift.Val);
4949         }
4950         return DAG.getNode(ISD::AND, AType, Shift, N2);
4951       }
4952       SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
4953                                     DAG.getConstant(MVT::getSizeInBits(XType)-1,
4954                                                     TLI.getShiftAmountTy()));
4955       AddToWorkList(Shift.Val);
4956       if (XType > AType) {
4957         Shift = DAG.getNode(ISD::TRUNCATE, AType, Shift);
4958         AddToWorkList(Shift.Val);
4959       }
4960       return DAG.getNode(ISD::AND, AType, Shift, N2);
4961     }
4962   }
4963   
4964   // fold select C, 16, 0 -> shl C, 4
4965   if (N2C && N3C && N3C->isNullValue() && isPowerOf2_64(N2C->getValue()) &&
4966       TLI.getSetCCResultContents() == TargetLowering::ZeroOrOneSetCCResult) {
4967     
4968     // If the caller doesn't want us to simplify this into a zext of a compare,
4969     // don't do it.
4970     if (NotExtCompare && N2C->getValue() == 1)
4971       return SDOperand();
4972     
4973     // Get a SetCC of the condition
4974     // FIXME: Should probably make sure that setcc is legal if we ever have a
4975     // target where it isn't.
4976     SDOperand Temp, SCC;
4977     // cast from setcc result type to select result type
4978     if (AfterLegalize) {
4979       SCC  = DAG.getSetCC(TLI.getSetCCResultTy(), N0, N1, CC);
4980       if (N2.getValueType() < SCC.getValueType())
4981         Temp = DAG.getZeroExtendInReg(SCC, N2.getValueType());
4982       else
4983         Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
4984     } else {
4985       SCC  = DAG.getSetCC(MVT::i1, N0, N1, CC);
4986       Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getValueType(), SCC);
4987     }
4988     AddToWorkList(SCC.Val);
4989     AddToWorkList(Temp.Val);
4990     
4991     if (N2C->getValue() == 1)
4992       return Temp;
4993     // shl setcc result by log2 n2c
4994     return DAG.getNode(ISD::SHL, N2.getValueType(), Temp,
4995                        DAG.getConstant(Log2_64(N2C->getValue()),
4996                                        TLI.getShiftAmountTy()));
4997   }
4998     
4999   // Check to see if this is the equivalent of setcc
5000   // FIXME: Turn all of these into setcc if setcc if setcc is legal
5001   // otherwise, go ahead with the folds.
5002   if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getValue() == 1ULL)) {
5003     MVT::ValueType XType = N0.getValueType();
5004     if (TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultTy())) {
5005       SDOperand Res = DAG.getSetCC(TLI.getSetCCResultTy(), N0, N1, CC);
5006       if (Res.getValueType() != VT)
5007         Res = DAG.getNode(ISD::ZERO_EXTEND, VT, Res);
5008       return Res;
5009     }
5010     
5011     // seteq X, 0 -> srl (ctlz X, log2(size(X)))
5012     if (N1C && N1C->isNullValue() && CC == ISD::SETEQ && 
5013         TLI.isOperationLegal(ISD::CTLZ, XType)) {
5014       SDOperand Ctlz = DAG.getNode(ISD::CTLZ, XType, N0);
5015       return DAG.getNode(ISD::SRL, XType, Ctlz, 
5016                          DAG.getConstant(Log2_32(MVT::getSizeInBits(XType)),
5017                                          TLI.getShiftAmountTy()));
5018     }
5019     // setgt X, 0 -> srl (and (-X, ~X), size(X)-1)
5020     if (N1C && N1C->isNullValue() && CC == ISD::SETGT) { 
5021       SDOperand NegN0 = DAG.getNode(ISD::SUB, XType, DAG.getConstant(0, XType),
5022                                     N0);
5023       SDOperand NotN0 = DAG.getNode(ISD::XOR, XType, N0, 
5024                                     DAG.getConstant(~0ULL, XType));
5025       return DAG.getNode(ISD::SRL, XType, 
5026                          DAG.getNode(ISD::AND, XType, NegN0, NotN0),
5027                          DAG.getConstant(MVT::getSizeInBits(XType)-1,
5028                                          TLI.getShiftAmountTy()));
5029     }
5030     // setgt X, -1 -> xor (srl (X, size(X)-1), 1)
5031     if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
5032       SDOperand Sign = DAG.getNode(ISD::SRL, XType, N0,
5033                                    DAG.getConstant(MVT::getSizeInBits(XType)-1,
5034                                                    TLI.getShiftAmountTy()));
5035       return DAG.getNode(ISD::XOR, XType, Sign, DAG.getConstant(1, XType));
5036     }
5037   }
5038   
5039   // Check to see if this is an integer abs. select_cc setl[te] X, 0, -X, X ->
5040   // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
5041   if (N1C && N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE) &&
5042       N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1) &&
5043       N2.getOperand(0) == N1 && MVT::isInteger(N0.getValueType())) {
5044     MVT::ValueType XType = N0.getValueType();
5045     SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
5046                                   DAG.getConstant(MVT::getSizeInBits(XType)-1,
5047                                                   TLI.getShiftAmountTy()));
5048     SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
5049     AddToWorkList(Shift.Val);
5050     AddToWorkList(Add.Val);
5051     return DAG.getNode(ISD::XOR, XType, Add, Shift);
5052   }
5053   // Check to see if this is an integer abs. select_cc setgt X, -1, X, -X ->
5054   // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
5055   if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT &&
5056       N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1)) {
5057     if (ConstantSDNode *SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0))) {
5058       MVT::ValueType XType = N0.getValueType();
5059       if (SubC->isNullValue() && MVT::isInteger(XType)) {
5060         SDOperand Shift = DAG.getNode(ISD::SRA, XType, N0,
5061                                     DAG.getConstant(MVT::getSizeInBits(XType)-1,
5062                                                       TLI.getShiftAmountTy()));
5063         SDOperand Add = DAG.getNode(ISD::ADD, XType, N0, Shift);
5064         AddToWorkList(Shift.Val);
5065         AddToWorkList(Add.Val);
5066         return DAG.getNode(ISD::XOR, XType, Add, Shift);
5067       }
5068     }
5069   }
5070   
5071   return SDOperand();
5072 }
5073
5074 /// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
5075 SDOperand DAGCombiner::SimplifySetCC(MVT::ValueType VT, SDOperand N0,
5076                                      SDOperand N1, ISD::CondCode Cond,
5077                                      bool foldBooleans) {
5078   TargetLowering::DAGCombinerInfo 
5079     DagCombineInfo(DAG, !AfterLegalize, false, this);
5080   return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo);
5081 }
5082
5083 /// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
5084 /// return a DAG expression to select that will generate the same value by
5085 /// multiplying by a magic number.  See:
5086 /// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
5087 SDOperand DAGCombiner::BuildSDIV(SDNode *N) {
5088   std::vector<SDNode*> Built;
5089   SDOperand S = TLI.BuildSDIV(N, DAG, &Built);
5090
5091   for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
5092        ii != ee; ++ii)
5093     AddToWorkList(*ii);
5094   return S;
5095 }
5096
5097 /// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
5098 /// return a DAG expression to select that will generate the same value by
5099 /// multiplying by a magic number.  See:
5100 /// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
5101 SDOperand DAGCombiner::BuildUDIV(SDNode *N) {
5102   std::vector<SDNode*> Built;
5103   SDOperand S = TLI.BuildUDIV(N, DAG, &Built);
5104
5105   for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
5106        ii != ee; ++ii)
5107     AddToWorkList(*ii);
5108   return S;
5109 }
5110
5111 /// FindBaseOffset - Return true if base is known not to alias with anything
5112 /// but itself.  Provides base object and offset as results.
5113 static bool FindBaseOffset(SDOperand Ptr, SDOperand &Base, int64_t &Offset) {
5114   // Assume it is a primitive operation.
5115   Base = Ptr; Offset = 0;
5116   
5117   // If it's an adding a simple constant then integrate the offset.
5118   if (Base.getOpcode() == ISD::ADD) {
5119     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
5120       Base = Base.getOperand(0);
5121       Offset += C->getValue();
5122     }
5123   }
5124   
5125   // If it's any of the following then it can't alias with anything but itself.
5126   return isa<FrameIndexSDNode>(Base) ||
5127          isa<ConstantPoolSDNode>(Base) ||
5128          isa<GlobalAddressSDNode>(Base);
5129 }
5130
5131 /// isAlias - Return true if there is any possibility that the two addresses
5132 /// overlap.
5133 bool DAGCombiner::isAlias(SDOperand Ptr1, int64_t Size1,
5134                           const Value *SrcValue1, int SrcValueOffset1,
5135                           SDOperand Ptr2, int64_t Size2,
5136                           const Value *SrcValue2, int SrcValueOffset2)
5137 {
5138   // If they are the same then they must be aliases.
5139   if (Ptr1 == Ptr2) return true;
5140   
5141   // Gather base node and offset information.
5142   SDOperand Base1, Base2;
5143   int64_t Offset1, Offset2;
5144   bool KnownBase1 = FindBaseOffset(Ptr1, Base1, Offset1);
5145   bool KnownBase2 = FindBaseOffset(Ptr2, Base2, Offset2);
5146   
5147   // If they have a same base address then...
5148   if (Base1 == Base2) {
5149     // Check to see if the addresses overlap.
5150     return!((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
5151   }
5152   
5153   // If we know both bases then they can't alias.
5154   if (KnownBase1 && KnownBase2) return false;
5155
5156   if (CombinerGlobalAA) {
5157     // Use alias analysis information.
5158     int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
5159     int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
5160     int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
5161     AliasAnalysis::AliasResult AAResult = 
5162                              AA.alias(SrcValue1, Overlap1, SrcValue2, Overlap2);
5163     if (AAResult == AliasAnalysis::NoAlias)
5164       return false;
5165   }
5166
5167   // Otherwise we have to assume they alias.
5168   return true;
5169 }
5170
5171 /// FindAliasInfo - Extracts the relevant alias information from the memory
5172 /// node.  Returns true if the operand was a load.
5173 bool DAGCombiner::FindAliasInfo(SDNode *N,
5174                         SDOperand &Ptr, int64_t &Size,
5175                         const Value *&SrcValue, int &SrcValueOffset) {
5176   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
5177     Ptr = LD->getBasePtr();
5178     Size = MVT::getSizeInBits(LD->getLoadedVT()) >> 3;
5179     SrcValue = LD->getSrcValue();
5180     SrcValueOffset = LD->getSrcValueOffset();
5181     return true;
5182   } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
5183     Ptr = ST->getBasePtr();
5184     Size = MVT::getSizeInBits(ST->getStoredVT()) >> 3;
5185     SrcValue = ST->getSrcValue();
5186     SrcValueOffset = ST->getSrcValueOffset();
5187   } else {
5188     assert(0 && "FindAliasInfo expected a memory operand");
5189   }
5190   
5191   return false;
5192 }
5193
5194 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
5195 /// looking for aliasing nodes and adding them to the Aliases vector.
5196 void DAGCombiner::GatherAllAliases(SDNode *N, SDOperand OriginalChain,
5197                                    SmallVector<SDOperand, 8> &Aliases) {
5198   SmallVector<SDOperand, 8> Chains;     // List of chains to visit.
5199   std::set<SDNode *> Visited;           // Visited node set.
5200   
5201   // Get alias information for node.
5202   SDOperand Ptr;
5203   int64_t Size;
5204   const Value *SrcValue;
5205   int SrcValueOffset;
5206   bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset);
5207
5208   // Starting off.
5209   Chains.push_back(OriginalChain);
5210   
5211   // Look at each chain and determine if it is an alias.  If so, add it to the
5212   // aliases list.  If not, then continue up the chain looking for the next
5213   // candidate.  
5214   while (!Chains.empty()) {
5215     SDOperand Chain = Chains.back();
5216     Chains.pop_back();
5217     
5218      // Don't bother if we've been before.
5219     if (Visited.find(Chain.Val) != Visited.end()) continue;
5220     Visited.insert(Chain.Val);
5221   
5222     switch (Chain.getOpcode()) {
5223     case ISD::EntryToken:
5224       // Entry token is ideal chain operand, but handled in FindBetterChain.
5225       break;
5226       
5227     case ISD::LOAD:
5228     case ISD::STORE: {
5229       // Get alias information for Chain.
5230       SDOperand OpPtr;
5231       int64_t OpSize;
5232       const Value *OpSrcValue;
5233       int OpSrcValueOffset;
5234       bool IsOpLoad = FindAliasInfo(Chain.Val, OpPtr, OpSize,
5235                                     OpSrcValue, OpSrcValueOffset);
5236       
5237       // If chain is alias then stop here.
5238       if (!(IsLoad && IsOpLoad) &&
5239           isAlias(Ptr, Size, SrcValue, SrcValueOffset,
5240                   OpPtr, OpSize, OpSrcValue, OpSrcValueOffset)) {
5241         Aliases.push_back(Chain);
5242       } else {
5243         // Look further up the chain.
5244         Chains.push_back(Chain.getOperand(0));      
5245         // Clean up old chain.
5246         AddToWorkList(Chain.Val);
5247       }
5248       break;
5249     }
5250     
5251     case ISD::TokenFactor:
5252       // We have to check each of the operands of the token factor, so we queue
5253       // then up.  Adding the  operands to the queue (stack) in reverse order
5254       // maintains the original order and increases the likelihood that getNode
5255       // will find a matching token factor (CSE.)
5256       for (unsigned n = Chain.getNumOperands(); n;)
5257         Chains.push_back(Chain.getOperand(--n));
5258       // Eliminate the token factor if we can.
5259       AddToWorkList(Chain.Val);
5260       break;
5261       
5262     default:
5263       // For all other instructions we will just have to take what we can get.
5264       Aliases.push_back(Chain);
5265       break;
5266     }
5267   }
5268 }
5269
5270 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
5271 /// for a better chain (aliasing node.)
5272 SDOperand DAGCombiner::FindBetterChain(SDNode *N, SDOperand OldChain) {
5273   SmallVector<SDOperand, 8> Aliases;  // Ops for replacing token factor.
5274   
5275   // Accumulate all the aliases to this node.
5276   GatherAllAliases(N, OldChain, Aliases);
5277   
5278   if (Aliases.size() == 0) {
5279     // If no operands then chain to entry token.
5280     return DAG.getEntryNode();
5281   } else if (Aliases.size() == 1) {
5282     // If a single operand then chain to it.  We don't need to revisit it.
5283     return Aliases[0];
5284   }
5285
5286   // Construct a custom tailored token factor.
5287   SDOperand NewChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5288                                    &Aliases[0], Aliases.size());
5289
5290   // Make sure the old chain gets cleaned up.
5291   if (NewChain != OldChain) AddToWorkList(OldChain.Val);
5292   
5293   return NewChain;
5294 }
5295
5296 // SelectionDAG::Combine - This is the entry point for the file.
5297 //
5298 void SelectionDAG::Combine(bool RunningAfterLegalize, AliasAnalysis &AA) {
5299   if (!RunningAfterLegalize && ViewDAGCombine1)
5300     viewGraph();
5301   if (RunningAfterLegalize && ViewDAGCombine2)
5302     viewGraph();
5303   /// run - This is the main entry point to this class.
5304   ///
5305   DAGCombiner(*this, AA).Run(RunningAfterLegalize);
5306 }