Add functions 'hasPredecessor' and 'hasPredecessorHelper' to SDNode. The
[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 // This pass is not a substitute for the LLVM IR instcombine pass. This pass is
14 // primarily intended to handle simplification opportunities that are implicit
15 // in the LLVM IR and exposed by the various codegen lowering phases.
16 //
17 //===----------------------------------------------------------------------===//
18
19 #define DEBUG_TYPE "dagcombine"
20 #include "llvm/CodeGen/SelectionDAG.h"
21 #include "llvm/DerivedTypes.h"
22 #include "llvm/LLVMContext.h"
23 #include "llvm/CodeGen/MachineFunction.h"
24 #include "llvm/CodeGen/MachineFrameInfo.h"
25 #include "llvm/CodeGen/PseudoSourceValue.h"
26 #include "llvm/Analysis/AliasAnalysis.h"
27 #include "llvm/Target/TargetData.h"
28 #include "llvm/Target/TargetLowering.h"
29 #include "llvm/Target/TargetMachine.h"
30 #include "llvm/Target/TargetOptions.h"
31 #include "llvm/ADT/SmallPtrSet.h"
32 #include "llvm/ADT/Statistic.h"
33 #include "llvm/Support/CommandLine.h"
34 #include "llvm/Support/Debug.h"
35 #include "llvm/Support/ErrorHandling.h"
36 #include "llvm/Support/MathExtras.h"
37 #include "llvm/Support/raw_ostream.h"
38 #include <algorithm>
39 using namespace llvm;
40
41 STATISTIC(NodesCombined   , "Number of dag nodes combined");
42 STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created");
43 STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created");
44 STATISTIC(OpsNarrowed     , "Number of load/op/store narrowed");
45 STATISTIC(LdStFP2Int      , "Number of fp load/store pairs transformed to int");
46
47 namespace {
48   static cl::opt<bool>
49     CombinerAA("combiner-alias-analysis", cl::Hidden,
50                cl::desc("Turn on alias analysis during testing"));
51
52   static cl::opt<bool>
53     CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden,
54                cl::desc("Include global information in alias analysis"));
55
56 //------------------------------ DAGCombiner ---------------------------------//
57
58   class DAGCombiner {
59     SelectionDAG &DAG;
60     const TargetLowering &TLI;
61     CombineLevel Level;
62     CodeGenOpt::Level OptLevel;
63     bool LegalOperations;
64     bool LegalTypes;
65
66     // Worklist of all of the nodes that need to be simplified.
67     std::vector<SDNode*> WorkList;
68
69     // AA - Used for DAG load/store alias analysis.
70     AliasAnalysis &AA;
71
72     /// AddUsersToWorkList - When an instruction is simplified, add all users of
73     /// the instruction to the work lists because they might get more simplified
74     /// now.
75     ///
76     void AddUsersToWorkList(SDNode *N) {
77       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
78            UI != UE; ++UI)
79         AddToWorkList(*UI);
80     }
81
82     /// visit - call the node-specific routine that knows how to fold each
83     /// particular type of node.
84     SDValue visit(SDNode *N);
85
86   public:
87     /// AddToWorkList - Add to the work list making sure it's instance is at the
88     /// the back (next to be processed.)
89     void AddToWorkList(SDNode *N) {
90       removeFromWorkList(N);
91       WorkList.push_back(N);
92     }
93
94     /// removeFromWorkList - remove all instances of N from the worklist.
95     ///
96     void removeFromWorkList(SDNode *N) {
97       WorkList.erase(std::remove(WorkList.begin(), WorkList.end(), N),
98                      WorkList.end());
99     }
100
101     SDValue CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
102                       bool AddTo = true);
103
104     SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true) {
105       return CombineTo(N, &Res, 1, AddTo);
106     }
107
108     SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1,
109                       bool AddTo = true) {
110       SDValue To[] = { Res0, Res1 };
111       return CombineTo(N, To, 2, AddTo);
112     }
113
114     void CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO);
115
116   private:
117
118     /// SimplifyDemandedBits - Check the specified integer node value to see if
119     /// it can be simplified or if things it uses can be simplified by bit
120     /// propagation.  If so, return true.
121     bool SimplifyDemandedBits(SDValue Op) {
122       unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
123       APInt Demanded = APInt::getAllOnesValue(BitWidth);
124       return SimplifyDemandedBits(Op, Demanded);
125     }
126
127     bool SimplifyDemandedBits(SDValue Op, const APInt &Demanded);
128
129     bool CombineToPreIndexedLoadStore(SDNode *N);
130     bool CombineToPostIndexedLoadStore(SDNode *N);
131
132     void ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad);
133     SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
134     SDValue SExtPromoteOperand(SDValue Op, EVT PVT);
135     SDValue ZExtPromoteOperand(SDValue Op, EVT PVT);
136     SDValue PromoteIntBinOp(SDValue Op);
137     SDValue PromoteIntShiftOp(SDValue Op);
138     SDValue PromoteExtend(SDValue Op);
139     bool PromoteLoad(SDValue Op);
140
141     void ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
142                          SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
143                          ISD::NodeType ExtType);
144
145     /// combine - call the node-specific routine that knows how to fold each
146     /// particular type of node. If that doesn't do anything, try the
147     /// target-specific DAG combines.
148     SDValue combine(SDNode *N);
149
150     // Visitation implementation - Implement dag node combining for different
151     // node types.  The semantics are as follows:
152     // Return Value:
153     //   SDValue.getNode() == 0 - No change was made
154     //   SDValue.getNode() == N - N was replaced, is dead and has been handled.
155     //   otherwise              - N should be replaced by the returned Operand.
156     //
157     SDValue visitTokenFactor(SDNode *N);
158     SDValue visitMERGE_VALUES(SDNode *N);
159     SDValue visitADD(SDNode *N);
160     SDValue visitSUB(SDNode *N);
161     SDValue visitADDC(SDNode *N);
162     SDValue visitADDE(SDNode *N);
163     SDValue visitMUL(SDNode *N);
164     SDValue visitSDIV(SDNode *N);
165     SDValue visitUDIV(SDNode *N);
166     SDValue visitSREM(SDNode *N);
167     SDValue visitUREM(SDNode *N);
168     SDValue visitMULHU(SDNode *N);
169     SDValue visitMULHS(SDNode *N);
170     SDValue visitSMUL_LOHI(SDNode *N);
171     SDValue visitUMUL_LOHI(SDNode *N);
172     SDValue visitSMULO(SDNode *N);
173     SDValue visitUMULO(SDNode *N);
174     SDValue visitSDIVREM(SDNode *N);
175     SDValue visitUDIVREM(SDNode *N);
176     SDValue visitAND(SDNode *N);
177     SDValue visitOR(SDNode *N);
178     SDValue visitXOR(SDNode *N);
179     SDValue SimplifyVBinOp(SDNode *N);
180     SDValue visitSHL(SDNode *N);
181     SDValue visitSRA(SDNode *N);
182     SDValue visitSRL(SDNode *N);
183     SDValue visitCTLZ(SDNode *N);
184     SDValue visitCTTZ(SDNode *N);
185     SDValue visitCTPOP(SDNode *N);
186     SDValue visitSELECT(SDNode *N);
187     SDValue visitSELECT_CC(SDNode *N);
188     SDValue visitSETCC(SDNode *N);
189     SDValue visitSIGN_EXTEND(SDNode *N);
190     SDValue visitZERO_EXTEND(SDNode *N);
191     SDValue visitANY_EXTEND(SDNode *N);
192     SDValue visitSIGN_EXTEND_INREG(SDNode *N);
193     SDValue visitTRUNCATE(SDNode *N);
194     SDValue visitBITCAST(SDNode *N);
195     SDValue visitBUILD_PAIR(SDNode *N);
196     SDValue visitFADD(SDNode *N);
197     SDValue visitFSUB(SDNode *N);
198     SDValue visitFMUL(SDNode *N);
199     SDValue visitFDIV(SDNode *N);
200     SDValue visitFREM(SDNode *N);
201     SDValue visitFCOPYSIGN(SDNode *N);
202     SDValue visitSINT_TO_FP(SDNode *N);
203     SDValue visitUINT_TO_FP(SDNode *N);
204     SDValue visitFP_TO_SINT(SDNode *N);
205     SDValue visitFP_TO_UINT(SDNode *N);
206     SDValue visitFP_ROUND(SDNode *N);
207     SDValue visitFP_ROUND_INREG(SDNode *N);
208     SDValue visitFP_EXTEND(SDNode *N);
209     SDValue visitFNEG(SDNode *N);
210     SDValue visitFABS(SDNode *N);
211     SDValue visitBRCOND(SDNode *N);
212     SDValue visitBR_CC(SDNode *N);
213     SDValue visitLOAD(SDNode *N);
214     SDValue visitSTORE(SDNode *N);
215     SDValue visitINSERT_VECTOR_ELT(SDNode *N);
216     SDValue visitEXTRACT_VECTOR_ELT(SDNode *N);
217     SDValue visitBUILD_VECTOR(SDNode *N);
218     SDValue visitCONCAT_VECTORS(SDNode *N);
219     SDValue visitVECTOR_SHUFFLE(SDNode *N);
220     SDValue visitMEMBARRIER(SDNode *N);
221
222     SDValue XformToShuffleWithZero(SDNode *N);
223     SDValue ReassociateOps(unsigned Opc, DebugLoc DL, SDValue LHS, SDValue RHS);
224
225     SDValue visitShiftByConstant(SDNode *N, unsigned Amt);
226
227     bool SimplifySelectOps(SDNode *SELECT, SDValue LHS, SDValue RHS);
228     SDValue SimplifyBinOpWithSameOpcodeHands(SDNode *N);
229     SDValue SimplifySelect(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2);
230     SDValue SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2,
231                              SDValue N3, ISD::CondCode CC,
232                              bool NotExtCompare = false);
233     SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
234                           DebugLoc DL, bool foldBooleans = true);
235     SDValue SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
236                                          unsigned HiOp);
237     SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
238     SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
239     SDValue BuildSDIV(SDNode *N);
240     SDValue BuildUDIV(SDNode *N);
241     SDValue MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
242                                bool DemandHighBits = true);
243     SDValue MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1);
244     SDNode *MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL);
245     SDValue ReduceLoadWidth(SDNode *N);
246     SDValue ReduceLoadOpStoreWidth(SDNode *N);
247     SDValue TransformFPLoadStorePair(SDNode *N);
248
249     SDValue GetDemandedBits(SDValue V, const APInt &Mask);
250
251     /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
252     /// looking for aliasing nodes and adding them to the Aliases vector.
253     void GatherAllAliases(SDNode *N, SDValue OriginalChain,
254                           SmallVector<SDValue, 8> &Aliases);
255
256     /// isAlias - Return true if there is any possibility that the two addresses
257     /// overlap.
258     bool isAlias(SDValue Ptr1, int64_t Size1,
259                  const Value *SrcValue1, int SrcValueOffset1,
260                  unsigned SrcValueAlign1,
261                  const MDNode *TBAAInfo1,
262                  SDValue Ptr2, int64_t Size2,
263                  const Value *SrcValue2, int SrcValueOffset2,
264                  unsigned SrcValueAlign2,
265                  const MDNode *TBAAInfo2) const;
266
267     /// FindAliasInfo - Extracts the relevant alias information from the memory
268     /// node.  Returns true if the operand was a load.
269     bool FindAliasInfo(SDNode *N,
270                        SDValue &Ptr, int64_t &Size,
271                        const Value *&SrcValue, int &SrcValueOffset,
272                        unsigned &SrcValueAlignment,
273                        const MDNode *&TBAAInfo) const;
274
275     /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
276     /// looking for a better chain (aliasing node.)
277     SDValue FindBetterChain(SDNode *N, SDValue Chain);
278
279   public:
280     DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL)
281       : DAG(D), TLI(D.getTargetLoweringInfo()), Level(Unrestricted),
282         OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {}
283
284     /// Run - runs the dag combiner on all nodes in the work list
285     void Run(CombineLevel AtLevel);
286
287     SelectionDAG &getDAG() const { return DAG; }
288
289     /// getShiftAmountTy - Returns a type large enough to hold any valid
290     /// shift amount - before type legalization these can be huge.
291     EVT getShiftAmountTy(EVT LHSTy) {
292       return LegalTypes ? TLI.getShiftAmountTy(LHSTy) : TLI.getPointerTy();
293     }
294
295     /// isTypeLegal - This method returns true if we are running before type
296     /// legalization or if the specified VT is legal.
297     bool isTypeLegal(const EVT &VT) {
298       if (!LegalTypes) return true;
299       return TLI.isTypeLegal(VT);
300     }
301   };
302 }
303
304
305 namespace {
306 /// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
307 /// nodes from the worklist.
308 class WorkListRemover : public SelectionDAG::DAGUpdateListener {
309   DAGCombiner &DC;
310 public:
311   explicit WorkListRemover(DAGCombiner &dc) : DC(dc) {}
312
313   virtual void NodeDeleted(SDNode *N, SDNode *E) {
314     DC.removeFromWorkList(N);
315   }
316
317   virtual void NodeUpdated(SDNode *N) {
318     // Ignore updates.
319   }
320 };
321 }
322
323 //===----------------------------------------------------------------------===//
324 //  TargetLowering::DAGCombinerInfo implementation
325 //===----------------------------------------------------------------------===//
326
327 void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
328   ((DAGCombiner*)DC)->AddToWorkList(N);
329 }
330
331 void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) {
332   ((DAGCombiner*)DC)->removeFromWorkList(N);
333 }
334
335 SDValue TargetLowering::DAGCombinerInfo::
336 CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) {
337   return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
338 }
339
340 SDValue TargetLowering::DAGCombinerInfo::
341 CombineTo(SDNode *N, SDValue Res, bool AddTo) {
342   return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
343 }
344
345
346 SDValue TargetLowering::DAGCombinerInfo::
347 CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) {
348   return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo);
349 }
350
351 void TargetLowering::DAGCombinerInfo::
352 CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
353   return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
354 }
355
356 //===----------------------------------------------------------------------===//
357 // Helper Functions
358 //===----------------------------------------------------------------------===//
359
360 /// isNegatibleForFree - Return 1 if we can compute the negated form of the
361 /// specified expression for the same cost as the expression itself, or 2 if we
362 /// can compute the negated form more cheaply than the expression itself.
363 static char isNegatibleForFree(SDValue Op, bool LegalOperations,
364                                unsigned Depth = 0) {
365   // No compile time optimizations on this type.
366   if (Op.getValueType() == MVT::ppcf128)
367     return 0;
368
369   // fneg is removable even if it has multiple uses.
370   if (Op.getOpcode() == ISD::FNEG) return 2;
371
372   // Don't allow anything with multiple uses.
373   if (!Op.hasOneUse()) return 0;
374
375   // Don't recurse exponentially.
376   if (Depth > 6) return 0;
377
378   switch (Op.getOpcode()) {
379   default: return false;
380   case ISD::ConstantFP:
381     // Don't invert constant FP values after legalize.  The negated constant
382     // isn't necessarily legal.
383     return LegalOperations ? 0 : 1;
384   case ISD::FADD:
385     // FIXME: determine better conditions for this xform.
386     if (!UnsafeFPMath) return 0;
387
388     // fold (fsub (fadd A, B)) -> (fsub (fneg A), B)
389     if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, Depth+1))
390       return V;
391     // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
392     return isNegatibleForFree(Op.getOperand(1), LegalOperations, Depth+1);
393   case ISD::FSUB:
394     // We can't turn -(A-B) into B-A when we honor signed zeros.
395     if (!UnsafeFPMath) return 0;
396
397     // fold (fneg (fsub A, B)) -> (fsub B, A)
398     return 1;
399
400   case ISD::FMUL:
401   case ISD::FDIV:
402     if (HonorSignDependentRoundingFPMath()) return 0;
403
404     // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y))
405     if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, Depth+1))
406       return V;
407
408     return isNegatibleForFree(Op.getOperand(1), LegalOperations, Depth+1);
409
410   case ISD::FP_EXTEND:
411   case ISD::FP_ROUND:
412   case ISD::FSIN:
413     return isNegatibleForFree(Op.getOperand(0), LegalOperations, Depth+1);
414   }
415 }
416
417 /// GetNegatedExpression - If isNegatibleForFree returns true, this function
418 /// returns the newly negated expression.
419 static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
420                                     bool LegalOperations, unsigned Depth = 0) {
421   // fneg is removable even if it has multiple uses.
422   if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
423
424   // Don't allow anything with multiple uses.
425   assert(Op.hasOneUse() && "Unknown reuse!");
426
427   assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
428   switch (Op.getOpcode()) {
429   default: llvm_unreachable("Unknown code");
430   case ISD::ConstantFP: {
431     APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
432     V.changeSign();
433     return DAG.getConstantFP(V, Op.getValueType());
434   }
435   case ISD::FADD:
436     // FIXME: determine better conditions for this xform.
437     assert(UnsafeFPMath);
438
439     // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
440     if (isNegatibleForFree(Op.getOperand(0), LegalOperations, Depth+1))
441       return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
442                          GetNegatedExpression(Op.getOperand(0), DAG,
443                                               LegalOperations, Depth+1),
444                          Op.getOperand(1));
445     // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
446     return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
447                        GetNegatedExpression(Op.getOperand(1), DAG,
448                                             LegalOperations, Depth+1),
449                        Op.getOperand(0));
450   case ISD::FSUB:
451     // We can't turn -(A-B) into B-A when we honor signed zeros.
452     assert(UnsafeFPMath);
453
454     // fold (fneg (fsub 0, B)) -> B
455     if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
456       if (N0CFP->getValueAPF().isZero())
457         return Op.getOperand(1);
458
459     // fold (fneg (fsub A, B)) -> (fsub B, A)
460     return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
461                        Op.getOperand(1), Op.getOperand(0));
462
463   case ISD::FMUL:
464   case ISD::FDIV:
465     assert(!HonorSignDependentRoundingFPMath());
466
467     // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y)
468     if (isNegatibleForFree(Op.getOperand(0), LegalOperations, Depth+1))
469       return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
470                          GetNegatedExpression(Op.getOperand(0), DAG,
471                                               LegalOperations, Depth+1),
472                          Op.getOperand(1));
473
474     // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y))
475     return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
476                        Op.getOperand(0),
477                        GetNegatedExpression(Op.getOperand(1), DAG,
478                                             LegalOperations, Depth+1));
479
480   case ISD::FP_EXTEND:
481   case ISD::FSIN:
482     return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
483                        GetNegatedExpression(Op.getOperand(0), DAG,
484                                             LegalOperations, Depth+1));
485   case ISD::FP_ROUND:
486       return DAG.getNode(ISD::FP_ROUND, Op.getDebugLoc(), Op.getValueType(),
487                          GetNegatedExpression(Op.getOperand(0), DAG,
488                                               LegalOperations, Depth+1),
489                          Op.getOperand(1));
490   }
491 }
492
493
494 // isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
495 // that selects between the values 1 and 0, making it equivalent to a setcc.
496 // Also, set the incoming LHS, RHS, and CC references to the appropriate
497 // nodes based on the type of node we are checking.  This simplifies life a
498 // bit for the callers.
499 static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
500                               SDValue &CC) {
501   if (N.getOpcode() == ISD::SETCC) {
502     LHS = N.getOperand(0);
503     RHS = N.getOperand(1);
504     CC  = N.getOperand(2);
505     return true;
506   }
507   if (N.getOpcode() == ISD::SELECT_CC &&
508       N.getOperand(2).getOpcode() == ISD::Constant &&
509       N.getOperand(3).getOpcode() == ISD::Constant &&
510       cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
511       cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
512     LHS = N.getOperand(0);
513     RHS = N.getOperand(1);
514     CC  = N.getOperand(4);
515     return true;
516   }
517   return false;
518 }
519
520 // isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
521 // one use.  If this is true, it allows the users to invert the operation for
522 // free when it is profitable to do so.
523 static bool isOneUseSetCC(SDValue N) {
524   SDValue N0, N1, N2;
525   if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
526     return true;
527   return false;
528 }
529
530 SDValue DAGCombiner::ReassociateOps(unsigned Opc, DebugLoc DL,
531                                     SDValue N0, SDValue N1) {
532   EVT VT = N0.getValueType();
533   if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
534     if (isa<ConstantSDNode>(N1)) {
535       // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
536       SDValue OpNode =
537         DAG.FoldConstantArithmetic(Opc, VT,
538                                    cast<ConstantSDNode>(N0.getOperand(1)),
539                                    cast<ConstantSDNode>(N1));
540       return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
541     }
542     if (N0.hasOneUse()) {
543       // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
544       SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
545                                    N0.getOperand(0), N1);
546       AddToWorkList(OpNode.getNode());
547       return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
548     }
549   }
550
551   if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
552     if (isa<ConstantSDNode>(N0)) {
553       // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
554       SDValue OpNode =
555         DAG.FoldConstantArithmetic(Opc, VT,
556                                    cast<ConstantSDNode>(N1.getOperand(1)),
557                                    cast<ConstantSDNode>(N0));
558       return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
559     }
560     if (N1.hasOneUse()) {
561       // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
562       SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
563                                    N1.getOperand(0), N0);
564       AddToWorkList(OpNode.getNode());
565       return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1));
566     }
567   }
568
569   return SDValue();
570 }
571
572 SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
573                                bool AddTo) {
574   assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
575   ++NodesCombined;
576   DEBUG(dbgs() << "\nReplacing.1 ";
577         N->dump(&DAG);
578         dbgs() << "\nWith: ";
579         To[0].getNode()->dump(&DAG);
580         dbgs() << " and " << NumTo-1 << " other values\n";
581         for (unsigned i = 0, e = NumTo; i != e; ++i)
582           assert((!To[i].getNode() ||
583                   N->getValueType(i) == To[i].getValueType()) &&
584                  "Cannot combine value to value of different type!"));
585   WorkListRemover DeadNodes(*this);
586   DAG.ReplaceAllUsesWith(N, To, &DeadNodes);
587
588   if (AddTo) {
589     // Push the new nodes and any users onto the worklist
590     for (unsigned i = 0, e = NumTo; i != e; ++i) {
591       if (To[i].getNode()) {
592         AddToWorkList(To[i].getNode());
593         AddUsersToWorkList(To[i].getNode());
594       }
595     }
596   }
597
598   // Finally, if the node is now dead, remove it from the graph.  The node
599   // may not be dead if the replacement process recursively simplified to
600   // something else needing this node.
601   if (N->use_empty()) {
602     // Nodes can be reintroduced into the worklist.  Make sure we do not
603     // process a node that has been replaced.
604     removeFromWorkList(N);
605
606     // Finally, since the node is now dead, remove it from the graph.
607     DAG.DeleteNode(N);
608   }
609   return SDValue(N, 0);
610 }
611
612 void DAGCombiner::
613 CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
614   // Replace all uses.  If any nodes become isomorphic to other nodes and
615   // are deleted, make sure to remove them from our worklist.
616   WorkListRemover DeadNodes(*this);
617   DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New, &DeadNodes);
618
619   // Push the new node and any (possibly new) users onto the worklist.
620   AddToWorkList(TLO.New.getNode());
621   AddUsersToWorkList(TLO.New.getNode());
622
623   // Finally, if the node is now dead, remove it from the graph.  The node
624   // may not be dead if the replacement process recursively simplified to
625   // something else needing this node.
626   if (TLO.Old.getNode()->use_empty()) {
627     removeFromWorkList(TLO.Old.getNode());
628
629     // If the operands of this node are only used by the node, they will now
630     // be dead.  Make sure to visit them first to delete dead nodes early.
631     for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i)
632       if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse())
633         AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode());
634
635     DAG.DeleteNode(TLO.Old.getNode());
636   }
637 }
638
639 /// SimplifyDemandedBits - Check the specified integer node value to see if
640 /// it can be simplified or if things it uses can be simplified by bit
641 /// propagation.  If so, return true.
642 bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) {
643   TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations);
644   APInt KnownZero, KnownOne;
645   if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
646     return false;
647
648   // Revisit the node.
649   AddToWorkList(Op.getNode());
650
651   // Replace the old value with the new one.
652   ++NodesCombined;
653   DEBUG(dbgs() << "\nReplacing.2 ";
654         TLO.Old.getNode()->dump(&DAG);
655         dbgs() << "\nWith: ";
656         TLO.New.getNode()->dump(&DAG);
657         dbgs() << '\n');
658
659   CommitTargetLoweringOpt(TLO);
660   return true;
661 }
662
663 void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) {
664   DebugLoc dl = Load->getDebugLoc();
665   EVT VT = Load->getValueType(0);
666   SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
667
668   DEBUG(dbgs() << "\nReplacing.9 ";
669         Load->dump(&DAG);
670         dbgs() << "\nWith: ";
671         Trunc.getNode()->dump(&DAG);
672         dbgs() << '\n');
673   WorkListRemover DeadNodes(*this);
674   DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc, &DeadNodes);
675   DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1),
676                                 &DeadNodes);
677   removeFromWorkList(Load);
678   DAG.DeleteNode(Load);
679   AddToWorkList(Trunc.getNode());
680 }
681
682 SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
683   Replace = false;
684   DebugLoc dl = Op.getDebugLoc();
685   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
686     EVT MemVT = LD->getMemoryVT();
687     ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
688       ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
689                                                   : ISD::EXTLOAD)
690       : LD->getExtensionType();
691     Replace = true;
692     return DAG.getExtLoad(ExtType, dl, PVT,
693                           LD->getChain(), LD->getBasePtr(),
694                           LD->getPointerInfo(),
695                           MemVT, LD->isVolatile(),
696                           LD->isNonTemporal(), LD->getAlignment());
697   }
698
699   unsigned Opc = Op.getOpcode();
700   switch (Opc) {
701   default: break;
702   case ISD::AssertSext:
703     return DAG.getNode(ISD::AssertSext, dl, PVT,
704                        SExtPromoteOperand(Op.getOperand(0), PVT),
705                        Op.getOperand(1));
706   case ISD::AssertZext:
707     return DAG.getNode(ISD::AssertZext, dl, PVT,
708                        ZExtPromoteOperand(Op.getOperand(0), PVT),
709                        Op.getOperand(1));
710   case ISD::Constant: {
711     unsigned ExtOpc =
712       Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
713     return DAG.getNode(ExtOpc, dl, PVT, Op);
714   }
715   }
716
717   if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT))
718     return SDValue();
719   return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op);
720 }
721
722 SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) {
723   if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT))
724     return SDValue();
725   EVT OldVT = Op.getValueType();
726   DebugLoc dl = Op.getDebugLoc();
727   bool Replace = false;
728   SDValue NewOp = PromoteOperand(Op, PVT, Replace);
729   if (NewOp.getNode() == 0)
730     return SDValue();
731   AddToWorkList(NewOp.getNode());
732
733   if (Replace)
734     ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
735   return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp,
736                      DAG.getValueType(OldVT));
737 }
738
739 SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) {
740   EVT OldVT = Op.getValueType();
741   DebugLoc dl = Op.getDebugLoc();
742   bool Replace = false;
743   SDValue NewOp = PromoteOperand(Op, PVT, Replace);
744   if (NewOp.getNode() == 0)
745     return SDValue();
746   AddToWorkList(NewOp.getNode());
747
748   if (Replace)
749     ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
750   return DAG.getZeroExtendInReg(NewOp, dl, OldVT);
751 }
752
753 /// PromoteIntBinOp - Promote the specified integer binary operation if the
754 /// target indicates it is beneficial. e.g. On x86, it's usually better to
755 /// promote i16 operations to i32 since i16 instructions are longer.
756 SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) {
757   if (!LegalOperations)
758     return SDValue();
759
760   EVT VT = Op.getValueType();
761   if (VT.isVector() || !VT.isInteger())
762     return SDValue();
763
764   // If operation type is 'undesirable', e.g. i16 on x86, consider
765   // promoting it.
766   unsigned Opc = Op.getOpcode();
767   if (TLI.isTypeDesirableForOp(Opc, VT))
768     return SDValue();
769
770   EVT PVT = VT;
771   // Consult target whether it is a good idea to promote this operation and
772   // what's the right type to promote it to.
773   if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
774     assert(PVT != VT && "Don't know what type to promote to!");
775
776     bool Replace0 = false;
777     SDValue N0 = Op.getOperand(0);
778     SDValue NN0 = PromoteOperand(N0, PVT, Replace0);
779     if (NN0.getNode() == 0)
780       return SDValue();
781
782     bool Replace1 = false;
783     SDValue N1 = Op.getOperand(1);
784     SDValue NN1;
785     if (N0 == N1)
786       NN1 = NN0;
787     else {
788       NN1 = PromoteOperand(N1, PVT, Replace1);
789       if (NN1.getNode() == 0)
790         return SDValue();
791     }
792
793     AddToWorkList(NN0.getNode());
794     if (NN1.getNode())
795       AddToWorkList(NN1.getNode());
796
797     if (Replace0)
798       ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode());
799     if (Replace1)
800       ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode());
801
802     DEBUG(dbgs() << "\nPromoting ";
803           Op.getNode()->dump(&DAG));
804     DebugLoc dl = Op.getDebugLoc();
805     return DAG.getNode(ISD::TRUNCATE, dl, VT,
806                        DAG.getNode(Opc, dl, PVT, NN0, NN1));
807   }
808   return SDValue();
809 }
810
811 /// PromoteIntShiftOp - Promote the specified integer shift operation if the
812 /// target indicates it is beneficial. e.g. On x86, it's usually better to
813 /// promote i16 operations to i32 since i16 instructions are longer.
814 SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) {
815   if (!LegalOperations)
816     return SDValue();
817
818   EVT VT = Op.getValueType();
819   if (VT.isVector() || !VT.isInteger())
820     return SDValue();
821
822   // If operation type is 'undesirable', e.g. i16 on x86, consider
823   // promoting it.
824   unsigned Opc = Op.getOpcode();
825   if (TLI.isTypeDesirableForOp(Opc, VT))
826     return SDValue();
827
828   EVT PVT = VT;
829   // Consult target whether it is a good idea to promote this operation and
830   // what's the right type to promote it to.
831   if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
832     assert(PVT != VT && "Don't know what type to promote to!");
833
834     bool Replace = false;
835     SDValue N0 = Op.getOperand(0);
836     if (Opc == ISD::SRA)
837       N0 = SExtPromoteOperand(Op.getOperand(0), PVT);
838     else if (Opc == ISD::SRL)
839       N0 = ZExtPromoteOperand(Op.getOperand(0), PVT);
840     else
841       N0 = PromoteOperand(N0, PVT, Replace);
842     if (N0.getNode() == 0)
843       return SDValue();
844
845     AddToWorkList(N0.getNode());
846     if (Replace)
847       ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode());
848
849     DEBUG(dbgs() << "\nPromoting ";
850           Op.getNode()->dump(&DAG));
851     DebugLoc dl = Op.getDebugLoc();
852     return DAG.getNode(ISD::TRUNCATE, dl, VT,
853                        DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1)));
854   }
855   return SDValue();
856 }
857
858 SDValue DAGCombiner::PromoteExtend(SDValue Op) {
859   if (!LegalOperations)
860     return SDValue();
861
862   EVT VT = Op.getValueType();
863   if (VT.isVector() || !VT.isInteger())
864     return SDValue();
865
866   // If operation type is 'undesirable', e.g. i16 on x86, consider
867   // promoting it.
868   unsigned Opc = Op.getOpcode();
869   if (TLI.isTypeDesirableForOp(Opc, VT))
870     return SDValue();
871
872   EVT PVT = VT;
873   // Consult target whether it is a good idea to promote this operation and
874   // what's the right type to promote it to.
875   if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
876     assert(PVT != VT && "Don't know what type to promote to!");
877     // fold (aext (aext x)) -> (aext x)
878     // fold (aext (zext x)) -> (zext x)
879     // fold (aext (sext x)) -> (sext x)
880     DEBUG(dbgs() << "\nPromoting ";
881           Op.getNode()->dump(&DAG));
882     return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), VT, Op.getOperand(0));
883   }
884   return SDValue();
885 }
886
887 bool DAGCombiner::PromoteLoad(SDValue Op) {
888   if (!LegalOperations)
889     return false;
890
891   EVT VT = Op.getValueType();
892   if (VT.isVector() || !VT.isInteger())
893     return false;
894
895   // If operation type is 'undesirable', e.g. i16 on x86, consider
896   // promoting it.
897   unsigned Opc = Op.getOpcode();
898   if (TLI.isTypeDesirableForOp(Opc, VT))
899     return false;
900
901   EVT PVT = VT;
902   // Consult target whether it is a good idea to promote this operation and
903   // what's the right type to promote it to.
904   if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
905     assert(PVT != VT && "Don't know what type to promote to!");
906
907     DebugLoc dl = Op.getDebugLoc();
908     SDNode *N = Op.getNode();
909     LoadSDNode *LD = cast<LoadSDNode>(N);
910     EVT MemVT = LD->getMemoryVT();
911     ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
912       ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
913                                                   : ISD::EXTLOAD)
914       : LD->getExtensionType();
915     SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT,
916                                    LD->getChain(), LD->getBasePtr(),
917                                    LD->getPointerInfo(),
918                                    MemVT, LD->isVolatile(),
919                                    LD->isNonTemporal(), LD->getAlignment());
920     SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD);
921
922     DEBUG(dbgs() << "\nPromoting ";
923           N->dump(&DAG);
924           dbgs() << "\nTo: ";
925           Result.getNode()->dump(&DAG);
926           dbgs() << '\n');
927     WorkListRemover DeadNodes(*this);
928     DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result, &DeadNodes);
929     DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1), &DeadNodes);
930     removeFromWorkList(N);
931     DAG.DeleteNode(N);
932     AddToWorkList(Result.getNode());
933     return true;
934   }
935   return false;
936 }
937
938
939 //===----------------------------------------------------------------------===//
940 //  Main DAG Combiner implementation
941 //===----------------------------------------------------------------------===//
942
943 void DAGCombiner::Run(CombineLevel AtLevel) {
944   // set the instance variables, so that the various visit routines may use it.
945   Level = AtLevel;
946   LegalOperations = Level >= NoIllegalOperations;
947   LegalTypes = Level >= NoIllegalTypes;
948
949   // Add all the dag nodes to the worklist.
950   WorkList.reserve(DAG.allnodes_size());
951   for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
952        E = DAG.allnodes_end(); I != E; ++I)
953     WorkList.push_back(I);
954
955   // Create a dummy node (which is not added to allnodes), that adds a reference
956   // to the root node, preventing it from being deleted, and tracking any
957   // changes of the root.
958   HandleSDNode Dummy(DAG.getRoot());
959
960   // The root of the dag may dangle to deleted nodes until the dag combiner is
961   // done.  Set it to null to avoid confusion.
962   DAG.setRoot(SDValue());
963
964   // while the worklist isn't empty, inspect the node on the end of it and
965   // try and combine it.
966   while (!WorkList.empty()) {
967     SDNode *N = WorkList.back();
968     WorkList.pop_back();
969
970     // If N has no uses, it is dead.  Make sure to revisit all N's operands once
971     // N is deleted from the DAG, since they too may now be dead or may have a
972     // reduced number of uses, allowing other xforms.
973     if (N->use_empty() && N != &Dummy) {
974       for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
975         AddToWorkList(N->getOperand(i).getNode());
976
977       DAG.DeleteNode(N);
978       continue;
979     }
980
981     SDValue RV = combine(N);
982
983     if (RV.getNode() == 0)
984       continue;
985
986     ++NodesCombined;
987
988     // If we get back the same node we passed in, rather than a new node or
989     // zero, we know that the node must have defined multiple values and
990     // CombineTo was used.  Since CombineTo takes care of the worklist
991     // mechanics for us, we have no work to do in this case.
992     if (RV.getNode() == N)
993       continue;
994
995     assert(N->getOpcode() != ISD::DELETED_NODE &&
996            RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
997            "Node was deleted but visit returned new node!");
998
999     DEBUG(dbgs() << "\nReplacing.3 ";
1000           N->dump(&DAG);
1001           dbgs() << "\nWith: ";
1002           RV.getNode()->dump(&DAG);
1003           dbgs() << '\n');
1004     
1005     // Transfer debug value.
1006     DAG.TransferDbgValues(SDValue(N, 0), RV);
1007     WorkListRemover DeadNodes(*this);
1008     if (N->getNumValues() == RV.getNode()->getNumValues())
1009       DAG.ReplaceAllUsesWith(N, RV.getNode(), &DeadNodes);
1010     else {
1011       assert(N->getValueType(0) == RV.getValueType() &&
1012              N->getNumValues() == 1 && "Type mismatch");
1013       SDValue OpV = RV;
1014       DAG.ReplaceAllUsesWith(N, &OpV, &DeadNodes);
1015     }
1016
1017     // Push the new node and any users onto the worklist
1018     AddToWorkList(RV.getNode());
1019     AddUsersToWorkList(RV.getNode());
1020
1021     // Add any uses of the old node to the worklist in case this node is the
1022     // last one that uses them.  They may become dead after this node is
1023     // deleted.
1024     for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1025       AddToWorkList(N->getOperand(i).getNode());
1026
1027     // Finally, if the node is now dead, remove it from the graph.  The node
1028     // may not be dead if the replacement process recursively simplified to
1029     // something else needing this node.
1030     if (N->use_empty()) {
1031       // Nodes can be reintroduced into the worklist.  Make sure we do not
1032       // process a node that has been replaced.
1033       removeFromWorkList(N);
1034
1035       // Finally, since the node is now dead, remove it from the graph.
1036       DAG.DeleteNode(N);
1037     }
1038   }
1039
1040   // If the root changed (e.g. it was a dead load, update the root).
1041   DAG.setRoot(Dummy.getValue());
1042 }
1043
1044 SDValue DAGCombiner::visit(SDNode *N) {
1045   switch (N->getOpcode()) {
1046   default: break;
1047   case ISD::TokenFactor:        return visitTokenFactor(N);
1048   case ISD::MERGE_VALUES:       return visitMERGE_VALUES(N);
1049   case ISD::ADD:                return visitADD(N);
1050   case ISD::SUB:                return visitSUB(N);
1051   case ISD::ADDC:               return visitADDC(N);
1052   case ISD::ADDE:               return visitADDE(N);
1053   case ISD::MUL:                return visitMUL(N);
1054   case ISD::SDIV:               return visitSDIV(N);
1055   case ISD::UDIV:               return visitUDIV(N);
1056   case ISD::SREM:               return visitSREM(N);
1057   case ISD::UREM:               return visitUREM(N);
1058   case ISD::MULHU:              return visitMULHU(N);
1059   case ISD::MULHS:              return visitMULHS(N);
1060   case ISD::SMUL_LOHI:          return visitSMUL_LOHI(N);
1061   case ISD::UMUL_LOHI:          return visitUMUL_LOHI(N);
1062   case ISD::SMULO:              return visitSMULO(N);
1063   case ISD::UMULO:              return visitUMULO(N);
1064   case ISD::SDIVREM:            return visitSDIVREM(N);
1065   case ISD::UDIVREM:            return visitUDIVREM(N);
1066   case ISD::AND:                return visitAND(N);
1067   case ISD::OR:                 return visitOR(N);
1068   case ISD::XOR:                return visitXOR(N);
1069   case ISD::SHL:                return visitSHL(N);
1070   case ISD::SRA:                return visitSRA(N);
1071   case ISD::SRL:                return visitSRL(N);
1072   case ISD::CTLZ:               return visitCTLZ(N);
1073   case ISD::CTTZ:               return visitCTTZ(N);
1074   case ISD::CTPOP:              return visitCTPOP(N);
1075   case ISD::SELECT:             return visitSELECT(N);
1076   case ISD::SELECT_CC:          return visitSELECT_CC(N);
1077   case ISD::SETCC:              return visitSETCC(N);
1078   case ISD::SIGN_EXTEND:        return visitSIGN_EXTEND(N);
1079   case ISD::ZERO_EXTEND:        return visitZERO_EXTEND(N);
1080   case ISD::ANY_EXTEND:         return visitANY_EXTEND(N);
1081   case ISD::SIGN_EXTEND_INREG:  return visitSIGN_EXTEND_INREG(N);
1082   case ISD::TRUNCATE:           return visitTRUNCATE(N);
1083   case ISD::BITCAST:            return visitBITCAST(N);
1084   case ISD::BUILD_PAIR:         return visitBUILD_PAIR(N);
1085   case ISD::FADD:               return visitFADD(N);
1086   case ISD::FSUB:               return visitFSUB(N);
1087   case ISD::FMUL:               return visitFMUL(N);
1088   case ISD::FDIV:               return visitFDIV(N);
1089   case ISD::FREM:               return visitFREM(N);
1090   case ISD::FCOPYSIGN:          return visitFCOPYSIGN(N);
1091   case ISD::SINT_TO_FP:         return visitSINT_TO_FP(N);
1092   case ISD::UINT_TO_FP:         return visitUINT_TO_FP(N);
1093   case ISD::FP_TO_SINT:         return visitFP_TO_SINT(N);
1094   case ISD::FP_TO_UINT:         return visitFP_TO_UINT(N);
1095   case ISD::FP_ROUND:           return visitFP_ROUND(N);
1096   case ISD::FP_ROUND_INREG:     return visitFP_ROUND_INREG(N);
1097   case ISD::FP_EXTEND:          return visitFP_EXTEND(N);
1098   case ISD::FNEG:               return visitFNEG(N);
1099   case ISD::FABS:               return visitFABS(N);
1100   case ISD::BRCOND:             return visitBRCOND(N);
1101   case ISD::BR_CC:              return visitBR_CC(N);
1102   case ISD::LOAD:               return visitLOAD(N);
1103   case ISD::STORE:              return visitSTORE(N);
1104   case ISD::INSERT_VECTOR_ELT:  return visitINSERT_VECTOR_ELT(N);
1105   case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
1106   case ISD::BUILD_VECTOR:       return visitBUILD_VECTOR(N);
1107   case ISD::CONCAT_VECTORS:     return visitCONCAT_VECTORS(N);
1108   case ISD::VECTOR_SHUFFLE:     return visitVECTOR_SHUFFLE(N);
1109   case ISD::MEMBARRIER:         return visitMEMBARRIER(N);
1110   }
1111   return SDValue();
1112 }
1113
1114 SDValue DAGCombiner::combine(SDNode *N) {
1115   SDValue RV = visit(N);
1116
1117   // If nothing happened, try a target-specific DAG combine.
1118   if (RV.getNode() == 0) {
1119     assert(N->getOpcode() != ISD::DELETED_NODE &&
1120            "Node was deleted but visit returned NULL!");
1121
1122     if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1123         TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1124
1125       // Expose the DAG combiner to the target combiner impls.
1126       TargetLowering::DAGCombinerInfo
1127         DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
1128
1129       RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1130     }
1131   }
1132
1133   // If nothing happened still, try promoting the operation.
1134   if (RV.getNode() == 0) {
1135     switch (N->getOpcode()) {
1136     default: break;
1137     case ISD::ADD:
1138     case ISD::SUB:
1139     case ISD::MUL:
1140     case ISD::AND:
1141     case ISD::OR:
1142     case ISD::XOR:
1143       RV = PromoteIntBinOp(SDValue(N, 0));
1144       break;
1145     case ISD::SHL:
1146     case ISD::SRA:
1147     case ISD::SRL:
1148       RV = PromoteIntShiftOp(SDValue(N, 0));
1149       break;
1150     case ISD::SIGN_EXTEND:
1151     case ISD::ZERO_EXTEND:
1152     case ISD::ANY_EXTEND:
1153       RV = PromoteExtend(SDValue(N, 0));
1154       break;
1155     case ISD::LOAD:
1156       if (PromoteLoad(SDValue(N, 0)))
1157         RV = SDValue(N, 0);
1158       break;
1159     }
1160   }
1161
1162   // If N is a commutative binary node, try commuting it to enable more
1163   // sdisel CSE.
1164   if (RV.getNode() == 0 &&
1165       SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1166       N->getNumValues() == 1) {
1167     SDValue N0 = N->getOperand(0);
1168     SDValue N1 = N->getOperand(1);
1169
1170     // Constant operands are canonicalized to RHS.
1171     if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
1172       SDValue Ops[] = { N1, N0 };
1173       SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1174                                             Ops, 2);
1175       if (CSENode)
1176         return SDValue(CSENode, 0);
1177     }
1178   }
1179
1180   return RV;
1181 }
1182
1183 /// getInputChainForNode - Given a node, return its input chain if it has one,
1184 /// otherwise return a null sd operand.
1185 static SDValue getInputChainForNode(SDNode *N) {
1186   if (unsigned NumOps = N->getNumOperands()) {
1187     if (N->getOperand(0).getValueType() == MVT::Other)
1188       return N->getOperand(0);
1189     else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
1190       return N->getOperand(NumOps-1);
1191     for (unsigned i = 1; i < NumOps-1; ++i)
1192       if (N->getOperand(i).getValueType() == MVT::Other)
1193         return N->getOperand(i);
1194   }
1195   return SDValue();
1196 }
1197
1198 SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
1199   // If N has two operands, where one has an input chain equal to the other,
1200   // the 'other' chain is redundant.
1201   if (N->getNumOperands() == 2) {
1202     if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
1203       return N->getOperand(0);
1204     if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
1205       return N->getOperand(1);
1206   }
1207
1208   SmallVector<SDNode *, 8> TFs;     // List of token factors to visit.
1209   SmallVector<SDValue, 8> Ops;    // Ops for replacing token factor.
1210   SmallPtrSet<SDNode*, 16> SeenOps;
1211   bool Changed = false;             // If we should replace this token factor.
1212
1213   // Start out with this token factor.
1214   TFs.push_back(N);
1215
1216   // Iterate through token factors.  The TFs grows when new token factors are
1217   // encountered.
1218   for (unsigned i = 0; i < TFs.size(); ++i) {
1219     SDNode *TF = TFs[i];
1220
1221     // Check each of the operands.
1222     for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
1223       SDValue Op = TF->getOperand(i);
1224
1225       switch (Op.getOpcode()) {
1226       case ISD::EntryToken:
1227         // Entry tokens don't need to be added to the list. They are
1228         // rededundant.
1229         Changed = true;
1230         break;
1231
1232       case ISD::TokenFactor:
1233         if (Op.hasOneUse() &&
1234             std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
1235           // Queue up for processing.
1236           TFs.push_back(Op.getNode());
1237           // Clean up in case the token factor is removed.
1238           AddToWorkList(Op.getNode());
1239           Changed = true;
1240           break;
1241         }
1242         // Fall thru
1243
1244       default:
1245         // Only add if it isn't already in the list.
1246         if (SeenOps.insert(Op.getNode()))
1247           Ops.push_back(Op);
1248         else
1249           Changed = true;
1250         break;
1251       }
1252     }
1253   }
1254
1255   SDValue Result;
1256
1257   // If we've change things around then replace token factor.
1258   if (Changed) {
1259     if (Ops.empty()) {
1260       // The entry token is the only possible outcome.
1261       Result = DAG.getEntryNode();
1262     } else {
1263       // New and improved token factor.
1264       Result = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
1265                            MVT::Other, &Ops[0], Ops.size());
1266     }
1267
1268     // Don't add users to work list.
1269     return CombineTo(N, Result, false);
1270   }
1271
1272   return Result;
1273 }
1274
1275 /// MERGE_VALUES can always be eliminated.
1276 SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
1277   WorkListRemover DeadNodes(*this);
1278   // Replacing results may cause a different MERGE_VALUES to suddenly
1279   // be CSE'd with N, and carry its uses with it. Iterate until no
1280   // uses remain, to ensure that the node can be safely deleted.
1281   do {
1282     for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1283       DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i),
1284                                     &DeadNodes);
1285   } while (!N->use_empty());
1286   removeFromWorkList(N);
1287   DAG.DeleteNode(N);
1288   return SDValue(N, 0);   // Return N so it doesn't get rechecked!
1289 }
1290
1291 static
1292 SDValue combineShlAddConstant(DebugLoc DL, SDValue N0, SDValue N1,
1293                               SelectionDAG &DAG) {
1294   EVT VT = N0.getValueType();
1295   SDValue N00 = N0.getOperand(0);
1296   SDValue N01 = N0.getOperand(1);
1297   ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
1298
1299   if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
1300       isa<ConstantSDNode>(N00.getOperand(1))) {
1301     // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1302     N0 = DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
1303                      DAG.getNode(ISD::SHL, N00.getDebugLoc(), VT,
1304                                  N00.getOperand(0), N01),
1305                      DAG.getNode(ISD::SHL, N01.getDebugLoc(), VT,
1306                                  N00.getOperand(1), N01));
1307     return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
1308   }
1309
1310   return SDValue();
1311 }
1312
1313 SDValue DAGCombiner::visitADD(SDNode *N) {
1314   SDValue N0 = N->getOperand(0);
1315   SDValue N1 = N->getOperand(1);
1316   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1317   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1318   EVT VT = N0.getValueType();
1319
1320   // fold vector ops
1321   if (VT.isVector()) {
1322     SDValue FoldedVOp = SimplifyVBinOp(N);
1323     if (FoldedVOp.getNode()) return FoldedVOp;
1324   }
1325
1326   // fold (add x, undef) -> undef
1327   if (N0.getOpcode() == ISD::UNDEF)
1328     return N0;
1329   if (N1.getOpcode() == ISD::UNDEF)
1330     return N1;
1331   // fold (add c1, c2) -> c1+c2
1332   if (N0C && N1C)
1333     return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
1334   // canonicalize constant to RHS
1335   if (N0C && !N1C)
1336     return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0);
1337   // fold (add x, 0) -> x
1338   if (N1C && N1C->isNullValue())
1339     return N0;
1340   // fold (add Sym, c) -> Sym+c
1341   if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
1342     if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
1343         GA->getOpcode() == ISD::GlobalAddress)
1344       return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
1345                                   GA->getOffset() +
1346                                     (uint64_t)N1C->getSExtValue());
1347   // fold ((c1-A)+c2) -> (c1+c2)-A
1348   if (N1C && N0.getOpcode() == ISD::SUB)
1349     if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
1350       return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1351                          DAG.getConstant(N1C->getAPIntValue()+
1352                                          N0C->getAPIntValue(), VT),
1353                          N0.getOperand(1));
1354   // reassociate add
1355   SDValue RADD = ReassociateOps(ISD::ADD, N->getDebugLoc(), N0, N1);
1356   if (RADD.getNode() != 0)
1357     return RADD;
1358   // fold ((0-A) + B) -> B-A
1359   if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1360       cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
1361     return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, N0.getOperand(1));
1362   // fold (A + (0-B)) -> A-B
1363   if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1364       cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
1365     return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1.getOperand(1));
1366   // fold (A+(B-A)) -> B
1367   if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
1368     return N1.getOperand(0);
1369   // fold ((B-A)+A) -> B
1370   if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1371     return N0.getOperand(0);
1372   // fold (A+(B-(A+C))) to (B-C)
1373   if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
1374       N0 == N1.getOperand(1).getOperand(0))
1375     return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
1376                        N1.getOperand(1).getOperand(1));
1377   // fold (A+(B-(C+A))) to (B-C)
1378   if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
1379       N0 == N1.getOperand(1).getOperand(1))
1380     return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
1381                        N1.getOperand(1).getOperand(0));
1382   // fold (A+((B-A)+or-C)) to (B+or-C)
1383   if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1384       N1.getOperand(0).getOpcode() == ISD::SUB &&
1385       N0 == N1.getOperand(0).getOperand(1))
1386     return DAG.getNode(N1.getOpcode(), N->getDebugLoc(), VT,
1387                        N1.getOperand(0).getOperand(0), N1.getOperand(1));
1388
1389   // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1390   if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1391     SDValue N00 = N0.getOperand(0);
1392     SDValue N01 = N0.getOperand(1);
1393     SDValue N10 = N1.getOperand(0);
1394     SDValue N11 = N1.getOperand(1);
1395
1396     if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
1397       return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1398                          DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, N00, N10),
1399                          DAG.getNode(ISD::ADD, N1.getDebugLoc(), VT, N01, N11));
1400   }
1401
1402   if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1403     return SDValue(N, 0);
1404
1405   // fold (a+b) -> (a|b) iff a and b share no bits.
1406   if (VT.isInteger() && !VT.isVector()) {
1407     APInt LHSZero, LHSOne;
1408     APInt RHSZero, RHSOne;
1409     APInt Mask = APInt::getAllOnesValue(VT.getScalarType().getSizeInBits());
1410     DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
1411
1412     if (LHSZero.getBoolValue()) {
1413       DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
1414
1415       // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1416       // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1417       if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
1418           (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
1419         return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1);
1420     }
1421   }
1422
1423   // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1424   if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
1425     SDValue Result = combineShlAddConstant(N->getDebugLoc(), N0, N1, DAG);
1426     if (Result.getNode()) return Result;
1427   }
1428   if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
1429     SDValue Result = combineShlAddConstant(N->getDebugLoc(), N1, N0, DAG);
1430     if (Result.getNode()) return Result;
1431   }
1432
1433   // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1434   if (N1.getOpcode() == ISD::SHL &&
1435       N1.getOperand(0).getOpcode() == ISD::SUB)
1436     if (ConstantSDNode *C =
1437           dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1438       if (C->getAPIntValue() == 0)
1439         return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0,
1440                            DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1441                                        N1.getOperand(0).getOperand(1),
1442                                        N1.getOperand(1)));
1443   if (N0.getOpcode() == ISD::SHL &&
1444       N0.getOperand(0).getOpcode() == ISD::SUB)
1445     if (ConstantSDNode *C =
1446           dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1447       if (C->getAPIntValue() == 0)
1448         return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1,
1449                            DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1450                                        N0.getOperand(0).getOperand(1),
1451                                        N0.getOperand(1)));
1452
1453   if (N1.getOpcode() == ISD::AND) {
1454     SDValue AndOp0 = N1.getOperand(0);
1455     ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
1456     unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1457     unsigned DestBits = VT.getScalarType().getSizeInBits();
1458
1459     // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1460     // and similar xforms where the inner op is either ~0 or 0.
1461     if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
1462       DebugLoc DL = N->getDebugLoc();
1463       return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1464     }
1465   }
1466
1467   // add (sext i1), X -> sub X, (zext i1)
1468   if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1469       N0.getOperand(0).getValueType() == MVT::i1 &&
1470       !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
1471     DebugLoc DL = N->getDebugLoc();
1472     SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1473     return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1474   }
1475
1476   return SDValue();
1477 }
1478
1479 SDValue DAGCombiner::visitADDC(SDNode *N) {
1480   SDValue N0 = N->getOperand(0);
1481   SDValue N1 = N->getOperand(1);
1482   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1483   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1484   EVT VT = N0.getValueType();
1485
1486   // If the flag result is dead, turn this into an ADD.
1487   if (N->hasNUsesOfValue(0, 1))
1488     return CombineTo(N, DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0),
1489                      DAG.getNode(ISD::CARRY_FALSE,
1490                                  N->getDebugLoc(), MVT::Glue));
1491
1492   // canonicalize constant to RHS.
1493   if (N0C && !N1C)
1494     return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0);
1495
1496   // fold (addc x, 0) -> x + no carry out
1497   if (N1C && N1C->isNullValue())
1498     return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
1499                                         N->getDebugLoc(), MVT::Glue));
1500
1501   // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
1502   APInt LHSZero, LHSOne;
1503   APInt RHSZero, RHSOne;
1504   APInt Mask = APInt::getAllOnesValue(VT.getScalarType().getSizeInBits());
1505   DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
1506
1507   if (LHSZero.getBoolValue()) {
1508     DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
1509
1510     // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1511     // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1512     if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
1513         (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
1514       return CombineTo(N, DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1),
1515                        DAG.getNode(ISD::CARRY_FALSE,
1516                                    N->getDebugLoc(), MVT::Glue));
1517   }
1518
1519   return SDValue();
1520 }
1521
1522 SDValue DAGCombiner::visitADDE(SDNode *N) {
1523   SDValue N0 = N->getOperand(0);
1524   SDValue N1 = N->getOperand(1);
1525   SDValue CarryIn = N->getOperand(2);
1526   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1527   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1528
1529   // If both operands are null we know that carry out will always be false.
1530   if (N0C && N0C->isNullValue() && N0 == N1)
1531     DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), DAG.getNode(ISD::CARRY_FALSE,
1532                                                              N->getDebugLoc(),
1533                                                              MVT::Glue));
1534
1535   // canonicalize constant to RHS
1536   if (N0C && !N1C)
1537     return DAG.getNode(ISD::ADDE, N->getDebugLoc(), N->getVTList(),
1538                        N1, N0, CarryIn);
1539
1540   // fold (adde x, y, false) -> (addc x, y)
1541   if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
1542     return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0);
1543
1544   return SDValue();
1545 }
1546
1547 // Since it may not be valid to emit a fold to zero for vector initializers
1548 // check if we can before folding.
1549 static SDValue tryFoldToZero(DebugLoc DL, const TargetLowering &TLI, EVT VT,
1550                              SelectionDAG &DAG, bool LegalOperations) {
1551   if (!VT.isVector()) {
1552     return DAG.getConstant(0, VT);
1553   }
1554   if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
1555     // Produce a vector of zeros.
1556     SDValue El = DAG.getConstant(0, VT.getVectorElementType());
1557     std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1558     return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1559       &Ops[0], Ops.size());
1560   }
1561   return SDValue();
1562 }
1563
1564 SDValue DAGCombiner::visitSUB(SDNode *N) {
1565   SDValue N0 = N->getOperand(0);
1566   SDValue N1 = N->getOperand(1);
1567   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1568   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
1569   EVT VT = N0.getValueType();
1570
1571   // fold vector ops
1572   if (VT.isVector()) {
1573     SDValue FoldedVOp = SimplifyVBinOp(N);
1574     if (FoldedVOp.getNode()) return FoldedVOp;
1575   }
1576
1577   // fold (sub x, x) -> 0
1578   // FIXME: Refactor this and xor and other similar operations together.
1579   if (N0 == N1)
1580     return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
1581   // fold (sub c1, c2) -> c1-c2
1582   if (N0C && N1C)
1583     return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
1584   // fold (sub x, c) -> (add x, -c)
1585   if (N1C)
1586     return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0,
1587                        DAG.getConstant(-N1C->getAPIntValue(), VT));
1588   // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1589   if (N0C && N0C->isAllOnesValue())
1590     return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
1591   // fold A-(A-B) -> B
1592   if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1593     return N1.getOperand(1);
1594   // fold (A+B)-A -> B
1595   if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
1596     return N0.getOperand(1);
1597   // fold (A+B)-B -> A
1598   if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
1599     return N0.getOperand(0);
1600   // fold ((A+(B+or-C))-B) -> A+or-C
1601   if (N0.getOpcode() == ISD::ADD &&
1602       (N0.getOperand(1).getOpcode() == ISD::SUB ||
1603        N0.getOperand(1).getOpcode() == ISD::ADD) &&
1604       N0.getOperand(1).getOperand(0) == N1)
1605     return DAG.getNode(N0.getOperand(1).getOpcode(), N->getDebugLoc(), VT,
1606                        N0.getOperand(0), N0.getOperand(1).getOperand(1));
1607   // fold ((A+(C+B))-B) -> A+C
1608   if (N0.getOpcode() == ISD::ADD &&
1609       N0.getOperand(1).getOpcode() == ISD::ADD &&
1610       N0.getOperand(1).getOperand(1) == N1)
1611     return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1612                        N0.getOperand(0), N0.getOperand(1).getOperand(0));
1613   // fold ((A-(B-C))-C) -> A-B
1614   if (N0.getOpcode() == ISD::SUB &&
1615       N0.getOperand(1).getOpcode() == ISD::SUB &&
1616       N0.getOperand(1).getOperand(1) == N1)
1617     return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1618                        N0.getOperand(0), N0.getOperand(1).getOperand(0));
1619
1620   // If either operand of a sub is undef, the result is undef
1621   if (N0.getOpcode() == ISD::UNDEF)
1622     return N0;
1623   if (N1.getOpcode() == ISD::UNDEF)
1624     return N1;
1625
1626   // If the relocation model supports it, consider symbol offsets.
1627   if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
1628     if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
1629       // fold (sub Sym, c) -> Sym-c
1630       if (N1C && GA->getOpcode() == ISD::GlobalAddress)
1631         return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
1632                                     GA->getOffset() -
1633                                       (uint64_t)N1C->getSExtValue());
1634       // fold (sub Sym+c1, Sym+c2) -> c1-c2
1635       if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1636         if (GA->getGlobal() == GB->getGlobal())
1637           return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1638                                  VT);
1639     }
1640
1641   return SDValue();
1642 }
1643
1644 SDValue DAGCombiner::visitMUL(SDNode *N) {
1645   SDValue N0 = N->getOperand(0);
1646   SDValue N1 = N->getOperand(1);
1647   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1648   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1649   EVT VT = N0.getValueType();
1650
1651   // fold vector ops
1652   if (VT.isVector()) {
1653     SDValue FoldedVOp = SimplifyVBinOp(N);
1654     if (FoldedVOp.getNode()) return FoldedVOp;
1655   }
1656
1657   // fold (mul x, undef) -> 0
1658   if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
1659     return DAG.getConstant(0, VT);
1660   // fold (mul c1, c2) -> c1*c2
1661   if (N0C && N1C)
1662     return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0C, N1C);
1663   // canonicalize constant to RHS
1664   if (N0C && !N1C)
1665     return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, N1, N0);
1666   // fold (mul x, 0) -> 0
1667   if (N1C && N1C->isNullValue())
1668     return N1;
1669   // fold (mul x, -1) -> 0-x
1670   if (N1C && N1C->isAllOnesValue())
1671     return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1672                        DAG.getConstant(0, VT), N0);
1673   // fold (mul x, (1 << c)) -> x << c
1674   if (N1C && N1C->getAPIntValue().isPowerOf2())
1675     return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
1676                        DAG.getConstant(N1C->getAPIntValue().logBase2(),
1677                                        getShiftAmountTy(N0.getValueType())));
1678   // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
1679   if (N1C && (-N1C->getAPIntValue()).isPowerOf2()) {
1680     unsigned Log2Val = (-N1C->getAPIntValue()).logBase2();
1681     // FIXME: If the input is something that is easily negated (e.g. a
1682     // single-use add), we should put the negate there.
1683     return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1684                        DAG.getConstant(0, VT),
1685                        DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
1686                             DAG.getConstant(Log2Val,
1687                                       getShiftAmountTy(N0.getValueType()))));
1688   }
1689   // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
1690   if (N1C && N0.getOpcode() == ISD::SHL &&
1691       isa<ConstantSDNode>(N0.getOperand(1))) {
1692     SDValue C3 = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1693                              N1, N0.getOperand(1));
1694     AddToWorkList(C3.getNode());
1695     return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1696                        N0.getOperand(0), C3);
1697   }
1698
1699   // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1700   // use.
1701   {
1702     SDValue Sh(0,0), Y(0,0);
1703     // Check for both (mul (shl X, C), Y)  and  (mul Y, (shl X, C)).
1704     if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
1705         N0.getNode()->hasOneUse()) {
1706       Sh = N0; Y = N1;
1707     } else if (N1.getOpcode() == ISD::SHL &&
1708                isa<ConstantSDNode>(N1.getOperand(1)) &&
1709                N1.getNode()->hasOneUse()) {
1710       Sh = N1; Y = N0;
1711     }
1712
1713     if (Sh.getNode()) {
1714       SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1715                                 Sh.getOperand(0), Y);
1716       return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1717                          Mul, Sh.getOperand(1));
1718     }
1719   }
1720
1721   // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
1722   if (N1C && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
1723       isa<ConstantSDNode>(N0.getOperand(1)))
1724     return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1725                        DAG.getNode(ISD::MUL, N0.getDebugLoc(), VT,
1726                                    N0.getOperand(0), N1),
1727                        DAG.getNode(ISD::MUL, N1.getDebugLoc(), VT,
1728                                    N0.getOperand(1), N1));
1729
1730   // reassociate mul
1731   SDValue RMUL = ReassociateOps(ISD::MUL, N->getDebugLoc(), N0, N1);
1732   if (RMUL.getNode() != 0)
1733     return RMUL;
1734
1735   return SDValue();
1736 }
1737
1738 SDValue DAGCombiner::visitSDIV(SDNode *N) {
1739   SDValue N0 = N->getOperand(0);
1740   SDValue N1 = N->getOperand(1);
1741   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1742   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
1743   EVT VT = N->getValueType(0);
1744
1745   // fold vector ops
1746   if (VT.isVector()) {
1747     SDValue FoldedVOp = SimplifyVBinOp(N);
1748     if (FoldedVOp.getNode()) return FoldedVOp;
1749   }
1750
1751   // fold (sdiv c1, c2) -> c1/c2
1752   if (N0C && N1C && !N1C->isNullValue())
1753     return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
1754   // fold (sdiv X, 1) -> X
1755   if (N1C && N1C->getSExtValue() == 1LL)
1756     return N0;
1757   // fold (sdiv X, -1) -> 0-X
1758   if (N1C && N1C->isAllOnesValue())
1759     return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1760                        DAG.getConstant(0, VT), N0);
1761   // If we know the sign bits of both operands are zero, strength reduce to a
1762   // udiv instead.  Handles (X&15) /s 4 -> X&15 >> 2
1763   if (!VT.isVector()) {
1764     if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
1765       return DAG.getNode(ISD::UDIV, N->getDebugLoc(), N1.getValueType(),
1766                          N0, N1);
1767   }
1768   // fold (sdiv X, pow2) -> simple ops after legalize
1769   if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap() &&
1770       (isPowerOf2_64(N1C->getSExtValue()) ||
1771        isPowerOf2_64(-N1C->getSExtValue()))) {
1772     // If dividing by powers of two is cheap, then don't perform the following
1773     // fold.
1774     if (TLI.isPow2DivCheap())
1775       return SDValue();
1776
1777     int64_t pow2 = N1C->getSExtValue();
1778     int64_t abs2 = pow2 > 0 ? pow2 : -pow2;
1779     unsigned lg2 = Log2_64(abs2);
1780
1781     // Splat the sign bit into the register
1782     SDValue SGN = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
1783                               DAG.getConstant(VT.getSizeInBits()-1,
1784                                        getShiftAmountTy(N0.getValueType())));
1785     AddToWorkList(SGN.getNode());
1786
1787     // Add (N0 < 0) ? abs2 - 1 : 0;
1788     SDValue SRL = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, SGN,
1789                               DAG.getConstant(VT.getSizeInBits() - lg2,
1790                                        getShiftAmountTy(SGN.getValueType())));
1791     SDValue ADD = DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, SRL);
1792     AddToWorkList(SRL.getNode());
1793     AddToWorkList(ADD.getNode());    // Divide by pow2
1794     SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, ADD,
1795                   DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
1796
1797     // If we're dividing by a positive value, we're done.  Otherwise, we must
1798     // negate the result.
1799     if (pow2 > 0)
1800       return SRA;
1801
1802     AddToWorkList(SRA.getNode());
1803     return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1804                        DAG.getConstant(0, VT), SRA);
1805   }
1806
1807   // if integer divide is expensive and we satisfy the requirements, emit an
1808   // alternate sequence.
1809   if (N1C && (N1C->getSExtValue() < -1 || N1C->getSExtValue() > 1) &&
1810       !TLI.isIntDivCheap()) {
1811     SDValue Op = BuildSDIV(N);
1812     if (Op.getNode()) return Op;
1813   }
1814
1815   // undef / X -> 0
1816   if (N0.getOpcode() == ISD::UNDEF)
1817     return DAG.getConstant(0, VT);
1818   // X / undef -> undef
1819   if (N1.getOpcode() == ISD::UNDEF)
1820     return N1;
1821
1822   return SDValue();
1823 }
1824
1825 SDValue DAGCombiner::visitUDIV(SDNode *N) {
1826   SDValue N0 = N->getOperand(0);
1827   SDValue N1 = N->getOperand(1);
1828   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1829   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
1830   EVT VT = N->getValueType(0);
1831
1832   // fold vector ops
1833   if (VT.isVector()) {
1834     SDValue FoldedVOp = SimplifyVBinOp(N);
1835     if (FoldedVOp.getNode()) return FoldedVOp;
1836   }
1837
1838   // fold (udiv c1, c2) -> c1/c2
1839   if (N0C && N1C && !N1C->isNullValue())
1840     return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
1841   // fold (udiv x, (1 << c)) -> x >>u c
1842   if (N1C && N1C->getAPIntValue().isPowerOf2())
1843     return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
1844                        DAG.getConstant(N1C->getAPIntValue().logBase2(),
1845                                        getShiftAmountTy(N0.getValueType())));
1846   // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
1847   if (N1.getOpcode() == ISD::SHL) {
1848     if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
1849       if (SHC->getAPIntValue().isPowerOf2()) {
1850         EVT ADDVT = N1.getOperand(1).getValueType();
1851         SDValue Add = DAG.getNode(ISD::ADD, N->getDebugLoc(), ADDVT,
1852                                   N1.getOperand(1),
1853                                   DAG.getConstant(SHC->getAPIntValue()
1854                                                                   .logBase2(),
1855                                                   ADDVT));
1856         AddToWorkList(Add.getNode());
1857         return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, Add);
1858       }
1859     }
1860   }
1861   // fold (udiv x, c) -> alternate
1862   if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
1863     SDValue Op = BuildUDIV(N);
1864     if (Op.getNode()) return Op;
1865   }
1866
1867   // undef / X -> 0
1868   if (N0.getOpcode() == ISD::UNDEF)
1869     return DAG.getConstant(0, VT);
1870   // X / undef -> undef
1871   if (N1.getOpcode() == ISD::UNDEF)
1872     return N1;
1873
1874   return SDValue();
1875 }
1876
1877 SDValue DAGCombiner::visitSREM(SDNode *N) {
1878   SDValue N0 = N->getOperand(0);
1879   SDValue N1 = N->getOperand(1);
1880   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1881   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1882   EVT VT = N->getValueType(0);
1883
1884   // fold (srem c1, c2) -> c1%c2
1885   if (N0C && N1C && !N1C->isNullValue())
1886     return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
1887   // If we know the sign bits of both operands are zero, strength reduce to a
1888   // urem instead.  Handles (X & 0x0FFFFFFF) %s 16 -> X&15
1889   if (!VT.isVector()) {
1890     if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
1891       return DAG.getNode(ISD::UREM, N->getDebugLoc(), VT, N0, N1);
1892   }
1893
1894   // If X/C can be simplified by the division-by-constant logic, lower
1895   // X%C to the equivalent of X-X/C*C.
1896   if (N1C && !N1C->isNullValue()) {
1897     SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1);
1898     AddToWorkList(Div.getNode());
1899     SDValue OptimizedDiv = combine(Div.getNode());
1900     if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
1901       SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1902                                 OptimizedDiv, N1);
1903       SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
1904       AddToWorkList(Mul.getNode());
1905       return Sub;
1906     }
1907   }
1908
1909   // undef % X -> 0
1910   if (N0.getOpcode() == ISD::UNDEF)
1911     return DAG.getConstant(0, VT);
1912   // X % undef -> undef
1913   if (N1.getOpcode() == ISD::UNDEF)
1914     return N1;
1915
1916   return SDValue();
1917 }
1918
1919 SDValue DAGCombiner::visitUREM(SDNode *N) {
1920   SDValue N0 = N->getOperand(0);
1921   SDValue N1 = N->getOperand(1);
1922   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1923   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1924   EVT VT = N->getValueType(0);
1925
1926   // fold (urem c1, c2) -> c1%c2
1927   if (N0C && N1C && !N1C->isNullValue())
1928     return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
1929   // fold (urem x, pow2) -> (and x, pow2-1)
1930   if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
1931     return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0,
1932                        DAG.getConstant(N1C->getAPIntValue()-1,VT));
1933   // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
1934   if (N1.getOpcode() == ISD::SHL) {
1935     if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
1936       if (SHC->getAPIntValue().isPowerOf2()) {
1937         SDValue Add =
1938           DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1,
1939                  DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
1940                                  VT));
1941         AddToWorkList(Add.getNode());
1942         return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, Add);
1943       }
1944     }
1945   }
1946
1947   // If X/C can be simplified by the division-by-constant logic, lower
1948   // X%C to the equivalent of X-X/C*C.
1949   if (N1C && !N1C->isNullValue()) {
1950     SDValue Div = DAG.getNode(ISD::UDIV, N->getDebugLoc(), VT, N0, N1);
1951     AddToWorkList(Div.getNode());
1952     SDValue OptimizedDiv = combine(Div.getNode());
1953     if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
1954       SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1955                                 OptimizedDiv, N1);
1956       SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
1957       AddToWorkList(Mul.getNode());
1958       return Sub;
1959     }
1960   }
1961
1962   // undef % X -> 0
1963   if (N0.getOpcode() == ISD::UNDEF)
1964     return DAG.getConstant(0, VT);
1965   // X % undef -> undef
1966   if (N1.getOpcode() == ISD::UNDEF)
1967     return N1;
1968
1969   return SDValue();
1970 }
1971
1972 SDValue DAGCombiner::visitMULHS(SDNode *N) {
1973   SDValue N0 = N->getOperand(0);
1974   SDValue N1 = N->getOperand(1);
1975   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1976   EVT VT = N->getValueType(0);
1977   DebugLoc DL = N->getDebugLoc();
1978
1979   // fold (mulhs x, 0) -> 0
1980   if (N1C && N1C->isNullValue())
1981     return N1;
1982   // fold (mulhs x, 1) -> (sra x, size(x)-1)
1983   if (N1C && N1C->getAPIntValue() == 1)
1984     return DAG.getNode(ISD::SRA, N->getDebugLoc(), N0.getValueType(), N0,
1985                        DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
1986                                        getShiftAmountTy(N0.getValueType())));
1987   // fold (mulhs x, undef) -> 0
1988   if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
1989     return DAG.getConstant(0, VT);
1990
1991   // If the type twice as wide is legal, transform the mulhs to a wider multiply
1992   // plus a shift.
1993   if (VT.isSimple() && !VT.isVector()) {
1994     MVT Simple = VT.getSimpleVT();
1995     unsigned SimpleSize = Simple.getSizeInBits();
1996     EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
1997     if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
1998       N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
1999       N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2000       N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2001       N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
2002             DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
2003       return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2004     }
2005   }
2006
2007   return SDValue();
2008 }
2009
2010 SDValue DAGCombiner::visitMULHU(SDNode *N) {
2011   SDValue N0 = N->getOperand(0);
2012   SDValue N1 = N->getOperand(1);
2013   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2014   EVT VT = N->getValueType(0);
2015   DebugLoc DL = N->getDebugLoc();
2016
2017   // fold (mulhu x, 0) -> 0
2018   if (N1C && N1C->isNullValue())
2019     return N1;
2020   // fold (mulhu x, 1) -> 0
2021   if (N1C && N1C->getAPIntValue() == 1)
2022     return DAG.getConstant(0, N0.getValueType());
2023   // fold (mulhu x, undef) -> 0
2024   if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
2025     return DAG.getConstant(0, VT);
2026
2027   // If the type twice as wide is legal, transform the mulhu to a wider multiply
2028   // plus a shift.
2029   if (VT.isSimple() && !VT.isVector()) {
2030     MVT Simple = VT.getSimpleVT();
2031     unsigned SimpleSize = Simple.getSizeInBits();
2032     EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2033     if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2034       N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2035       N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2036       N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2037       N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
2038             DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
2039       return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2040     }
2041   }
2042
2043   return SDValue();
2044 }
2045
2046 /// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2047 /// compute two values. LoOp and HiOp give the opcodes for the two computations
2048 /// that are being performed. Return true if a simplification was made.
2049 ///
2050 SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
2051                                                 unsigned HiOp) {
2052   // If the high half is not needed, just compute the low half.
2053   bool HiExists = N->hasAnyUseOfValue(1);
2054   if (!HiExists &&
2055       (!LegalOperations ||
2056        TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
2057     SDValue Res = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2058                               N->op_begin(), N->getNumOperands());
2059     return CombineTo(N, Res, Res);
2060   }
2061
2062   // If the low half is not needed, just compute the high half.
2063   bool LoExists = N->hasAnyUseOfValue(0);
2064   if (!LoExists &&
2065       (!LegalOperations ||
2066        TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
2067     SDValue Res = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
2068                               N->op_begin(), N->getNumOperands());
2069     return CombineTo(N, Res, Res);
2070   }
2071
2072   // If both halves are used, return as it is.
2073   if (LoExists && HiExists)
2074     return SDValue();
2075
2076   // If the two computed results can be simplified separately, separate them.
2077   if (LoExists) {
2078     SDValue Lo = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2079                              N->op_begin(), N->getNumOperands());
2080     AddToWorkList(Lo.getNode());
2081     SDValue LoOpt = combine(Lo.getNode());
2082     if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
2083         (!LegalOperations ||
2084          TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
2085       return CombineTo(N, LoOpt, LoOpt);
2086   }
2087
2088   if (HiExists) {
2089     SDValue Hi = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
2090                              N->op_begin(), N->getNumOperands());
2091     AddToWorkList(Hi.getNode());
2092     SDValue HiOpt = combine(Hi.getNode());
2093     if (HiOpt.getNode() && HiOpt != Hi &&
2094         (!LegalOperations ||
2095          TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
2096       return CombineTo(N, HiOpt, HiOpt);
2097   }
2098
2099   return SDValue();
2100 }
2101
2102 SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2103   SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
2104   if (Res.getNode()) return Res;
2105
2106   EVT VT = N->getValueType(0);
2107   DebugLoc DL = N->getDebugLoc();
2108
2109   // If the type twice as wide is legal, transform the mulhu to a wider multiply
2110   // plus a shift.
2111   if (VT.isSimple() && !VT.isVector()) {
2112     MVT Simple = VT.getSimpleVT();
2113     unsigned SimpleSize = Simple.getSizeInBits();
2114     EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2115     if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2116       SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2117       SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2118       Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2119       // Compute the high part as N1.
2120       Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
2121             DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
2122       Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2123       // Compute the low part as N0.
2124       Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2125       return CombineTo(N, Lo, Hi);
2126     }
2127   }
2128
2129   return SDValue();
2130 }
2131
2132 SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2133   SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
2134   if (Res.getNode()) return Res;
2135
2136   EVT VT = N->getValueType(0);
2137   DebugLoc DL = N->getDebugLoc();
2138
2139   // If the type twice as wide is legal, transform the mulhu to a wider multiply
2140   // plus a shift.
2141   if (VT.isSimple() && !VT.isVector()) {
2142     MVT Simple = VT.getSimpleVT();
2143     unsigned SimpleSize = Simple.getSizeInBits();
2144     EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2145     if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2146       SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2147       SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2148       Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2149       // Compute the high part as N1.
2150       Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
2151             DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
2152       Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2153       // Compute the low part as N0.
2154       Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2155       return CombineTo(N, Lo, Hi);
2156     }
2157   }
2158
2159   return SDValue();
2160 }
2161
2162 SDValue DAGCombiner::visitSMULO(SDNode *N) {
2163   // (smulo x, 2) -> (saddo x, x)
2164   if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2165     if (C2->getAPIntValue() == 2)
2166       return DAG.getNode(ISD::SADDO, N->getDebugLoc(), N->getVTList(),
2167                          N->getOperand(0), N->getOperand(0));
2168
2169   return SDValue();
2170 }
2171
2172 SDValue DAGCombiner::visitUMULO(SDNode *N) {
2173   // (umulo x, 2) -> (uaddo x, x)
2174   if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2175     if (C2->getAPIntValue() == 2)
2176       return DAG.getNode(ISD::UADDO, N->getDebugLoc(), N->getVTList(),
2177                          N->getOperand(0), N->getOperand(0));
2178
2179   return SDValue();
2180 }
2181
2182 SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2183   SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
2184   if (Res.getNode()) return Res;
2185
2186   return SDValue();
2187 }
2188
2189 SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2190   SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
2191   if (Res.getNode()) return Res;
2192
2193   return SDValue();
2194 }
2195
2196 /// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2197 /// two operands of the same opcode, try to simplify it.
2198 SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2199   SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
2200   EVT VT = N0.getValueType();
2201   assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
2202
2203   // Bail early if none of these transforms apply.
2204   if (N0.getNode()->getNumOperands() == 0) return SDValue();
2205
2206   // For each of OP in AND/OR/XOR:
2207   // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2208   // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2209   // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
2210   // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
2211   //
2212   // do not sink logical op inside of a vector extend, since it may combine
2213   // into a vsetcc.
2214   EVT Op0VT = N0.getOperand(0).getValueType();
2215   if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
2216        N0.getOpcode() == ISD::SIGN_EXTEND ||
2217        // Avoid infinite looping with PromoteIntBinOp.
2218        (N0.getOpcode() == ISD::ANY_EXTEND &&
2219         (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
2220        (N0.getOpcode() == ISD::TRUNCATE &&
2221         (!TLI.isZExtFree(VT, Op0VT) ||
2222          !TLI.isTruncateFree(Op0VT, VT)) &&
2223         TLI.isTypeLegal(Op0VT))) &&
2224       !VT.isVector() &&
2225       Op0VT == N1.getOperand(0).getValueType() &&
2226       (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
2227     SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2228                                  N0.getOperand(0).getValueType(),
2229                                  N0.getOperand(0), N1.getOperand(0));
2230     AddToWorkList(ORNode.getNode());
2231     return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, ORNode);
2232   }
2233
2234   // For each of OP in SHL/SRL/SRA/AND...
2235   //   fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2236   //   fold (or  (OP x, z), (OP y, z)) -> (OP (or  x, y), z)
2237   //   fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
2238   if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
2239        N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
2240       N0.getOperand(1) == N1.getOperand(1)) {
2241     SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2242                                  N0.getOperand(0).getValueType(),
2243                                  N0.getOperand(0), N1.getOperand(0));
2244     AddToWorkList(ORNode.getNode());
2245     return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
2246                        ORNode, N0.getOperand(1));
2247   }
2248
2249   return SDValue();
2250 }
2251
2252 SDValue DAGCombiner::visitAND(SDNode *N) {
2253   SDValue N0 = N->getOperand(0);
2254   SDValue N1 = N->getOperand(1);
2255   SDValue LL, LR, RL, RR, CC0, CC1;
2256   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2257   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2258   EVT VT = N1.getValueType();
2259   unsigned BitWidth = VT.getScalarType().getSizeInBits();
2260
2261   // fold vector ops
2262   if (VT.isVector()) {
2263     SDValue FoldedVOp = SimplifyVBinOp(N);
2264     if (FoldedVOp.getNode()) return FoldedVOp;
2265   }
2266
2267   // fold (and x, undef) -> 0
2268   if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
2269     return DAG.getConstant(0, VT);
2270   // fold (and c1, c2) -> c1&c2
2271   if (N0C && N1C)
2272     return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
2273   // canonicalize constant to RHS
2274   if (N0C && !N1C)
2275     return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N1, N0);
2276   // fold (and x, -1) -> x
2277   if (N1C && N1C->isAllOnesValue())
2278     return N0;
2279   // if (and x, c) is known to be zero, return 0
2280   if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
2281                                    APInt::getAllOnesValue(BitWidth)))
2282     return DAG.getConstant(0, VT);
2283   // reassociate and
2284   SDValue RAND = ReassociateOps(ISD::AND, N->getDebugLoc(), N0, N1);
2285   if (RAND.getNode() != 0)
2286     return RAND;
2287   // fold (and (or x, C), D) -> D if (C & D) == D
2288   if (N1C && N0.getOpcode() == ISD::OR)
2289     if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
2290       if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
2291         return N1;
2292   // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2293   if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
2294     SDValue N0Op0 = N0.getOperand(0);
2295     APInt Mask = ~N1C->getAPIntValue();
2296     Mask = Mask.trunc(N0Op0.getValueSizeInBits());
2297     if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
2298       SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(),
2299                                  N0.getValueType(), N0Op0);
2300
2301       // Replace uses of the AND with uses of the Zero extend node.
2302       CombineTo(N, Zext);
2303
2304       // We actually want to replace all uses of the any_extend with the
2305       // zero_extend, to avoid duplicating things.  This will later cause this
2306       // AND to be folded.
2307       CombineTo(N0.getNode(), Zext);
2308       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
2309     }
2310   }
2311   // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2312   if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2313     ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2314     ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
2315
2316     if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
2317         LL.getValueType().isInteger()) {
2318       // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
2319       if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
2320         SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2321                                      LR.getValueType(), LL, RL);
2322         AddToWorkList(ORNode.getNode());
2323         return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
2324       }
2325       // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
2326       if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
2327         SDValue ANDNode = DAG.getNode(ISD::AND, N0.getDebugLoc(),
2328                                       LR.getValueType(), LL, RL);
2329         AddToWorkList(ANDNode.getNode());
2330         return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
2331       }
2332       // fold (and (setgt X,  -1), (setgt Y,  -1)) -> (setgt (or X, Y), -1)
2333       if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
2334         SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2335                                      LR.getValueType(), LL, RL);
2336         AddToWorkList(ORNode.getNode());
2337         return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
2338       }
2339     }
2340     // canonicalize equivalent to ll == rl
2341     if (LL == RR && LR == RL) {
2342       Op1 = ISD::getSetCCSwappedOperands(Op1);
2343       std::swap(RL, RR);
2344     }
2345     if (LL == RL && LR == RR) {
2346       bool isInteger = LL.getValueType().isInteger();
2347       ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
2348       if (Result != ISD::SETCC_INVALID &&
2349           (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
2350         return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2351                             LL, LR, Result);
2352     }
2353   }
2354
2355   // Simplify: (and (op x...), (op y...))  -> (op (and x, y))
2356   if (N0.getOpcode() == N1.getOpcode()) {
2357     SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
2358     if (Tmp.getNode()) return Tmp;
2359   }
2360
2361   // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2362   // fold (and (sra)) -> (and (srl)) when possible.
2363   if (!VT.isVector() &&
2364       SimplifyDemandedBits(SDValue(N, 0)))
2365     return SDValue(N, 0);
2366
2367   // fold (zext_inreg (extload x)) -> (zextload x)
2368   if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
2369     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2370     EVT MemVT = LN0->getMemoryVT();
2371     // If we zero all the possible extended bits, then we can turn this into
2372     // a zextload if we are running before legalize or the operation is legal.
2373     unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
2374     if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
2375                            BitWidth - MemVT.getScalarType().getSizeInBits())) &&
2376         ((!LegalOperations && !LN0->isVolatile()) ||
2377          TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
2378       SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
2379                                        LN0->getChain(), LN0->getBasePtr(),
2380                                        LN0->getPointerInfo(), MemVT,
2381                                        LN0->isVolatile(), LN0->isNonTemporal(),
2382                                        LN0->getAlignment());
2383       AddToWorkList(N);
2384       CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
2385       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
2386     }
2387   }
2388   // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
2389   if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
2390       N0.hasOneUse()) {
2391     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2392     EVT MemVT = LN0->getMemoryVT();
2393     // If we zero all the possible extended bits, then we can turn this into
2394     // a zextload if we are running before legalize or the operation is legal.
2395     unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
2396     if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
2397                            BitWidth - MemVT.getScalarType().getSizeInBits())) &&
2398         ((!LegalOperations && !LN0->isVolatile()) ||
2399          TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
2400       SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
2401                                        LN0->getChain(),
2402                                        LN0->getBasePtr(), LN0->getPointerInfo(),
2403                                        MemVT,
2404                                        LN0->isVolatile(), LN0->isNonTemporal(),
2405                                        LN0->getAlignment());
2406       AddToWorkList(N);
2407       CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
2408       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
2409     }
2410   }
2411
2412   // fold (and (load x), 255) -> (zextload x, i8)
2413   // fold (and (extload x, i16), 255) -> (zextload x, i8)
2414   // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2415   if (N1C && (N0.getOpcode() == ISD::LOAD ||
2416               (N0.getOpcode() == ISD::ANY_EXTEND &&
2417                N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2418     bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2419     LoadSDNode *LN0 = HasAnyExt
2420       ? cast<LoadSDNode>(N0.getOperand(0))
2421       : cast<LoadSDNode>(N0);
2422     if (LN0->getExtensionType() != ISD::SEXTLOAD &&
2423         LN0->isUnindexed() && N0.hasOneUse() && LN0->hasOneUse()) {
2424       uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
2425       if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2426         EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2427         EVT LoadedVT = LN0->getMemoryVT();
2428
2429         if (ExtVT == LoadedVT &&
2430             (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2431           EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2432
2433           SDValue NewLoad =
2434             DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
2435                            LN0->getChain(), LN0->getBasePtr(),
2436                            LN0->getPointerInfo(),
2437                            ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2438                            LN0->getAlignment());
2439           AddToWorkList(N);
2440           CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2441           return SDValue(N, 0);   // Return N so it doesn't get rechecked!
2442         }
2443
2444         // Do not change the width of a volatile load.
2445         // Do not generate loads of non-round integer types since these can
2446         // be expensive (and would be wrong if the type is not byte sized).
2447         if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2448             (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2449           EVT PtrType = LN0->getOperand(1).getValueType();
2450
2451           unsigned Alignment = LN0->getAlignment();
2452           SDValue NewPtr = LN0->getBasePtr();
2453
2454           // For big endian targets, we need to add an offset to the pointer
2455           // to load the correct bytes.  For little endian systems, we merely
2456           // need to read fewer bytes from the same pointer.
2457           if (TLI.isBigEndian()) {
2458             unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2459             unsigned EVTStoreBytes = ExtVT.getStoreSize();
2460             unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
2461             NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), PtrType,
2462                                  NewPtr, DAG.getConstant(PtrOff, PtrType));
2463             Alignment = MinAlign(Alignment, PtrOff);
2464           }
2465
2466           AddToWorkList(NewPtr.getNode());
2467
2468           EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2469           SDValue Load =
2470             DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
2471                            LN0->getChain(), NewPtr,
2472                            LN0->getPointerInfo(),
2473                            ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2474                            Alignment);
2475           AddToWorkList(N);
2476           CombineTo(LN0, Load, Load.getValue(1));
2477           return SDValue(N, 0);   // Return N so it doesn't get rechecked!
2478         }
2479       }
2480     }
2481   }
2482
2483   return SDValue();
2484 }
2485
2486 /// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2487 ///
2488 SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2489                                         bool DemandHighBits) {
2490   if (!LegalOperations)
2491     return SDValue();
2492
2493   EVT VT = N->getValueType(0);
2494   if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2495     return SDValue();
2496   if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2497     return SDValue();
2498
2499   // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2500   bool LookPassAnd0 = false;
2501   bool LookPassAnd1 = false;
2502   if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2503       std::swap(N0, N1);
2504   if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2505       std::swap(N0, N1);
2506   if (N0.getOpcode() == ISD::AND) {
2507     if (!N0.getNode()->hasOneUse())
2508       return SDValue();
2509     ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2510     if (!N01C || N01C->getZExtValue() != 0xFF00)
2511       return SDValue();
2512     N0 = N0.getOperand(0);
2513     LookPassAnd0 = true;
2514   }
2515
2516   if (N1.getOpcode() == ISD::AND) {
2517     if (!N1.getNode()->hasOneUse())
2518       return SDValue();
2519     ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2520     if (!N11C || N11C->getZExtValue() != 0xFF)
2521       return SDValue();
2522     N1 = N1.getOperand(0);
2523     LookPassAnd1 = true;
2524   }
2525
2526   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2527     std::swap(N0, N1);
2528   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2529     return SDValue();
2530   if (!N0.getNode()->hasOneUse() ||
2531       !N1.getNode()->hasOneUse())
2532     return SDValue();
2533
2534   ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2535   ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2536   if (!N01C || !N11C)
2537     return SDValue();
2538   if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2539     return SDValue();
2540
2541   // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2542   SDValue N00 = N0->getOperand(0);
2543   if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2544     if (!N00.getNode()->hasOneUse())
2545       return SDValue();
2546     ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2547     if (!N001C || N001C->getZExtValue() != 0xFF)
2548       return SDValue();
2549     N00 = N00.getOperand(0);
2550     LookPassAnd0 = true;
2551   }
2552
2553   SDValue N10 = N1->getOperand(0);
2554   if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2555     if (!N10.getNode()->hasOneUse())
2556       return SDValue();
2557     ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2558     if (!N101C || N101C->getZExtValue() != 0xFF00)
2559       return SDValue();
2560     N10 = N10.getOperand(0);
2561     LookPassAnd1 = true;
2562   }
2563
2564   if (N00 != N10)
2565     return SDValue();
2566
2567   // Make sure everything beyond the low halfword is zero since the SRL 16
2568   // will clear the top bits.
2569   unsigned OpSizeInBits = VT.getSizeInBits();
2570   if (DemandHighBits && OpSizeInBits > 16 &&
2571       (!LookPassAnd0 || !LookPassAnd1) &&
2572       !DAG.MaskedValueIsZero(N10, APInt::getHighBitsSet(OpSizeInBits, 16)))
2573     return SDValue();
2574   
2575   SDValue Res = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, N00);
2576   if (OpSizeInBits > 16)
2577     Res = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Res,
2578                       DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2579   return Res;
2580 }
2581
2582 /// isBSwapHWordElement - Return true if the specified node is an element
2583 /// that makes up a 32-bit packed halfword byteswap. i.e.
2584 /// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2585 static bool isBSwapHWordElement(SDValue N, SmallVector<SDNode*,4> &Parts) {
2586   if (!N.getNode()->hasOneUse())
2587     return false;
2588
2589   unsigned Opc = N.getOpcode();
2590   if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2591     return false;
2592
2593   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2594   if (!N1C)
2595     return false;
2596
2597   unsigned Num;
2598   switch (N1C->getZExtValue()) {
2599   default:
2600     return false;
2601   case 0xFF:       Num = 0; break;
2602   case 0xFF00:     Num = 1; break;
2603   case 0xFF0000:   Num = 2; break;
2604   case 0xFF000000: Num = 3; break;
2605   }
2606
2607   // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
2608   SDValue N0 = N.getOperand(0);
2609   if (Opc == ISD::AND) {
2610     if (Num == 0 || Num == 2) {
2611       // (x >> 8) & 0xff
2612       // (x >> 8) & 0xff0000
2613       if (N0.getOpcode() != ISD::SRL)
2614         return false;
2615       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2616       if (!C || C->getZExtValue() != 8)
2617         return false;
2618     } else {
2619       // (x << 8) & 0xff00
2620       // (x << 8) & 0xff000000
2621       if (N0.getOpcode() != ISD::SHL)
2622         return false;
2623       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2624       if (!C || C->getZExtValue() != 8)
2625         return false;
2626     }
2627   } else if (Opc == ISD::SHL) {
2628     // (x & 0xff) << 8
2629     // (x & 0xff0000) << 8
2630     if (Num != 0 && Num != 2)
2631       return false;
2632     ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2633     if (!C || C->getZExtValue() != 8)
2634       return false;
2635   } else { // Opc == ISD::SRL
2636     // (x & 0xff00) >> 8
2637     // (x & 0xff000000) >> 8
2638     if (Num != 1 && Num != 3)
2639       return false;
2640     ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2641     if (!C || C->getZExtValue() != 8)
2642       return false;
2643   }
2644
2645   if (Parts[Num])
2646     return false;
2647
2648   Parts[Num] = N0.getOperand(0).getNode();
2649   return true;
2650 }
2651
2652 /// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
2653 /// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2654 /// => (rotl (bswap x), 16)
2655 SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
2656   if (!LegalOperations)
2657     return SDValue();
2658
2659   EVT VT = N->getValueType(0);
2660   if (VT != MVT::i32)
2661     return SDValue();
2662   if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2663     return SDValue();
2664
2665   SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
2666   // Look for either
2667   // (or (or (and), (and)), (or (and), (and)))
2668   // (or (or (or (and), (and)), (and)), (and))
2669   if (N0.getOpcode() != ISD::OR)
2670     return SDValue();
2671   SDValue N00 = N0.getOperand(0);
2672   SDValue N01 = N0.getOperand(1);
2673
2674   if (N1.getOpcode() == ISD::OR) {
2675     // (or (or (and), (and)), (or (and), (and)))
2676     SDValue N000 = N00.getOperand(0);
2677     if (!isBSwapHWordElement(N000, Parts))
2678       return SDValue();
2679
2680     SDValue N001 = N00.getOperand(1);
2681     if (!isBSwapHWordElement(N001, Parts))
2682       return SDValue();
2683     SDValue N010 = N01.getOperand(0);
2684     if (!isBSwapHWordElement(N010, Parts))
2685       return SDValue();
2686     SDValue N011 = N01.getOperand(1);
2687     if (!isBSwapHWordElement(N011, Parts))
2688       return SDValue();
2689   } else {
2690     // (or (or (or (and), (and)), (and)), (and))
2691     if (!isBSwapHWordElement(N1, Parts))
2692       return SDValue();
2693     if (!isBSwapHWordElement(N01, Parts))
2694       return SDValue();
2695     if (N00.getOpcode() != ISD::OR)
2696       return SDValue();
2697     SDValue N000 = N00.getOperand(0);
2698     if (!isBSwapHWordElement(N000, Parts))
2699       return SDValue();
2700     SDValue N001 = N00.getOperand(1);
2701     if (!isBSwapHWordElement(N001, Parts))
2702       return SDValue();
2703   }
2704
2705   // Make sure the parts are all coming from the same node.
2706   if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
2707     return SDValue();
2708
2709   SDValue BSwap = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT,
2710                               SDValue(Parts[0],0));
2711
2712   // Result of the bswap should be rotated by 16. If it's not legal, than
2713   // do  (x << 16) | (x >> 16).
2714   SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
2715   if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
2716     return DAG.getNode(ISD::ROTL, N->getDebugLoc(), VT, BSwap, ShAmt);
2717   else if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
2718     return DAG.getNode(ISD::ROTR, N->getDebugLoc(), VT, BSwap, ShAmt);
2719   return DAG.getNode(ISD::OR, N->getDebugLoc(), VT,
2720                      DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, BSwap, ShAmt),
2721                      DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, BSwap, ShAmt));
2722 }
2723
2724 SDValue DAGCombiner::visitOR(SDNode *N) {
2725   SDValue N0 = N->getOperand(0);
2726   SDValue N1 = N->getOperand(1);
2727   SDValue LL, LR, RL, RR, CC0, CC1;
2728   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2729   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2730   EVT VT = N1.getValueType();
2731
2732   // fold vector ops
2733   if (VT.isVector()) {
2734     SDValue FoldedVOp = SimplifyVBinOp(N);
2735     if (FoldedVOp.getNode()) return FoldedVOp;
2736   }
2737
2738   // fold (or x, undef) -> -1
2739   if (!LegalOperations &&
2740       (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
2741     EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
2742     return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
2743   }
2744   // fold (or c1, c2) -> c1|c2
2745   if (N0C && N1C)
2746     return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
2747   // canonicalize constant to RHS
2748   if (N0C && !N1C)
2749     return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N1, N0);
2750   // fold (or x, 0) -> x
2751   if (N1C && N1C->isNullValue())
2752     return N0;
2753   // fold (or x, -1) -> -1
2754   if (N1C && N1C->isAllOnesValue())
2755     return N1;
2756   // fold (or x, c) -> c iff (x & ~c) == 0
2757   if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
2758     return N1;
2759
2760   // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
2761   SDValue BSwap = MatchBSwapHWord(N, N0, N1);
2762   if (BSwap.getNode() != 0)
2763     return BSwap;
2764   BSwap = MatchBSwapHWordLow(N, N0, N1);
2765   if (BSwap.getNode() != 0)
2766     return BSwap;
2767
2768   // reassociate or
2769   SDValue ROR = ReassociateOps(ISD::OR, N->getDebugLoc(), N0, N1);
2770   if (ROR.getNode() != 0)
2771     return ROR;
2772   // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
2773   // iff (c1 & c2) == 0.
2774   if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
2775              isa<ConstantSDNode>(N0.getOperand(1))) {
2776     ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
2777     if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
2778       return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
2779                          DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
2780                                      N0.getOperand(0), N1),
2781                          DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
2782   }
2783   // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
2784   if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2785     ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2786     ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
2787
2788     if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
2789         LL.getValueType().isInteger()) {
2790       // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
2791       // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
2792       if (cast<ConstantSDNode>(LR)->isNullValue() &&
2793           (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
2794         SDValue ORNode = DAG.getNode(ISD::OR, LR.getDebugLoc(),
2795                                      LR.getValueType(), LL, RL);
2796         AddToWorkList(ORNode.getNode());
2797         return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
2798       }
2799       // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
2800       // fold (or (setgt X, -1), (setgt Y  -1)) -> (setgt (and X, Y), -1)
2801       if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
2802           (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
2803         SDValue ANDNode = DAG.getNode(ISD::AND, LR.getDebugLoc(),
2804                                       LR.getValueType(), LL, RL);
2805         AddToWorkList(ANDNode.getNode());
2806         return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
2807       }
2808     }
2809     // canonicalize equivalent to ll == rl
2810     if (LL == RR && LR == RL) {
2811       Op1 = ISD::getSetCCSwappedOperands(Op1);
2812       std::swap(RL, RR);
2813     }
2814     if (LL == RL && LR == RR) {
2815       bool isInteger = LL.getValueType().isInteger();
2816       ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
2817       if (Result != ISD::SETCC_INVALID &&
2818           (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
2819         return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2820                             LL, LR, Result);
2821     }
2822   }
2823
2824   // Simplify: (or (op x...), (op y...))  -> (op (or x, y))
2825   if (N0.getOpcode() == N1.getOpcode()) {
2826     SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
2827     if (Tmp.getNode()) return Tmp;
2828   }
2829
2830   // (or (and X, C1), (and Y, C2))  -> (and (or X, Y), C3) if possible.
2831   if (N0.getOpcode() == ISD::AND &&
2832       N1.getOpcode() == ISD::AND &&
2833       N0.getOperand(1).getOpcode() == ISD::Constant &&
2834       N1.getOperand(1).getOpcode() == ISD::Constant &&
2835       // Don't increase # computations.
2836       (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
2837     // We can only do this xform if we know that bits from X that are set in C2
2838     // but not in C1 are already zero.  Likewise for Y.
2839     const APInt &LHSMask =
2840       cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
2841     const APInt &RHSMask =
2842       cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
2843
2844     if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
2845         DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
2846       SDValue X = DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
2847                               N0.getOperand(0), N1.getOperand(0));
2848       return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, X,
2849                          DAG.getConstant(LHSMask | RHSMask, VT));
2850     }
2851   }
2852
2853   // See if this is some rotate idiom.
2854   if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc()))
2855     return SDValue(Rot, 0);
2856
2857   // Simplify the operands using demanded-bits information.
2858   if (!VT.isVector() &&
2859       SimplifyDemandedBits(SDValue(N, 0)))
2860     return SDValue(N, 0);
2861
2862   return SDValue();
2863 }
2864
2865 /// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
2866 static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
2867   if (Op.getOpcode() == ISD::AND) {
2868     if (isa<ConstantSDNode>(Op.getOperand(1))) {
2869       Mask = Op.getOperand(1);
2870       Op = Op.getOperand(0);
2871     } else {
2872       return false;
2873     }
2874   }
2875
2876   if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
2877     Shift = Op;
2878     return true;
2879   }
2880
2881   return false;
2882 }
2883
2884 // MatchRotate - Handle an 'or' of two operands.  If this is one of the many
2885 // idioms for rotate, and if the target supports rotation instructions, generate
2886 // a rot[lr].
2887 SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL) {
2888   // Must be a legal type.  Expanded 'n promoted things won't work with rotates.
2889   EVT VT = LHS.getValueType();
2890   if (!TLI.isTypeLegal(VT)) return 0;
2891
2892   // The target must have at least one rotate flavor.
2893   bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
2894   bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
2895   if (!HasROTL && !HasROTR) return 0;
2896
2897   // Match "(X shl/srl V1) & V2" where V2 may not be present.
2898   SDValue LHSShift;   // The shift.
2899   SDValue LHSMask;    // AND value if any.
2900   if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
2901     return 0; // Not part of a rotate.
2902
2903   SDValue RHSShift;   // The shift.
2904   SDValue RHSMask;    // AND value if any.
2905   if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
2906     return 0; // Not part of a rotate.
2907
2908   if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
2909     return 0;   // Not shifting the same value.
2910
2911   if (LHSShift.getOpcode() == RHSShift.getOpcode())
2912     return 0;   // Shifts must disagree.
2913
2914   // Canonicalize shl to left side in a shl/srl pair.
2915   if (RHSShift.getOpcode() == ISD::SHL) {
2916     std::swap(LHS, RHS);
2917     std::swap(LHSShift, RHSShift);
2918     std::swap(LHSMask , RHSMask );
2919   }
2920
2921   unsigned OpSizeInBits = VT.getSizeInBits();
2922   SDValue LHSShiftArg = LHSShift.getOperand(0);
2923   SDValue LHSShiftAmt = LHSShift.getOperand(1);
2924   SDValue RHSShiftAmt = RHSShift.getOperand(1);
2925
2926   // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
2927   // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
2928   if (LHSShiftAmt.getOpcode() == ISD::Constant &&
2929       RHSShiftAmt.getOpcode() == ISD::Constant) {
2930     uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
2931     uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
2932     if ((LShVal + RShVal) != OpSizeInBits)
2933       return 0;
2934
2935     SDValue Rot;
2936     if (HasROTL)
2937       Rot = DAG.getNode(ISD::ROTL, DL, VT, LHSShiftArg, LHSShiftAmt);
2938     else
2939       Rot = DAG.getNode(ISD::ROTR, DL, VT, LHSShiftArg, RHSShiftAmt);
2940
2941     // If there is an AND of either shifted operand, apply it to the result.
2942     if (LHSMask.getNode() || RHSMask.getNode()) {
2943       APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
2944
2945       if (LHSMask.getNode()) {
2946         APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
2947         Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
2948       }
2949       if (RHSMask.getNode()) {
2950         APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
2951         Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
2952       }
2953
2954       Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
2955     }
2956
2957     return Rot.getNode();
2958   }
2959
2960   // If there is a mask here, and we have a variable shift, we can't be sure
2961   // that we're masking out the right stuff.
2962   if (LHSMask.getNode() || RHSMask.getNode())
2963     return 0;
2964
2965   // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
2966   // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
2967   if (RHSShiftAmt.getOpcode() == ISD::SUB &&
2968       LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
2969     if (ConstantSDNode *SUBC =
2970           dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
2971       if (SUBC->getAPIntValue() == OpSizeInBits) {
2972         if (HasROTL)
2973           return DAG.getNode(ISD::ROTL, DL, VT,
2974                              LHSShiftArg, LHSShiftAmt).getNode();
2975         else
2976           return DAG.getNode(ISD::ROTR, DL, VT,
2977                              LHSShiftArg, RHSShiftAmt).getNode();
2978       }
2979     }
2980   }
2981
2982   // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
2983   // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
2984   if (LHSShiftAmt.getOpcode() == ISD::SUB &&
2985       RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
2986     if (ConstantSDNode *SUBC =
2987           dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
2988       if (SUBC->getAPIntValue() == OpSizeInBits) {
2989         if (HasROTR)
2990           return DAG.getNode(ISD::ROTR, DL, VT,
2991                              LHSShiftArg, RHSShiftAmt).getNode();
2992         else
2993           return DAG.getNode(ISD::ROTL, DL, VT,
2994                              LHSShiftArg, LHSShiftAmt).getNode();
2995       }
2996     }
2997   }
2998
2999   // Look for sign/zext/any-extended or truncate cases:
3000   if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3001        || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
3002        || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3003        || LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
3004       (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3005        || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
3006        || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3007        || RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
3008     SDValue LExtOp0 = LHSShiftAmt.getOperand(0);
3009     SDValue RExtOp0 = RHSShiftAmt.getOperand(0);
3010     if (RExtOp0.getOpcode() == ISD::SUB &&
3011         RExtOp0.getOperand(1) == LExtOp0) {
3012       // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
3013       //   (rotl x, y)
3014       // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
3015       //   (rotr x, (sub 32, y))
3016       if (ConstantSDNode *SUBC =
3017             dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
3018         if (SUBC->getAPIntValue() == OpSizeInBits) {
3019           return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3020                              LHSShiftArg,
3021                              HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
3022         }
3023       }
3024     } else if (LExtOp0.getOpcode() == ISD::SUB &&
3025                RExtOp0 == LExtOp0.getOperand(1)) {
3026       // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
3027       //   (rotr x, y)
3028       // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
3029       //   (rotl x, (sub 32, y))
3030       if (ConstantSDNode *SUBC =
3031             dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
3032         if (SUBC->getAPIntValue() == OpSizeInBits) {
3033           return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3034                              LHSShiftArg,
3035                              HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
3036         }
3037       }
3038     }
3039   }
3040
3041   return 0;
3042 }
3043
3044 SDValue DAGCombiner::visitXOR(SDNode *N) {
3045   SDValue N0 = N->getOperand(0);
3046   SDValue N1 = N->getOperand(1);
3047   SDValue LHS, RHS, CC;
3048   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3049   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3050   EVT VT = N0.getValueType();
3051
3052   // fold vector ops
3053   if (VT.isVector()) {
3054     SDValue FoldedVOp = SimplifyVBinOp(N);
3055     if (FoldedVOp.getNode()) return FoldedVOp;
3056   }
3057
3058   // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3059   if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3060     return DAG.getConstant(0, VT);
3061   // fold (xor x, undef) -> undef
3062   if (N0.getOpcode() == ISD::UNDEF)
3063     return N0;
3064   if (N1.getOpcode() == ISD::UNDEF)
3065     return N1;
3066   // fold (xor c1, c2) -> c1^c2
3067   if (N0C && N1C)
3068     return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
3069   // canonicalize constant to RHS
3070   if (N0C && !N1C)
3071     return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
3072   // fold (xor x, 0) -> x
3073   if (N1C && N1C->isNullValue())
3074     return N0;
3075   // reassociate xor
3076   SDValue RXOR = ReassociateOps(ISD::XOR, N->getDebugLoc(), N0, N1);
3077   if (RXOR.getNode() != 0)
3078     return RXOR;
3079
3080   // fold !(x cc y) -> (x !cc y)
3081   if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
3082     bool isInt = LHS.getValueType().isInteger();
3083     ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3084                                                isInt);
3085
3086     if (!LegalOperations || TLI.isCondCodeLegal(NotCC, LHS.getValueType())) {
3087       switch (N0.getOpcode()) {
3088       default:
3089         llvm_unreachable("Unhandled SetCC Equivalent!");
3090       case ISD::SETCC:
3091         return DAG.getSetCC(N->getDebugLoc(), VT, LHS, RHS, NotCC);
3092       case ISD::SELECT_CC:
3093         return DAG.getSelectCC(N->getDebugLoc(), LHS, RHS, N0.getOperand(2),
3094                                N0.getOperand(3), NotCC);
3095       }
3096     }
3097   }
3098
3099   // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
3100   if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
3101       N0.getNode()->hasOneUse() &&
3102       isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
3103     SDValue V = N0.getOperand(0);
3104     V = DAG.getNode(ISD::XOR, N0.getDebugLoc(), V.getValueType(), V,
3105                     DAG.getConstant(1, V.getValueType()));
3106     AddToWorkList(V.getNode());
3107     return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, V);
3108   }
3109
3110   // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
3111   if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
3112       (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
3113     SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
3114     if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3115       unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
3116       LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3117       RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
3118       AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
3119       return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
3120     }
3121   }
3122   // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
3123   if (N1C && N1C->isAllOnesValue() &&
3124       (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
3125     SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
3126     if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3127       unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
3128       LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3129       RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
3130       AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
3131       return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
3132     }
3133   }
3134   // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
3135   if (N1C && N0.getOpcode() == ISD::XOR) {
3136     ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3137     ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3138     if (N00C)
3139       return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(1),
3140                          DAG.getConstant(N1C->getAPIntValue() ^
3141                                          N00C->getAPIntValue(), VT));
3142     if (N01C)
3143       return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(0),
3144                          DAG.getConstant(N1C->getAPIntValue() ^
3145                                          N01C->getAPIntValue(), VT));
3146   }
3147   // fold (xor x, x) -> 0
3148   if (N0 == N1)
3149     return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
3150
3151   // Simplify: xor (op x...), (op y...)  -> (op (xor x, y))
3152   if (N0.getOpcode() == N1.getOpcode()) {
3153     SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
3154     if (Tmp.getNode()) return Tmp;
3155   }
3156
3157   // Simplify the expression using non-local knowledge.
3158   if (!VT.isVector() &&
3159       SimplifyDemandedBits(SDValue(N, 0)))
3160     return SDValue(N, 0);
3161
3162   return SDValue();
3163 }
3164
3165 /// visitShiftByConstant - Handle transforms common to the three shifts, when
3166 /// the shift amount is a constant.
3167 SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
3168   SDNode *LHS = N->getOperand(0).getNode();
3169   if (!LHS->hasOneUse()) return SDValue();
3170
3171   // We want to pull some binops through shifts, so that we have (and (shift))
3172   // instead of (shift (and)), likewise for add, or, xor, etc.  This sort of
3173   // thing happens with address calculations, so it's important to canonicalize
3174   // it.
3175   bool HighBitSet = false;  // Can we transform this if the high bit is set?
3176
3177   switch (LHS->getOpcode()) {
3178   default: return SDValue();
3179   case ISD::OR:
3180   case ISD::XOR:
3181     HighBitSet = false; // We can only transform sra if the high bit is clear.
3182     break;
3183   case ISD::AND:
3184     HighBitSet = true;  // We can only transform sra if the high bit is set.
3185     break;
3186   case ISD::ADD:
3187     if (N->getOpcode() != ISD::SHL)
3188       return SDValue(); // only shl(add) not sr[al](add).
3189     HighBitSet = false; // We can only transform sra if the high bit is clear.
3190     break;
3191   }
3192
3193   // We require the RHS of the binop to be a constant as well.
3194   ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
3195   if (!BinOpCst) return SDValue();
3196
3197   // FIXME: disable this unless the input to the binop is a shift by a constant.
3198   // If it is not a shift, it pessimizes some common cases like:
3199   //
3200   //    void foo(int *X, int i) { X[i & 1235] = 1; }
3201   //    int bar(int *X, int i) { return X[i & 255]; }
3202   SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
3203   if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
3204        BinOpLHSVal->getOpcode() != ISD::SRA &&
3205        BinOpLHSVal->getOpcode() != ISD::SRL) ||
3206       !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
3207     return SDValue();
3208
3209   EVT VT = N->getValueType(0);
3210
3211   // If this is a signed shift right, and the high bit is modified by the
3212   // logical operation, do not perform the transformation. The highBitSet
3213   // boolean indicates the value of the high bit of the constant which would
3214   // cause it to be modified for this operation.
3215   if (N->getOpcode() == ISD::SRA) {
3216     bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3217     if (BinOpRHSSignSet != HighBitSet)
3218       return SDValue();
3219   }
3220
3221   // Fold the constants, shifting the binop RHS by the shift amount.
3222   SDValue NewRHS = DAG.getNode(N->getOpcode(), LHS->getOperand(1).getDebugLoc(),
3223                                N->getValueType(0),
3224                                LHS->getOperand(1), N->getOperand(1));
3225
3226   // Create the new shift.
3227   SDValue NewShift = DAG.getNode(N->getOpcode(),
3228                                  LHS->getOperand(0).getDebugLoc(),
3229                                  VT, LHS->getOperand(0), N->getOperand(1));
3230
3231   // Create the new binop.
3232   return DAG.getNode(LHS->getOpcode(), N->getDebugLoc(), VT, NewShift, NewRHS);
3233 }
3234
3235 SDValue DAGCombiner::visitSHL(SDNode *N) {
3236   SDValue N0 = N->getOperand(0);
3237   SDValue N1 = N->getOperand(1);
3238   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3239   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3240   EVT VT = N0.getValueType();
3241   unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
3242
3243   // fold (shl c1, c2) -> c1<<c2
3244   if (N0C && N1C)
3245     return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
3246   // fold (shl 0, x) -> 0
3247   if (N0C && N0C->isNullValue())
3248     return N0;
3249   // fold (shl x, c >= size(x)) -> undef
3250   if (N1C && N1C->getZExtValue() >= OpSizeInBits)
3251     return DAG.getUNDEF(VT);
3252   // fold (shl x, 0) -> x
3253   if (N1C && N1C->isNullValue())
3254     return N0;
3255   // fold (shl undef, x) -> 0
3256   if (N0.getOpcode() == ISD::UNDEF)
3257     return DAG.getConstant(0, VT);
3258   // if (shl x, c) is known to be zero, return 0
3259   if (DAG.MaskedValueIsZero(SDValue(N, 0),
3260                             APInt::getAllOnesValue(OpSizeInBits)))
3261     return DAG.getConstant(0, VT);
3262   // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
3263   if (N1.getOpcode() == ISD::TRUNCATE &&
3264       N1.getOperand(0).getOpcode() == ISD::AND &&
3265       N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
3266     SDValue N101 = N1.getOperand(0).getOperand(1);
3267     if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
3268       EVT TruncVT = N1.getValueType();
3269       SDValue N100 = N1.getOperand(0).getOperand(0);
3270       APInt TruncC = N101C->getAPIntValue();
3271       TruncC = TruncC.trunc(TruncVT.getSizeInBits());
3272       return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
3273                          DAG.getNode(ISD::AND, N->getDebugLoc(), TruncVT,
3274                                      DAG.getNode(ISD::TRUNCATE,
3275                                                  N->getDebugLoc(),
3276                                                  TruncVT, N100),
3277                                      DAG.getConstant(TruncC, TruncVT)));
3278     }
3279   }
3280
3281   if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3282     return SDValue(N, 0);
3283
3284   // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
3285   if (N1C && N0.getOpcode() == ISD::SHL &&
3286       N0.getOperand(1).getOpcode() == ISD::Constant) {
3287     uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3288     uint64_t c2 = N1C->getZExtValue();
3289     if (c1 + c2 >= OpSizeInBits)
3290       return DAG.getConstant(0, VT);
3291     return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
3292                        DAG.getConstant(c1 + c2, N1.getValueType()));
3293   }
3294
3295   // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3296   // For this to be valid, the second form must not preserve any of the bits
3297   // that are shifted out by the inner shift in the first form.  This means
3298   // the outer shift size must be >= the number of bits added by the ext.
3299   // As a corollary, we don't care what kind of ext it is.
3300   if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3301               N0.getOpcode() == ISD::ANY_EXTEND ||
3302               N0.getOpcode() == ISD::SIGN_EXTEND) &&
3303       N0.getOperand(0).getOpcode() == ISD::SHL &&
3304       isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
3305     uint64_t c1 =
3306       cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3307     uint64_t c2 = N1C->getZExtValue();
3308     EVT InnerShiftVT = N0.getOperand(0).getValueType();
3309     uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3310     if (c2 >= OpSizeInBits - InnerShiftSize) {
3311       if (c1 + c2 >= OpSizeInBits)
3312         return DAG.getConstant(0, VT);
3313       return DAG.getNode(ISD::SHL, N0->getDebugLoc(), VT,
3314                          DAG.getNode(N0.getOpcode(), N0->getDebugLoc(), VT,
3315                                      N0.getOperand(0)->getOperand(0)),
3316                          DAG.getConstant(c1 + c2, N1.getValueType()));
3317     }
3318   }
3319
3320   // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3321   //                               (and (srl x, (sub c1, c2), MASK)
3322   if (N1C && N0.getOpcode() == ISD::SRL &&
3323       N0.getOperand(1).getOpcode() == ISD::Constant) {
3324     uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3325     if (c1 < VT.getSizeInBits()) {
3326       uint64_t c2 = N1C->getZExtValue();
3327       APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3328                                          VT.getSizeInBits() - c1);
3329       SDValue Shift;
3330       if (c2 > c1) {
3331         Mask = Mask.shl(c2-c1);
3332         Shift = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
3333                             DAG.getConstant(c2-c1, N1.getValueType()));
3334       } else {
3335         Mask = Mask.lshr(c1-c2);
3336         Shift = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
3337                             DAG.getConstant(c1-c2, N1.getValueType()));
3338       }
3339       return DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, Shift,
3340                          DAG.getConstant(Mask, VT));
3341     }
3342   }
3343   // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
3344   if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3345     SDValue HiBitsMask =
3346       DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3347                                             VT.getSizeInBits() -
3348                                               N1C->getZExtValue()),
3349                       VT);
3350     return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
3351                        HiBitsMask);
3352   }
3353
3354   if (N1C) {
3355     SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3356     if (NewSHL.getNode())
3357       return NewSHL;
3358   }
3359
3360   return SDValue();
3361 }
3362
3363 SDValue DAGCombiner::visitSRA(SDNode *N) {
3364   SDValue N0 = N->getOperand(0);
3365   SDValue N1 = N->getOperand(1);
3366   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3367   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3368   EVT VT = N0.getValueType();
3369   unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
3370
3371   // fold (sra c1, c2) -> (sra c1, c2)
3372   if (N0C && N1C)
3373     return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
3374   // fold (sra 0, x) -> 0
3375   if (N0C && N0C->isNullValue())
3376     return N0;
3377   // fold (sra -1, x) -> -1
3378   if (N0C && N0C->isAllOnesValue())
3379     return N0;
3380   // fold (sra x, (setge c, size(x))) -> undef
3381   if (N1C && N1C->getZExtValue() >= OpSizeInBits)
3382     return DAG.getUNDEF(VT);
3383   // fold (sra x, 0) -> x
3384   if (N1C && N1C->isNullValue())
3385     return N0;
3386   // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3387   // sext_inreg.
3388   if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
3389     unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
3390     EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3391     if (VT.isVector())
3392       ExtVT = EVT::getVectorVT(*DAG.getContext(),
3393                                ExtVT, VT.getVectorNumElements());
3394     if ((!LegalOperations ||
3395          TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
3396       return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
3397                          N0.getOperand(0), DAG.getValueType(ExtVT));
3398   }
3399
3400   // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
3401   if (N1C && N0.getOpcode() == ISD::SRA) {
3402     if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
3403       unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
3404       if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
3405       return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0.getOperand(0),
3406                          DAG.getConstant(Sum, N1C->getValueType(0)));
3407     }
3408   }
3409
3410   // fold (sra (shl X, m), (sub result_size, n))
3411   // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
3412   // result_size - n != m.
3413   // If truncate is free for the target sext(shl) is likely to result in better
3414   // code.
3415   if (N0.getOpcode() == ISD::SHL) {
3416     // Get the two constanst of the shifts, CN0 = m, CN = n.
3417     const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3418     if (N01C && N1C) {
3419       // Determine what the truncate's result bitsize and type would be.
3420       EVT TruncVT =
3421         EVT::getIntegerVT(*DAG.getContext(),
3422                           OpSizeInBits - N1C->getZExtValue());
3423       // Determine the residual right-shift amount.
3424       signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
3425
3426       // If the shift is not a no-op (in which case this should be just a sign
3427       // extend already), the truncated to type is legal, sign_extend is legal
3428       // on that type, and the truncate to that type is both legal and free,
3429       // perform the transform.
3430       if ((ShiftAmt > 0) &&
3431           TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3432           TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
3433           TLI.isTruncateFree(VT, TruncVT)) {
3434
3435           SDValue Amt = DAG.getConstant(ShiftAmt,
3436               getShiftAmountTy(N0.getOperand(0).getValueType()));
3437           SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT,
3438                                       N0.getOperand(0), Amt);
3439           SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), TruncVT,
3440                                       Shift);
3441           return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(),
3442                              N->getValueType(0), Trunc);
3443       }
3444     }
3445   }
3446
3447   // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
3448   if (N1.getOpcode() == ISD::TRUNCATE &&
3449       N1.getOperand(0).getOpcode() == ISD::AND &&
3450       N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
3451     SDValue N101 = N1.getOperand(0).getOperand(1);
3452     if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
3453       EVT TruncVT = N1.getValueType();
3454       SDValue N100 = N1.getOperand(0).getOperand(0);
3455       APInt TruncC = N101C->getAPIntValue();
3456       TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
3457       return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
3458                          DAG.getNode(ISD::AND, N->getDebugLoc(),
3459                                      TruncVT,
3460                                      DAG.getNode(ISD::TRUNCATE,
3461                                                  N->getDebugLoc(),
3462                                                  TruncVT, N100),
3463                                      DAG.getConstant(TruncC, TruncVT)));
3464     }
3465   }
3466
3467   // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3468   //      if c1 is equal to the number of bits the trunc removes
3469   if (N0.getOpcode() == ISD::TRUNCATE &&
3470       (N0.getOperand(0).getOpcode() == ISD::SRL ||
3471        N0.getOperand(0).getOpcode() == ISD::SRA) &&
3472       N0.getOperand(0).hasOneUse() &&
3473       N0.getOperand(0).getOperand(1).hasOneUse() &&
3474       N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3475     EVT LargeVT = N0.getOperand(0).getValueType();
3476     ConstantSDNode *LargeShiftAmt =
3477       cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3478
3479     if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3480         LargeShiftAmt->getZExtValue()) {
3481       SDValue Amt =
3482         DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
3483               getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
3484       SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), LargeVT,
3485                                 N0.getOperand(0).getOperand(0), Amt);
3486       return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, SRA);
3487     }
3488   }
3489
3490   // Simplify, based on bits shifted out of the LHS.
3491   if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3492     return SDValue(N, 0);
3493
3494
3495   // If the sign bit is known to be zero, switch this to a SRL.
3496   if (DAG.SignBitIsZero(N0))
3497     return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, N1);
3498
3499   if (N1C) {
3500     SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3501     if (NewSRA.getNode())
3502       return NewSRA;
3503   }
3504
3505   return SDValue();
3506 }
3507
3508 SDValue DAGCombiner::visitSRL(SDNode *N) {
3509   SDValue N0 = N->getOperand(0);
3510   SDValue N1 = N->getOperand(1);
3511   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3512   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3513   EVT VT = N0.getValueType();
3514   unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
3515
3516   // fold (srl c1, c2) -> c1 >>u c2
3517   if (N0C && N1C)
3518     return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
3519   // fold (srl 0, x) -> 0
3520   if (N0C && N0C->isNullValue())
3521     return N0;
3522   // fold (srl x, c >= size(x)) -> undef
3523   if (N1C && N1C->getZExtValue() >= OpSizeInBits)
3524     return DAG.getUNDEF(VT);
3525   // fold (srl x, 0) -> x
3526   if (N1C && N1C->isNullValue())
3527     return N0;
3528   // if (srl x, c) is known to be zero, return 0
3529   if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
3530                                    APInt::getAllOnesValue(OpSizeInBits)))
3531     return DAG.getConstant(0, VT);
3532
3533   // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
3534   if (N1C && N0.getOpcode() == ISD::SRL &&
3535       N0.getOperand(1).getOpcode() == ISD::Constant) {
3536     uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3537     uint64_t c2 = N1C->getZExtValue();
3538     if (c1 + c2 >= OpSizeInBits)
3539       return DAG.getConstant(0, VT);
3540     return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
3541                        DAG.getConstant(c1 + c2, N1.getValueType()));
3542   }
3543
3544   // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
3545   if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
3546       N0.getOperand(0).getOpcode() == ISD::SRL &&
3547       isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
3548     uint64_t c1 =
3549       cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3550     uint64_t c2 = N1C->getZExtValue();
3551     EVT InnerShiftVT = N0.getOperand(0).getValueType();
3552     EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
3553     uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3554     // This is only valid if the OpSizeInBits + c1 = size of inner shift.
3555     if (c1 + OpSizeInBits == InnerShiftSize) {
3556       if (c1 + c2 >= InnerShiftSize)
3557         return DAG.getConstant(0, VT);
3558       return DAG.getNode(ISD::TRUNCATE, N0->getDebugLoc(), VT,
3559                          DAG.getNode(ISD::SRL, N0->getDebugLoc(), InnerShiftVT,
3560                                      N0.getOperand(0)->getOperand(0),
3561                                      DAG.getConstant(c1 + c2, ShiftCountVT)));
3562     }
3563   }
3564
3565   // fold (srl (shl x, c), c) -> (and x, cst2)
3566   if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
3567       N0.getValueSizeInBits() <= 64) {
3568     uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
3569     return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
3570                        DAG.getConstant(~0ULL >> ShAmt, VT));
3571   }
3572
3573
3574   // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
3575   if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
3576     // Shifting in all undef bits?
3577     EVT SmallVT = N0.getOperand(0).getValueType();
3578     if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
3579       return DAG.getUNDEF(VT);
3580
3581     if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
3582       uint64_t ShiftAmt = N1C->getZExtValue();
3583       SDValue SmallShift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), SmallVT,
3584                                        N0.getOperand(0),
3585                           DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
3586       AddToWorkList(SmallShift.getNode());
3587       return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, SmallShift);
3588     }
3589   }
3590
3591   // fold (srl (sra X, Y), 31) -> (srl X, 31).  This srl only looks at the sign
3592   // bit, which is unmodified by sra.
3593   if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
3594     if (N0.getOpcode() == ISD::SRA)
3595       return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), N1);
3596   }
3597
3598   // fold (srl (ctlz x), "5") -> x  iff x has one bit set (the low bit).
3599   if (N1C && N0.getOpcode() == ISD::CTLZ &&
3600       N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
3601     APInt KnownZero, KnownOne;
3602     APInt Mask = APInt::getAllOnesValue(VT.getScalarType().getSizeInBits());
3603     DAG.ComputeMaskedBits(N0.getOperand(0), Mask, KnownZero, KnownOne);
3604
3605     // If any of the input bits are KnownOne, then the input couldn't be all
3606     // zeros, thus the result of the srl will always be zero.
3607     if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
3608
3609     // If all of the bits input the to ctlz node are known to be zero, then
3610     // the result of the ctlz is "32" and the result of the shift is one.
3611     APInt UnknownBits = ~KnownZero & Mask;
3612     if (UnknownBits == 0) return DAG.getConstant(1, VT);
3613
3614     // Otherwise, check to see if there is exactly one bit input to the ctlz.
3615     if ((UnknownBits & (UnknownBits - 1)) == 0) {
3616       // Okay, we know that only that the single bit specified by UnknownBits
3617       // could be set on input to the CTLZ node. If this bit is set, the SRL
3618       // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
3619       // to an SRL/XOR pair, which is likely to simplify more.
3620       unsigned ShAmt = UnknownBits.countTrailingZeros();
3621       SDValue Op = N0.getOperand(0);
3622
3623       if (ShAmt) {
3624         Op = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, Op,
3625                   DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
3626         AddToWorkList(Op.getNode());
3627       }
3628
3629       return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
3630                          Op, DAG.getConstant(1, VT));
3631     }
3632   }
3633
3634   // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
3635   if (N1.getOpcode() == ISD::TRUNCATE &&
3636       N1.getOperand(0).getOpcode() == ISD::AND &&
3637       N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
3638     SDValue N101 = N1.getOperand(0).getOperand(1);
3639     if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
3640       EVT TruncVT = N1.getValueType();
3641       SDValue N100 = N1.getOperand(0).getOperand(0);
3642       APInt TruncC = N101C->getAPIntValue();
3643       TruncC = TruncC.trunc(TruncVT.getSizeInBits());
3644       return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
3645                          DAG.getNode(ISD::AND, N->getDebugLoc(),
3646                                      TruncVT,
3647                                      DAG.getNode(ISD::TRUNCATE,
3648                                                  N->getDebugLoc(),
3649                                                  TruncVT, N100),
3650                                      DAG.getConstant(TruncC, TruncVT)));
3651     }
3652   }
3653
3654   // fold operands of srl based on knowledge that the low bits are not
3655   // demanded.
3656   if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3657     return SDValue(N, 0);
3658
3659   if (N1C) {
3660     SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
3661     if (NewSRL.getNode())
3662       return NewSRL;
3663   }
3664
3665   // Attempt to convert a srl of a load into a narrower zero-extending load.
3666   SDValue NarrowLoad = ReduceLoadWidth(N);
3667   if (NarrowLoad.getNode())
3668     return NarrowLoad;
3669
3670   // Here is a common situation. We want to optimize:
3671   //
3672   //   %a = ...
3673   //   %b = and i32 %a, 2
3674   //   %c = srl i32 %b, 1
3675   //   brcond i32 %c ...
3676   //
3677   // into
3678   //
3679   //   %a = ...
3680   //   %b = and %a, 2
3681   //   %c = setcc eq %b, 0
3682   //   brcond %c ...
3683   //
3684   // However when after the source operand of SRL is optimized into AND, the SRL
3685   // itself may not be optimized further. Look for it and add the BRCOND into
3686   // the worklist.
3687   if (N->hasOneUse()) {
3688     SDNode *Use = *N->use_begin();
3689     if (Use->getOpcode() == ISD::BRCOND)
3690       AddToWorkList(Use);
3691     else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
3692       // Also look pass the truncate.
3693       Use = *Use->use_begin();
3694       if (Use->getOpcode() == ISD::BRCOND)
3695         AddToWorkList(Use);
3696     }
3697   }
3698
3699   return SDValue();
3700 }
3701
3702 SDValue DAGCombiner::visitCTLZ(SDNode *N) {
3703   SDValue N0 = N->getOperand(0);
3704   EVT VT = N->getValueType(0);
3705
3706   // fold (ctlz c1) -> c2
3707   if (isa<ConstantSDNode>(N0))
3708     return DAG.getNode(ISD::CTLZ, N->getDebugLoc(), VT, N0);
3709   return SDValue();
3710 }
3711
3712 SDValue DAGCombiner::visitCTTZ(SDNode *N) {
3713   SDValue N0 = N->getOperand(0);
3714   EVT VT = N->getValueType(0);
3715
3716   // fold (cttz c1) -> c2
3717   if (isa<ConstantSDNode>(N0))
3718     return DAG.getNode(ISD::CTTZ, N->getDebugLoc(), VT, N0);
3719   return SDValue();
3720 }
3721
3722 SDValue DAGCombiner::visitCTPOP(SDNode *N) {
3723   SDValue N0 = N->getOperand(0);
3724   EVT VT = N->getValueType(0);
3725
3726   // fold (ctpop c1) -> c2
3727   if (isa<ConstantSDNode>(N0))
3728     return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), VT, N0);
3729   return SDValue();
3730 }
3731
3732 SDValue DAGCombiner::visitSELECT(SDNode *N) {
3733   SDValue N0 = N->getOperand(0);
3734   SDValue N1 = N->getOperand(1);
3735   SDValue N2 = N->getOperand(2);
3736   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3737   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3738   ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
3739   EVT VT = N->getValueType(0);
3740   EVT VT0 = N0.getValueType();
3741
3742   // fold (select C, X, X) -> X
3743   if (N1 == N2)
3744     return N1;
3745   // fold (select true, X, Y) -> X
3746   if (N0C && !N0C->isNullValue())
3747     return N1;
3748   // fold (select false, X, Y) -> Y
3749   if (N0C && N0C->isNullValue())
3750     return N2;
3751   // fold (select C, 1, X) -> (or C, X)
3752   if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
3753     return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
3754   // fold (select C, 0, 1) -> (xor C, 1)
3755   if (VT.isInteger() &&
3756       (VT0 == MVT::i1 ||
3757        (VT0.isInteger() &&
3758         TLI.getBooleanContents() == TargetLowering::ZeroOrOneBooleanContent)) &&
3759       N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
3760     SDValue XORNode;
3761     if (VT == VT0)
3762       return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT0,
3763                          N0, DAG.getConstant(1, VT0));
3764     XORNode = DAG.getNode(ISD::XOR, N0.getDebugLoc(), VT0,
3765                           N0, DAG.getConstant(1, VT0));
3766     AddToWorkList(XORNode.getNode());
3767     if (VT.bitsGT(VT0))
3768       return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, XORNode);
3769     return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, XORNode);
3770   }
3771   // fold (select C, 0, X) -> (and (not C), X)
3772   if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
3773     SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
3774     AddToWorkList(NOTNode.getNode());
3775     return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2);
3776   }
3777   // fold (select C, X, 1) -> (or (not C), X)
3778   if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
3779     SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
3780     AddToWorkList(NOTNode.getNode());
3781     return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, NOTNode, N1);
3782   }
3783   // fold (select C, X, 0) -> (and C, X)
3784   if (VT == MVT::i1 && N2C && N2C->isNullValue())
3785     return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
3786   // fold (select X, X, Y) -> (or X, Y)
3787   // fold (select X, 1, Y) -> (or X, Y)
3788   if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
3789     return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
3790   // fold (select X, Y, X) -> (and X, Y)
3791   // fold (select X, Y, 0) -> (and X, Y)
3792   if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
3793     return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
3794
3795   // If we can fold this based on the true/false value, do so.
3796   if (SimplifySelectOps(N, N1, N2))
3797     return SDValue(N, 0);  // Don't revisit N.
3798
3799   // fold selects based on a setcc into other things, such as min/max/abs
3800   if (N0.getOpcode() == ISD::SETCC) {
3801     // FIXME:
3802     // Check against MVT::Other for SELECT_CC, which is a workaround for targets
3803     // having to say they don't support SELECT_CC on every type the DAG knows
3804     // about, since there is no way to mark an opcode illegal at all value types
3805     if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
3806         TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
3807       return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT,
3808                          N0.getOperand(0), N0.getOperand(1),
3809                          N1, N2, N0.getOperand(2));
3810     return SimplifySelect(N->getDebugLoc(), N0, N1, N2);
3811   }
3812
3813   return SDValue();
3814 }
3815
3816 SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
3817   SDValue N0 = N->getOperand(0);
3818   SDValue N1 = N->getOperand(1);
3819   SDValue N2 = N->getOperand(2);
3820   SDValue N3 = N->getOperand(3);
3821   SDValue N4 = N->getOperand(4);
3822   ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
3823
3824   // fold select_cc lhs, rhs, x, x, cc -> x
3825   if (N2 == N3)
3826     return N2;
3827
3828   // Determine if the condition we're dealing with is constant
3829   SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
3830                               N0, N1, CC, N->getDebugLoc(), false);
3831   if (SCC.getNode()) AddToWorkList(SCC.getNode());
3832
3833   if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) {
3834     if (!SCCC->isNullValue())
3835       return N2;    // cond always true -> true val
3836     else
3837       return N3;    // cond always false -> false val
3838   }
3839
3840   // Fold to a simpler select_cc
3841   if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC)
3842     return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), N2.getValueType(),
3843                        SCC.getOperand(0), SCC.getOperand(1), N2, N3,
3844                        SCC.getOperand(2));
3845
3846   // If we can fold this based on the true/false value, do so.
3847   if (SimplifySelectOps(N, N2, N3))
3848     return SDValue(N, 0);  // Don't revisit N.
3849
3850   // fold select_cc into other things, such as min/max/abs
3851   return SimplifySelectCC(N->getDebugLoc(), N0, N1, N2, N3, CC);
3852 }
3853
3854 SDValue DAGCombiner::visitSETCC(SDNode *N) {
3855   return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
3856                        cast<CondCodeSDNode>(N->getOperand(2))->get(),
3857                        N->getDebugLoc());
3858 }
3859
3860 // ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
3861 // "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
3862 // transformation. Returns true if extension are possible and the above
3863 // mentioned transformation is profitable.
3864 static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
3865                                     unsigned ExtOpc,
3866                                     SmallVector<SDNode*, 4> &ExtendNodes,
3867                                     const TargetLowering &TLI) {
3868   bool HasCopyToRegUses = false;
3869   bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
3870   for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
3871                             UE = N0.getNode()->use_end();
3872        UI != UE; ++UI) {
3873     SDNode *User = *UI;
3874     if (User == N)
3875       continue;
3876     if (UI.getUse().getResNo() != N0.getResNo())
3877       continue;
3878     // FIXME: Only extend SETCC N, N and SETCC N, c for now.
3879     if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
3880       ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
3881       if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
3882         // Sign bits will be lost after a zext.
3883         return false;
3884       bool Add = false;
3885       for (unsigned i = 0; i != 2; ++i) {
3886         SDValue UseOp = User->getOperand(i);
3887         if (UseOp == N0)
3888           continue;
3889         if (!isa<ConstantSDNode>(UseOp))
3890           return false;
3891         Add = true;
3892       }
3893       if (Add)
3894         ExtendNodes.push_back(User);
3895       continue;
3896     }
3897     // If truncates aren't free and there are users we can't
3898     // extend, it isn't worthwhile.
3899     if (!isTruncFree)
3900       return false;
3901     // Remember if this value is live-out.
3902     if (User->getOpcode() == ISD::CopyToReg)
3903       HasCopyToRegUses = true;
3904   }
3905
3906   if (HasCopyToRegUses) {
3907     bool BothLiveOut = false;
3908     for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
3909          UI != UE; ++UI) {
3910       SDUse &Use = UI.getUse();
3911       if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
3912         BothLiveOut = true;
3913         break;
3914       }
3915     }
3916     if (BothLiveOut)
3917       // Both unextended and extended values are live out. There had better be
3918       // a good reason for the transformation.
3919       return ExtendNodes.size();
3920   }
3921   return true;
3922 }
3923
3924 void DAGCombiner::ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
3925                                   SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
3926                                   ISD::NodeType ExtType) {
3927   // Extend SetCC uses if necessary.
3928   for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
3929     SDNode *SetCC = SetCCs[i];
3930     SmallVector<SDValue, 4> Ops;
3931
3932     for (unsigned j = 0; j != 2; ++j) {
3933       SDValue SOp = SetCC->getOperand(j);
3934       if (SOp == Trunc)
3935         Ops.push_back(ExtLoad);
3936       else
3937         Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
3938     }
3939
3940     Ops.push_back(SetCC->getOperand(2));
3941     CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
3942                                  &Ops[0], Ops.size()));
3943   }
3944 }
3945
3946 SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
3947   SDValue N0 = N->getOperand(0);
3948   EVT VT = N->getValueType(0);
3949
3950   // fold (sext c1) -> c1
3951   if (isa<ConstantSDNode>(N0))
3952     return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N0);
3953
3954   // fold (sext (sext x)) -> (sext x)
3955   // fold (sext (aext x)) -> (sext x)
3956   if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
3957     return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT,
3958                        N0.getOperand(0));
3959
3960   if (N0.getOpcode() == ISD::TRUNCATE) {
3961     // fold (sext (truncate (load x))) -> (sext (smaller load x))
3962     // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
3963     SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
3964     if (NarrowLoad.getNode()) {
3965       SDNode* oye = N0.getNode()->getOperand(0).getNode();
3966       if (NarrowLoad.getNode() != N0.getNode()) {
3967         CombineTo(N0.getNode(), NarrowLoad);
3968         // CombineTo deleted the truncate, if needed, but not what's under it.
3969         AddToWorkList(oye);
3970       }
3971       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
3972     }
3973
3974     // See if the value being truncated is already sign extended.  If so, just
3975     // eliminate the trunc/sext pair.
3976     SDValue Op = N0.getOperand(0);
3977     unsigned OpBits   = Op.getValueType().getScalarType().getSizeInBits();
3978     unsigned MidBits  = N0.getValueType().getScalarType().getSizeInBits();
3979     unsigned DestBits = VT.getScalarType().getSizeInBits();
3980     unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
3981
3982     if (OpBits == DestBits) {
3983       // Op is i32, Mid is i8, and Dest is i32.  If Op has more than 24 sign
3984       // bits, it is already ready.
3985       if (NumSignBits > DestBits-MidBits)
3986         return Op;
3987     } else if (OpBits < DestBits) {
3988       // Op is i32, Mid is i8, and Dest is i64.  If Op has more than 24 sign
3989       // bits, just sext from i32.
3990       if (NumSignBits > OpBits-MidBits)
3991         return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, Op);
3992     } else {
3993       // Op is i64, Mid is i8, and Dest is i32.  If Op has more than 56 sign
3994       // bits, just truncate to i32.
3995       if (NumSignBits > OpBits-MidBits)
3996         return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
3997     }
3998
3999     // fold (sext (truncate x)) -> (sextinreg x).
4000     if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4001                                                  N0.getValueType())) {
4002       if (OpBits < DestBits)
4003         Op = DAG.getNode(ISD::ANY_EXTEND, N0.getDebugLoc(), VT, Op);
4004       else if (OpBits > DestBits)
4005         Op = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), VT, Op);
4006       return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, Op,
4007                          DAG.getValueType(N0.getValueType()));
4008     }
4009   }
4010
4011   // fold (sext (load x)) -> (sext (truncate (sextload x)))
4012   // None of the supported targets knows how to perform load and sign extend
4013   // on vectors in one instruction.  We only perform this transformation on
4014   // scalars.
4015   if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
4016       ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
4017        TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
4018     bool DoXform = true;
4019     SmallVector<SDNode*, 4> SetCCs;
4020     if (!N0.hasOneUse())
4021       DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4022     if (DoXform) {
4023       LoadSDNode *LN0 = cast<LoadSDNode>(N0);
4024       SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
4025                                        LN0->getChain(),
4026                                        LN0->getBasePtr(), LN0->getPointerInfo(),
4027                                        N0.getValueType(),
4028                                        LN0->isVolatile(), LN0->isNonTemporal(),
4029                                        LN0->getAlignment());
4030       CombineTo(N, ExtLoad);
4031       SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4032                                   N0.getValueType(), ExtLoad);
4033       CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
4034       ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4035                       ISD::SIGN_EXTEND);
4036       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4037     }
4038   }
4039
4040   // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4041   // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
4042   if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4043       ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
4044     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
4045     EVT MemVT = LN0->getMemoryVT();
4046     if ((!LegalOperations && !LN0->isVolatile()) ||
4047         TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
4048       SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
4049                                        LN0->getChain(),
4050                                        LN0->getBasePtr(), LN0->getPointerInfo(),
4051                                        MemVT,
4052                                        LN0->isVolatile(), LN0->isNonTemporal(),
4053                                        LN0->getAlignment());
4054       CombineTo(N, ExtLoad);
4055       CombineTo(N0.getNode(),
4056                 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4057                             N0.getValueType(), ExtLoad),
4058                 ExtLoad.getValue(1));
4059       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4060     }
4061   }
4062
4063   // fold (sext (and/or/xor (load x), cst)) ->
4064   //      (and/or/xor (sextload x), (sext cst))
4065   if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4066        N0.getOpcode() == ISD::XOR) &&
4067       isa<LoadSDNode>(N0.getOperand(0)) &&
4068       N0.getOperand(1).getOpcode() == ISD::Constant &&
4069       TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4070       (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4071     LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4072     if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4073       bool DoXform = true;
4074       SmallVector<SDNode*, 4> SetCCs;
4075       if (!N0.hasOneUse())
4076         DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4077                                           SetCCs, TLI);
4078       if (DoXform) {
4079         SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, LN0->getDebugLoc(), VT,
4080                                          LN0->getChain(), LN0->getBasePtr(),
4081                                          LN0->getPointerInfo(),
4082                                          LN0->getMemoryVT(),
4083                                          LN0->isVolatile(),
4084                                          LN0->isNonTemporal(),
4085                                          LN0->getAlignment());
4086         APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4087         Mask = Mask.sext(VT.getSizeInBits());
4088         SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4089                                   ExtLoad, DAG.getConstant(Mask, VT));
4090         SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4091                                     N0.getOperand(0).getDebugLoc(),
4092                                     N0.getOperand(0).getValueType(), ExtLoad);
4093         CombineTo(N, And);
4094         CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4095         ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4096                         ISD::SIGN_EXTEND);
4097         return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4098       }
4099     }
4100   }
4101
4102   if (N0.getOpcode() == ISD::SETCC) {
4103     // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
4104     // Only do this before legalize for now.
4105     if (VT.isVector() && !LegalOperations) {
4106       EVT N0VT = N0.getOperand(0).getValueType();
4107         // We know that the # elements of the results is the same as the
4108         // # elements of the compare (and the # elements of the compare result
4109         // for that matter).  Check to see that they are the same size.  If so,
4110         // we know that the element size of the sext'd result matches the
4111         // element size of the compare operands.
4112       if (VT.getSizeInBits() == N0VT.getSizeInBits())
4113         return DAG.getVSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
4114                              N0.getOperand(1),
4115                              cast<CondCodeSDNode>(N0.getOperand(2))->get());
4116       // If the desired elements are smaller or larger than the source
4117       // elements we can use a matching integer vector type and then
4118       // truncate/sign extend
4119       else {
4120         EVT MatchingElementType =
4121           EVT::getIntegerVT(*DAG.getContext(),
4122                             N0VT.getScalarType().getSizeInBits());
4123         EVT MatchingVectorType =
4124           EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4125                            N0VT.getVectorNumElements());
4126         SDValue VsetCC =
4127           DAG.getVSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
4128                         N0.getOperand(1),
4129                         cast<CondCodeSDNode>(N0.getOperand(2))->get());
4130         return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
4131       }
4132     }
4133
4134     // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
4135     unsigned ElementWidth = VT.getScalarType().getSizeInBits();
4136     SDValue NegOne =
4137       DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
4138     SDValue SCC =
4139       SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
4140                        NegOne, DAG.getConstant(0, VT),
4141                        cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
4142     if (SCC.getNode()) return SCC;
4143     if (!LegalOperations ||
4144         TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(VT)))
4145       return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
4146                          DAG.getSetCC(N->getDebugLoc(),
4147                                       TLI.getSetCCResultType(VT),
4148                                       N0.getOperand(0), N0.getOperand(1),
4149                                  cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4150                          NegOne, DAG.getConstant(0, VT));
4151   }
4152
4153   // fold (sext x) -> (zext x) if the sign bit is known zero.
4154   if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
4155       DAG.SignBitIsZero(N0))
4156     return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
4157
4158   return SDValue();
4159 }
4160
4161 SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4162   SDValue N0 = N->getOperand(0);
4163   EVT VT = N->getValueType(0);
4164
4165   // fold (zext c1) -> c1
4166   if (isa<ConstantSDNode>(N0))
4167     return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
4168   // fold (zext (zext x)) -> (zext x)
4169   // fold (zext (aext x)) -> (zext x)
4170   if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
4171     return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT,
4172                        N0.getOperand(0));
4173
4174   // fold (zext (truncate (load x))) -> (zext (smaller load x))
4175   // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
4176   if (N0.getOpcode() == ISD::TRUNCATE) {
4177     SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4178     if (NarrowLoad.getNode()) {
4179       SDNode* oye = N0.getNode()->getOperand(0).getNode();
4180       if (NarrowLoad.getNode() != N0.getNode()) {
4181         CombineTo(N0.getNode(), NarrowLoad);
4182         // CombineTo deleted the truncate, if needed, but not what's under it.
4183         AddToWorkList(oye);
4184       }
4185       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4186     }
4187   }
4188
4189   // fold (zext (truncate x)) -> (and x, mask)
4190   if (N0.getOpcode() == ISD::TRUNCATE &&
4191       (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
4192
4193     // fold (zext (truncate (load x))) -> (zext (smaller load x))
4194     // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4195     SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4196     if (NarrowLoad.getNode()) {
4197       SDNode* oye = N0.getNode()->getOperand(0).getNode();
4198       if (NarrowLoad.getNode() != N0.getNode()) {
4199         CombineTo(N0.getNode(), NarrowLoad);
4200         // CombineTo deleted the truncate, if needed, but not what's under it.
4201         AddToWorkList(oye);
4202       }
4203       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4204     }
4205
4206     SDValue Op = N0.getOperand(0);
4207     if (Op.getValueType().bitsLT(VT)) {
4208       Op = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, Op);
4209     } else if (Op.getValueType().bitsGT(VT)) {
4210       Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
4211     }
4212     return DAG.getZeroExtendInReg(Op, N->getDebugLoc(),
4213                                   N0.getValueType().getScalarType());
4214   }
4215
4216   // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4217   // if either of the casts is not free.
4218   if (N0.getOpcode() == ISD::AND &&
4219       N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
4220       N0.getOperand(1).getOpcode() == ISD::Constant &&
4221       (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4222                            N0.getValueType()) ||
4223        !TLI.isZExtFree(N0.getValueType(), VT))) {
4224     SDValue X = N0.getOperand(0).getOperand(0);
4225     if (X.getValueType().bitsLT(VT)) {
4226       X = DAG.getNode(ISD::ANY_EXTEND, X.getDebugLoc(), VT, X);
4227     } else if (X.getValueType().bitsGT(VT)) {
4228       X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
4229     }
4230     APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4231     Mask = Mask.zext(VT.getSizeInBits());
4232     return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4233                        X, DAG.getConstant(Mask, VT));
4234   }
4235
4236   // fold (zext (load x)) -> (zext (truncate (zextload x)))
4237   // None of the supported targets knows how to perform load and vector_zext
4238   // on vectors in one instruction.  We only perform this transformation on
4239   // scalars.
4240   if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
4241       ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
4242        TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
4243     bool DoXform = true;
4244     SmallVector<SDNode*, 4> SetCCs;
4245     if (!N0.hasOneUse())
4246       DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4247     if (DoXform) {
4248       LoadSDNode *LN0 = cast<LoadSDNode>(N0);
4249       SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
4250                                        LN0->getChain(),
4251                                        LN0->getBasePtr(), LN0->getPointerInfo(),
4252                                        N0.getValueType(),
4253                                        LN0->isVolatile(), LN0->isNonTemporal(),
4254                                        LN0->getAlignment());
4255       CombineTo(N, ExtLoad);
4256       SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4257                                   N0.getValueType(), ExtLoad);
4258       CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
4259
4260       ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4261                       ISD::ZERO_EXTEND);
4262       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4263     }
4264   }
4265
4266   // fold (zext (and/or/xor (load x), cst)) ->
4267   //      (and/or/xor (zextload x), (zext cst))
4268   if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4269        N0.getOpcode() == ISD::XOR) &&
4270       isa<LoadSDNode>(N0.getOperand(0)) &&
4271       N0.getOperand(1).getOpcode() == ISD::Constant &&
4272       TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4273       (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4274     LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4275     if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4276       bool DoXform = true;
4277       SmallVector<SDNode*, 4> SetCCs;
4278       if (!N0.hasOneUse())
4279         DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4280                                           SetCCs, TLI);
4281       if (DoXform) {
4282         SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), VT,
4283                                          LN0->getChain(), LN0->getBasePtr(),
4284                                          LN0->getPointerInfo(),
4285                                          LN0->getMemoryVT(),
4286                                          LN0->isVolatile(),
4287                                          LN0->isNonTemporal(),
4288                                          LN0->getAlignment());
4289         APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4290         Mask = Mask.zext(VT.getSizeInBits());
4291         SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4292                                   ExtLoad, DAG.getConstant(Mask, VT));
4293         SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4294                                     N0.getOperand(0).getDebugLoc(),
4295                                     N0.getOperand(0).getValueType(), ExtLoad);
4296         CombineTo(N, And);
4297         CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4298         ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4299                         ISD::ZERO_EXTEND);
4300         return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4301       }
4302     }
4303   }
4304
4305   // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4306   // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
4307   if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4308       ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
4309     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
4310     EVT MemVT = LN0->getMemoryVT();
4311     if ((!LegalOperations && !LN0->isVolatile()) ||
4312         TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
4313       SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
4314                                        LN0->getChain(),
4315                                        LN0->getBasePtr(), LN0->getPointerInfo(),
4316                                        MemVT,
4317                                        LN0->isVolatile(), LN0->isNonTemporal(),
4318                                        LN0->getAlignment());
4319       CombineTo(N, ExtLoad);
4320       CombineTo(N0.getNode(),
4321                 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), N0.getValueType(),
4322                             ExtLoad),
4323                 ExtLoad.getValue(1));
4324       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4325     }
4326   }
4327
4328   if (N0.getOpcode() == ISD::SETCC) {
4329     if (!LegalOperations && VT.isVector()) {
4330       // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4331       // Only do this before legalize for now.
4332       EVT N0VT = N0.getOperand(0).getValueType();
4333       EVT EltVT = VT.getVectorElementType();
4334       SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4335                                     DAG.getConstant(1, EltVT));
4336       if (VT.getSizeInBits() == N0VT.getSizeInBits())
4337         // We know that the # elements of the results is the same as the
4338         // # elements of the compare (and the # elements of the compare result
4339         // for that matter).  Check to see that they are the same size.  If so,
4340         // we know that the element size of the sext'd result matches the
4341         // element size of the compare operands.
4342         return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4343                            DAG.getVSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
4344                                          N0.getOperand(1),
4345                                  cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4346                            DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4347                                        &OneOps[0], OneOps.size()));
4348
4349       // If the desired elements are smaller or larger than the source
4350       // elements we can use a matching integer vector type and then
4351       // truncate/sign extend
4352       EVT MatchingElementType =
4353         EVT::getIntegerVT(*DAG.getContext(),
4354                           N0VT.getScalarType().getSizeInBits());
4355       EVT MatchingVectorType =
4356         EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4357                          N0VT.getVectorNumElements());
4358       SDValue VsetCC =
4359         DAG.getVSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
4360                       N0.getOperand(1),
4361                       cast<CondCodeSDNode>(N0.getOperand(2))->get());
4362       return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4363                          DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT),
4364                          DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4365                                      &OneOps[0], OneOps.size()));
4366     }
4367
4368     // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
4369     SDValue SCC =
4370       SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
4371                        DAG.getConstant(1, VT), DAG.getConstant(0, VT),
4372                        cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
4373     if (SCC.getNode()) return SCC;
4374   }
4375
4376   // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
4377   if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
4378       isa<ConstantSDNode>(N0.getOperand(1)) &&
4379       N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4380       N0.hasOneUse()) {
4381     SDValue ShAmt = N0.getOperand(1);
4382     unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
4383     if (N0.getOpcode() == ISD::SHL) {
4384       SDValue InnerZExt = N0.getOperand(0);
4385       // If the original shl may be shifting out bits, do not perform this
4386       // transformation.
4387       unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4388         InnerZExt.getOperand(0).getValueType().getSizeInBits();
4389       if (ShAmtVal > KnownZeroBits)
4390         return SDValue();
4391     }
4392
4393     DebugLoc DL = N->getDebugLoc();
4394
4395     // Ensure that the shift amount is wide enough for the shifted value.
4396     if (VT.getSizeInBits() >= 256)
4397       ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
4398
4399     return DAG.getNode(N0.getOpcode(), DL, VT,
4400                        DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4401                        ShAmt);
4402   }
4403
4404   return SDValue();
4405 }
4406
4407 SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4408   SDValue N0 = N->getOperand(0);
4409   EVT VT = N->getValueType(0);
4410
4411   // fold (aext c1) -> c1
4412   if (isa<ConstantSDNode>(N0))
4413     return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, N0);
4414   // fold (aext (aext x)) -> (aext x)
4415   // fold (aext (zext x)) -> (zext x)
4416   // fold (aext (sext x)) -> (sext x)
4417   if (N0.getOpcode() == ISD::ANY_EXTEND  ||
4418       N0.getOpcode() == ISD::ZERO_EXTEND ||
4419       N0.getOpcode() == ISD::SIGN_EXTEND)
4420     return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, N0.getOperand(0));
4421
4422   // fold (aext (truncate (load x))) -> (aext (smaller load x))
4423   // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
4424   if (N0.getOpcode() == ISD::TRUNCATE) {
4425     SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4426     if (NarrowLoad.getNode()) {
4427       SDNode* oye = N0.getNode()->getOperand(0).getNode();
4428       if (NarrowLoad.getNode() != N0.getNode()) {
4429         CombineTo(N0.getNode(), NarrowLoad);
4430         // CombineTo deleted the truncate, if needed, but not what's under it.
4431         AddToWorkList(oye);
4432       }
4433       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4434     }
4435   }
4436
4437   // fold (aext (truncate x))
4438   if (N0.getOpcode() == ISD::TRUNCATE) {
4439     SDValue TruncOp = N0.getOperand(0);
4440     if (TruncOp.getValueType() == VT)
4441       return TruncOp; // x iff x size == zext size.
4442     if (TruncOp.getValueType().bitsGT(VT))
4443       return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, TruncOp);
4444     return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, TruncOp);
4445   }
4446
4447   // Fold (aext (and (trunc x), cst)) -> (and x, cst)
4448   // if the trunc is not free.
4449   if (N0.getOpcode() == ISD::AND &&
4450       N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
4451       N0.getOperand(1).getOpcode() == ISD::Constant &&
4452       !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4453                           N0.getValueType())) {
4454     SDValue X = N0.getOperand(0).getOperand(0);
4455     if (X.getValueType().bitsLT(VT)) {
4456       X = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, X);
4457     } else if (X.getValueType().bitsGT(VT)) {
4458       X = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, X);
4459     }
4460     APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4461     Mask = Mask.zext(VT.getSizeInBits());
4462     return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4463                        X, DAG.getConstant(Mask, VT));
4464   }
4465
4466   // fold (aext (load x)) -> (aext (truncate (extload x)))
4467   // None of the supported targets knows how to perform load and any_ext
4468   // on vectors in one instruction.  We only perform this transformation on
4469   // scalars.
4470   if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
4471       ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
4472        TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
4473     bool DoXform = true;
4474     SmallVector<SDNode*, 4> SetCCs;
4475     if (!N0.hasOneUse())
4476       DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
4477     if (DoXform) {
4478       LoadSDNode *LN0 = cast<LoadSDNode>(N0);
4479       SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
4480                                        LN0->getChain(),
4481                                        LN0->getBasePtr(), LN0->getPointerInfo(),
4482                                        N0.getValueType(),
4483                                        LN0->isVolatile(), LN0->isNonTemporal(),
4484                                        LN0->getAlignment());
4485       CombineTo(N, ExtLoad);
4486       SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4487                                   N0.getValueType(), ExtLoad);
4488       CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
4489       ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4490                       ISD::ANY_EXTEND);
4491       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4492     }
4493   }
4494
4495   // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
4496   // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
4497   // fold (aext ( extload x)) -> (aext (truncate (extload  x)))
4498   if (N0.getOpcode() == ISD::LOAD &&
4499       !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
4500       N0.hasOneUse()) {
4501     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
4502     EVT MemVT = LN0->getMemoryVT();
4503     SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), N->getDebugLoc(),
4504                                      VT, LN0->getChain(), LN0->getBasePtr(),
4505                                      LN0->getPointerInfo(), MemVT,
4506                                      LN0->isVolatile(), LN0->isNonTemporal(),
4507                                      LN0->getAlignment());
4508     CombineTo(N, ExtLoad);
4509     CombineTo(N0.getNode(),
4510               DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4511                           N0.getValueType(), ExtLoad),
4512               ExtLoad.getValue(1));
4513     return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4514   }
4515
4516   if (N0.getOpcode() == ISD::SETCC) {
4517     // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
4518     // Only do this before legalize for now.
4519     if (VT.isVector() && !LegalOperations) {
4520       EVT N0VT = N0.getOperand(0).getValueType();
4521         // We know that the # elements of the results is the same as the
4522         // # elements of the compare (and the # elements of the compare result
4523         // for that matter).  Check to see that they are the same size.  If so,
4524         // we know that the element size of the sext'd result matches the
4525         // element size of the compare operands.
4526       if (VT.getSizeInBits() == N0VT.getSizeInBits())
4527         return DAG.getVSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
4528                              N0.getOperand(1),
4529                              cast<CondCodeSDNode>(N0.getOperand(2))->get());
4530       // If the desired elements are smaller or larger than the source
4531       // elements we can use a matching integer vector type and then
4532       // truncate/sign extend
4533       else {
4534         EVT MatchingElementType =
4535           EVT::getIntegerVT(*DAG.getContext(),
4536                             N0VT.getScalarType().getSizeInBits());
4537         EVT MatchingVectorType =
4538           EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4539                            N0VT.getVectorNumElements());
4540         SDValue VsetCC =
4541           DAG.getVSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
4542                         N0.getOperand(1),
4543                         cast<CondCodeSDNode>(N0.getOperand(2))->get());
4544         return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
4545       }
4546     }
4547
4548     // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
4549     SDValue SCC =
4550       SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
4551                        DAG.getConstant(1, VT), DAG.getConstant(0, VT),
4552                        cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
4553     if (SCC.getNode())
4554       return SCC;
4555   }
4556
4557   return SDValue();
4558 }
4559
4560 /// GetDemandedBits - See if the specified operand can be simplified with the
4561 /// knowledge that only the bits specified by Mask are used.  If so, return the
4562 /// simpler operand, otherwise return a null SDValue.
4563 SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
4564   switch (V.getOpcode()) {
4565   default: break;
4566   case ISD::OR:
4567   case ISD::XOR:
4568     // If the LHS or RHS don't contribute bits to the or, drop them.
4569     if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
4570       return V.getOperand(1);
4571     if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
4572       return V.getOperand(0);
4573     break;
4574   case ISD::SRL:
4575     // Only look at single-use SRLs.
4576     if (!V.getNode()->hasOneUse())
4577       break;
4578     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
4579       // See if we can recursively simplify the LHS.
4580       unsigned Amt = RHSC->getZExtValue();
4581
4582       // Watch out for shift count overflow though.
4583       if (Amt >= Mask.getBitWidth()) break;
4584       APInt NewMask = Mask << Amt;
4585       SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
4586       if (SimplifyLHS.getNode())
4587         return DAG.getNode(ISD::SRL, V.getDebugLoc(), V.getValueType(),
4588                            SimplifyLHS, V.getOperand(1));
4589     }
4590   }
4591   return SDValue();
4592 }
4593
4594 /// ReduceLoadWidth - If the result of a wider load is shifted to right of N
4595 /// bits and then truncated to a narrower type and where N is a multiple
4596 /// of number of bits of the narrower type, transform it to a narrower load
4597 /// from address + N / num of bits of new type. If the result is to be
4598 /// extended, also fold the extension to form a extending load.
4599 SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
4600   unsigned Opc = N->getOpcode();
4601
4602   ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
4603   SDValue N0 = N->getOperand(0);
4604   EVT VT = N->getValueType(0);
4605   EVT ExtVT = VT;
4606
4607   // This transformation isn't valid for vector loads.
4608   if (VT.isVector())
4609     return SDValue();
4610
4611   // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
4612   // extended to VT.
4613   if (Opc == ISD::SIGN_EXTEND_INREG) {
4614     ExtType = ISD::SEXTLOAD;
4615     ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
4616   } else if (Opc == ISD::SRL) {
4617     // Another special-case: SRL is basically zero-extending a narrower value.
4618     ExtType = ISD::ZEXTLOAD;
4619     N0 = SDValue(N, 0);
4620     ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
4621     if (!N01) return SDValue();
4622     ExtVT = EVT::getIntegerVT(*DAG.getContext(),
4623                               VT.getSizeInBits() - N01->getZExtValue());
4624   }
4625   if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
4626     return SDValue();
4627
4628   unsigned EVTBits = ExtVT.getSizeInBits();
4629
4630   // Do not generate loads of non-round integer types since these can
4631   // be expensive (and would be wrong if the type is not byte sized).
4632   if (!ExtVT.isRound())
4633     return SDValue();
4634
4635   unsigned ShAmt = 0;
4636   if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
4637     if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
4638       ShAmt = N01->getZExtValue();
4639       // Is the shift amount a multiple of size of VT?
4640       if ((ShAmt & (EVTBits-1)) == 0) {
4641         N0 = N0.getOperand(0);
4642         // Is the load width a multiple of size of VT?
4643         if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
4644           return SDValue();
4645       }
4646
4647       // At this point, we must have a load or else we can't do the transform.
4648       if (!isa<LoadSDNode>(N0)) return SDValue();
4649
4650       // If the shift amount is larger than the input type then we're not
4651       // accessing any of the loaded bytes.  If the load was a zextload/extload
4652       // then the result of the shift+trunc is zero/undef (handled elsewhere).
4653       // If the load was a sextload then the result is a splat of the sign bit
4654       // of the extended byte.  This is not worth optimizing for.
4655       if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
4656         return SDValue();
4657     }
4658   }
4659
4660   // If the load is shifted left (and the result isn't shifted back right),
4661   // we can fold the truncate through the shift.
4662   unsigned ShLeftAmt = 0;
4663   if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
4664       ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
4665     if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
4666       ShLeftAmt = N01->getZExtValue();
4667       N0 = N0.getOperand(0);
4668     }
4669   }
4670
4671   // If we haven't found a load, we can't narrow it.  Don't transform one with
4672   // multiple uses, this would require adding a new load.
4673   if (!isa<LoadSDNode>(N0) || !N0.hasOneUse() ||
4674       // Don't change the width of a volatile load.
4675       cast<LoadSDNode>(N0)->isVolatile())
4676     return SDValue();
4677
4678   // Verify that we are actually reducing a load width here.
4679   if (cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits() < EVTBits)
4680     return SDValue();
4681
4682   LoadSDNode *LN0 = cast<LoadSDNode>(N0);
4683   EVT PtrType = N0.getOperand(1).getValueType();
4684
4685   // For big endian targets, we need to adjust the offset to the pointer to
4686   // load the correct bytes.
4687   if (TLI.isBigEndian()) {
4688     unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
4689     unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
4690     ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
4691   }
4692
4693   uint64_t PtrOff = ShAmt / 8;
4694   unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
4695   SDValue NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(),
4696                                PtrType, LN0->getBasePtr(),
4697                                DAG.getConstant(PtrOff, PtrType));
4698   AddToWorkList(NewPtr.getNode());
4699
4700   SDValue Load;
4701   if (ExtType == ISD::NON_EXTLOAD)
4702     Load =  DAG.getLoad(VT, N0.getDebugLoc(), LN0->getChain(), NewPtr,
4703                         LN0->getPointerInfo().getWithOffset(PtrOff),
4704                         LN0->isVolatile(), LN0->isNonTemporal(), NewAlign);
4705   else
4706     Load = DAG.getExtLoad(ExtType, N0.getDebugLoc(), VT, LN0->getChain(),NewPtr,
4707                           LN0->getPointerInfo().getWithOffset(PtrOff),
4708                           ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
4709                           NewAlign);
4710
4711   // Replace the old load's chain with the new load's chain.
4712   WorkListRemover DeadNodes(*this);
4713   DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1),
4714                                 &DeadNodes);
4715
4716   // Shift the result left, if we've swallowed a left shift.
4717   SDValue Result = Load;
4718   if (ShLeftAmt != 0) {
4719     EVT ShImmTy = getShiftAmountTy(Result.getValueType());
4720     if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
4721       ShImmTy = VT;
4722     Result = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT,
4723                          Result, DAG.getConstant(ShLeftAmt, ShImmTy));
4724   }
4725
4726   // Return the new loaded value.
4727   return Result;
4728 }
4729
4730 SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
4731   SDValue N0 = N->getOperand(0);
4732   SDValue N1 = N->getOperand(1);
4733   EVT VT = N->getValueType(0);
4734   EVT EVT = cast<VTSDNode>(N1)->getVT();
4735   unsigned VTBits = VT.getScalarType().getSizeInBits();
4736   unsigned EVTBits = EVT.getScalarType().getSizeInBits();
4737
4738   // fold (sext_in_reg c1) -> c1
4739   if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
4740     return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, N0, N1);
4741
4742   // If the input is already sign extended, just drop the extension.
4743   if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
4744     return N0;
4745
4746   // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
4747   if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
4748       EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) {
4749     return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
4750                        N0.getOperand(0), N1);
4751   }
4752
4753   // fold (sext_in_reg (sext x)) -> (sext x)
4754   // fold (sext_in_reg (aext x)) -> (sext x)
4755   // if x is small enough.
4756   if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
4757     SDValue N00 = N0.getOperand(0);
4758     if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
4759         (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
4760       return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N00, N1);
4761   }
4762
4763   // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
4764   if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
4765     return DAG.getZeroExtendInReg(N0, N->getDebugLoc(), EVT);
4766
4767   // fold operands of sext_in_reg based on knowledge that the top bits are not
4768   // demanded.
4769   if (SimplifyDemandedBits(SDValue(N, 0)))
4770     return SDValue(N, 0);
4771
4772   // fold (sext_in_reg (load x)) -> (smaller sextload x)
4773   // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
4774   SDValue NarrowLoad = ReduceLoadWidth(N);
4775   if (NarrowLoad.getNode())
4776     return NarrowLoad;
4777
4778   // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
4779   // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
4780   // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
4781   if (N0.getOpcode() == ISD::SRL) {
4782     if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
4783       if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
4784         // We can turn this into an SRA iff the input to the SRL is already sign
4785         // extended enough.
4786         unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
4787         if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
4788           return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT,
4789                              N0.getOperand(0), N0.getOperand(1));
4790       }
4791   }
4792
4793   // fold (sext_inreg (extload x)) -> (sextload x)
4794   if (ISD::isEXTLoad(N0.getNode()) &&
4795       ISD::isUNINDEXEDLoad(N0.getNode()) &&
4796       EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
4797       ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
4798        TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
4799     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
4800     SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
4801                                      LN0->getChain(),
4802                                      LN0->getBasePtr(), LN0->getPointerInfo(),
4803                                      EVT,
4804                                      LN0->isVolatile(), LN0->isNonTemporal(),
4805                                      LN0->getAlignment());
4806     CombineTo(N, ExtLoad);
4807     CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
4808     return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4809   }
4810   // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
4811   if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
4812       N0.hasOneUse() &&
4813       EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
4814       ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
4815        TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
4816     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
4817     SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
4818                                      LN0->getChain(),
4819                                      LN0->getBasePtr(), LN0->getPointerInfo(),
4820                                      EVT,
4821                                      LN0->isVolatile(), LN0->isNonTemporal(),
4822                                      LN0->getAlignment());
4823     CombineTo(N, ExtLoad);
4824     CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
4825     return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4826   }
4827
4828   // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
4829   if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
4830     SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
4831                                        N0.getOperand(1), false);
4832     if (BSwap.getNode() != 0)
4833       return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
4834                          BSwap, N1);
4835   }
4836
4837   return SDValue();
4838 }
4839
4840 SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
4841   SDValue N0 = N->getOperand(0);
4842   EVT VT = N->getValueType(0);
4843
4844   // noop truncate
4845   if (N0.getValueType() == N->getValueType(0))
4846     return N0;
4847   // fold (truncate c1) -> c1
4848   if (isa<ConstantSDNode>(N0))
4849     return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0);
4850   // fold (truncate (truncate x)) -> (truncate x)
4851   if (N0.getOpcode() == ISD::TRUNCATE)
4852     return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
4853   // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
4854   if (N0.getOpcode() == ISD::ZERO_EXTEND ||
4855       N0.getOpcode() == ISD::SIGN_EXTEND ||
4856       N0.getOpcode() == ISD::ANY_EXTEND) {
4857     if (N0.getOperand(0).getValueType().bitsLT(VT))
4858       // if the source is smaller than the dest, we still need an extend
4859       return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4860                          N0.getOperand(0));
4861     else if (N0.getOperand(0).getValueType().bitsGT(VT))
4862       // if the source is larger than the dest, than we just need the truncate
4863       return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
4864     else
4865       // if the source and dest are the same type, we can drop both the extend
4866       // and the truncate.
4867       return N0.getOperand(0);
4868   }
4869
4870   // See if we can simplify the input to this truncate through knowledge that
4871   // only the low bits are being used.
4872   // For example "trunc (or (shl x, 8), y)" // -> trunc y
4873   // Currently we only perform this optimization on scalars because vectors
4874   // may have different active low bits.
4875   if (!VT.isVector()) {
4876     SDValue Shorter =
4877       GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
4878                                                VT.getSizeInBits()));
4879     if (Shorter.getNode())
4880       return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Shorter);
4881   }
4882   // fold (truncate (load x)) -> (smaller load x)
4883   // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
4884   if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
4885     SDValue Reduced = ReduceLoadWidth(N);
4886     if (Reduced.getNode())
4887       return Reduced;
4888   }
4889
4890   // Simplify the operands using demanded-bits information.
4891   if (!VT.isVector() &&
4892       SimplifyDemandedBits(SDValue(N, 0)))
4893     return SDValue(N, 0);
4894
4895   return SDValue();
4896 }
4897
4898 static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
4899   SDValue Elt = N->getOperand(i);
4900   if (Elt.getOpcode() != ISD::MERGE_VALUES)
4901     return Elt.getNode();
4902   return Elt.getOperand(Elt.getResNo()).getNode();
4903 }
4904
4905 /// CombineConsecutiveLoads - build_pair (load, load) -> load
4906 /// if load locations are consecutive.
4907 SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
4908   assert(N->getOpcode() == ISD::BUILD_PAIR);
4909
4910   LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
4911   LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
4912   if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
4913       LD1->getPointerInfo().getAddrSpace() !=
4914          LD2->getPointerInfo().getAddrSpace())
4915     return SDValue();
4916   EVT LD1VT = LD1->getValueType(0);
4917
4918   if (ISD::isNON_EXTLoad(LD2) &&
4919       LD2->hasOneUse() &&
4920       // If both are volatile this would reduce the number of volatile loads.
4921       // If one is volatile it might be ok, but play conservative and bail out.
4922       !LD1->isVolatile() &&
4923       !LD2->isVolatile() &&
4924       DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
4925     unsigned Align = LD1->getAlignment();
4926     unsigned NewAlign = TLI.getTargetData()->
4927       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
4928
4929     if (NewAlign <= Align &&
4930         (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
4931       return DAG.getLoad(VT, N->getDebugLoc(), LD1->getChain(),
4932                          LD1->getBasePtr(), LD1->getPointerInfo(),
4933                          false, false, Align);
4934   }
4935
4936   return SDValue();
4937 }
4938
4939 SDValue DAGCombiner::visitBITCAST(SDNode *N) {
4940   SDValue N0 = N->getOperand(0);
4941   EVT VT = N->getValueType(0);
4942
4943   // If the input is a BUILD_VECTOR with all constant elements, fold this now.
4944   // Only do this before legalize, since afterward the target may be depending
4945   // on the bitconvert.
4946   // First check to see if this is all constant.
4947   if (!LegalTypes &&
4948       N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
4949       VT.isVector()) {
4950     bool isSimple = true;
4951     for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
4952       if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
4953           N0.getOperand(i).getOpcode() != ISD::Constant &&
4954           N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
4955         isSimple = false;
4956         break;
4957       }
4958
4959     EVT DestEltVT = N->getValueType(0).getVectorElementType();
4960     assert(!DestEltVT.isVector() &&
4961            "Element type of vector ValueType must not be vector!");
4962     if (isSimple)
4963       return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
4964   }
4965
4966   // If the input is a constant, let getNode fold it.
4967   if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
4968     SDValue Res = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, N0);
4969     if (Res.getNode() != N) {
4970       if (!LegalOperations ||
4971           TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
4972         return Res;
4973
4974       // Folding it resulted in an illegal node, and it's too late to
4975       // do that. Clean up the old node and forego the transformation.
4976       // Ideally this won't happen very often, because instcombine
4977       // and the earlier dagcombine runs (where illegal nodes are
4978       // permitted) should have folded most of them already.
4979       DAG.DeleteNode(Res.getNode());
4980     }
4981   }
4982
4983   // (conv (conv x, t1), t2) -> (conv x, t2)
4984   if (N0.getOpcode() == ISD::BITCAST)
4985     return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT,
4986                        N0.getOperand(0));
4987
4988   // fold (conv (load x)) -> (load (conv*)x)
4989   // If the resultant load doesn't need a higher alignment than the original!
4990   if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
4991       // Do not change the width of a volatile load.
4992       !cast<LoadSDNode>(N0)->isVolatile() &&
4993       (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
4994     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
4995     unsigned Align = TLI.getTargetData()->
4996       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
4997     unsigned OrigAlign = LN0->getAlignment();
4998
4999     if (Align <= OrigAlign) {
5000       SDValue Load = DAG.getLoad(VT, N->getDebugLoc(), LN0->getChain(),
5001                                  LN0->getBasePtr(), LN0->getPointerInfo(),
5002                                  LN0->isVolatile(), LN0->isNonTemporal(),
5003                                  OrigAlign);
5004       AddToWorkList(N);
5005       CombineTo(N0.getNode(),
5006                 DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
5007                             N0.getValueType(), Load),
5008                 Load.getValue(1));
5009       return Load;
5010     }
5011   }
5012
5013   // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5014   // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
5015   // This often reduces constant pool loads.
5016   if ((N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FABS) &&
5017       N0.getNode()->hasOneUse() && VT.isInteger() && !VT.isVector()) {
5018     SDValue NewConv = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), VT,
5019                                   N0.getOperand(0));
5020     AddToWorkList(NewConv.getNode());
5021
5022     APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
5023     if (N0.getOpcode() == ISD::FNEG)
5024       return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
5025                          NewConv, DAG.getConstant(SignBit, VT));
5026     assert(N0.getOpcode() == ISD::FABS);
5027     return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
5028                        NewConv, DAG.getConstant(~SignBit, VT));
5029   }
5030
5031   // fold (bitconvert (fcopysign cst, x)) ->
5032   //         (or (and (bitconvert x), sign), (and cst, (not sign)))
5033   // Note that we don't handle (copysign x, cst) because this can always be
5034   // folded to an fneg or fabs.
5035   if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
5036       isa<ConstantFPSDNode>(N0.getOperand(0)) &&
5037       VT.isInteger() && !VT.isVector()) {
5038     unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
5039     EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
5040     if (isTypeLegal(IntXVT)) {
5041       SDValue X = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
5042                               IntXVT, N0.getOperand(1));
5043       AddToWorkList(X.getNode());
5044
5045       // If X has a different width than the result/lhs, sext it or truncate it.
5046       unsigned VTWidth = VT.getSizeInBits();
5047       if (OrigXWidth < VTWidth) {
5048         X = DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, X);
5049         AddToWorkList(X.getNode());
5050       } else if (OrigXWidth > VTWidth) {
5051         // To get the sign bit in the right place, we have to shift it right
5052         // before truncating.
5053         X = DAG.getNode(ISD::SRL, X.getDebugLoc(),
5054                         X.getValueType(), X,
5055                         DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5056         AddToWorkList(X.getNode());
5057         X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
5058         AddToWorkList(X.getNode());
5059       }
5060
5061       APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
5062       X = DAG.getNode(ISD::AND, X.getDebugLoc(), VT,
5063                       X, DAG.getConstant(SignBit, VT));
5064       AddToWorkList(X.getNode());
5065
5066       SDValue Cst = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
5067                                 VT, N0.getOperand(0));
5068       Cst = DAG.getNode(ISD::AND, Cst.getDebugLoc(), VT,
5069                         Cst, DAG.getConstant(~SignBit, VT));
5070       AddToWorkList(Cst.getNode());
5071
5072       return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, X, Cst);
5073     }
5074   }
5075
5076   // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
5077   if (N0.getOpcode() == ISD::BUILD_PAIR) {
5078     SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5079     if (CombineLD.getNode())
5080       return CombineLD;
5081   }
5082
5083   return SDValue();
5084 }
5085
5086 SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
5087   EVT VT = N->getValueType(0);
5088   return CombineConsecutiveLoads(N, VT);
5089 }
5090
5091 /// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
5092 /// node with Constant, ConstantFP or Undef operands.  DstEltVT indicates the
5093 /// destination element value type.
5094 SDValue DAGCombiner::
5095 ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
5096   EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
5097
5098   // If this is already the right type, we're done.
5099   if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
5100
5101   unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5102   unsigned DstBitSize = DstEltVT.getSizeInBits();
5103
5104   // If this is a conversion of N elements of one type to N elements of another
5105   // type, convert each element.  This handles FP<->INT cases.
5106   if (SrcBitSize == DstBitSize) {
5107     EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5108                               BV->getValueType(0).getVectorNumElements());
5109
5110     // Due to the FP element handling below calling this routine recursively,
5111     // we can end up with a scalar-to-vector node here.
5112     if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
5113       return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5114                          DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
5115                                      DstEltVT, BV->getOperand(0)));
5116
5117     SmallVector<SDValue, 8> Ops;
5118     for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
5119       SDValue Op = BV->getOperand(i);
5120       // If the vector element type is not legal, the BUILD_VECTOR operands
5121       // are promoted and implicitly truncated.  Make that explicit here.
5122       if (Op.getValueType() != SrcEltVT)
5123         Op = DAG.getNode(ISD::TRUNCATE, BV->getDebugLoc(), SrcEltVT, Op);
5124       Ops.push_back(DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
5125                                 DstEltVT, Op));
5126       AddToWorkList(Ops.back().getNode());
5127     }
5128     return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5129                        &Ops[0], Ops.size());
5130   }
5131
5132   // Otherwise, we're growing or shrinking the elements.  To avoid having to
5133   // handle annoying details of growing/shrinking FP values, we convert them to
5134   // int first.
5135   if (SrcEltVT.isFloatingPoint()) {
5136     // Convert the input float vector to a int vector where the elements are the
5137     // same sizes.
5138     assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
5139     EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
5140     BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
5141     SrcEltVT = IntVT;
5142   }
5143
5144   // Now we know the input is an integer vector.  If the output is a FP type,
5145   // convert to integer first, then to FP of the right size.
5146   if (DstEltVT.isFloatingPoint()) {
5147     assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
5148     EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
5149     SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
5150
5151     // Next, convert to FP elements of the same size.
5152     return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
5153   }
5154
5155   // Okay, we know the src/dst types are both integers of differing types.
5156   // Handling growing first.
5157   assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
5158   if (SrcBitSize < DstBitSize) {
5159     unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
5160
5161     SmallVector<SDValue, 8> Ops;
5162     for (unsigned i = 0, e = BV->getNumOperands(); i != e;
5163          i += NumInputsPerOutput) {
5164       bool isLE = TLI.isLittleEndian();
5165       APInt NewBits = APInt(DstBitSize, 0);
5166       bool EltIsUndef = true;
5167       for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5168         // Shift the previously computed bits over.
5169         NewBits <<= SrcBitSize;
5170         SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
5171         if (Op.getOpcode() == ISD::UNDEF) continue;
5172         EltIsUndef = false;
5173
5174         NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
5175                    zextOrTrunc(SrcBitSize).zext(DstBitSize);
5176       }
5177
5178       if (EltIsUndef)
5179         Ops.push_back(DAG.getUNDEF(DstEltVT));
5180       else
5181         Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5182     }
5183
5184     EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
5185     return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5186                        &Ops[0], Ops.size());
5187   }
5188
5189   // Finally, this must be the case where we are shrinking elements: each input
5190   // turns into multiple outputs.
5191   bool isS2V = ISD::isScalarToVector(BV);
5192   unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
5193   EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5194                             NumOutputsPerInput*BV->getNumOperands());
5195   SmallVector<SDValue, 8> Ops;
5196
5197   for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
5198     if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5199       for (unsigned j = 0; j != NumOutputsPerInput; ++j)
5200         Ops.push_back(DAG.getUNDEF(DstEltVT));
5201       continue;
5202     }
5203
5204     APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5205                   getAPIntValue().zextOrTrunc(SrcBitSize);
5206
5207     for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
5208       APInt ThisVal = OpVal.trunc(DstBitSize);
5209       Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
5210       if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
5211         // Simply turn this into a SCALAR_TO_VECTOR of the new type.
5212         return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5213                            Ops[0]);
5214       OpVal = OpVal.lshr(DstBitSize);
5215     }
5216
5217     // For big endian targets, swap the order of the pieces of each element.
5218     if (TLI.isBigEndian())
5219       std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5220   }
5221
5222   return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5223                      &Ops[0], Ops.size());
5224 }
5225
5226 SDValue DAGCombiner::visitFADD(SDNode *N) {
5227   SDValue N0 = N->getOperand(0);
5228   SDValue N1 = N->getOperand(1);
5229   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5230   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
5231   EVT VT = N->getValueType(0);
5232
5233   // fold vector ops
5234   if (VT.isVector()) {
5235     SDValue FoldedVOp = SimplifyVBinOp(N);
5236     if (FoldedVOp.getNode()) return FoldedVOp;
5237   }
5238
5239   // fold (fadd c1, c2) -> (fadd c1, c2)
5240   if (N0CFP && N1CFP && VT != MVT::ppcf128)
5241     return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N1);
5242   // canonicalize constant to RHS
5243   if (N0CFP && !N1CFP)
5244     return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N0);
5245   // fold (fadd A, 0) -> A
5246   if (UnsafeFPMath && N1CFP && N1CFP->getValueAPF().isZero())
5247     return N0;
5248   // fold (fadd A, (fneg B)) -> (fsub A, B)
5249   if (isNegatibleForFree(N1, LegalOperations) == 2)
5250     return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0,
5251                        GetNegatedExpression(N1, DAG, LegalOperations));
5252   // fold (fadd (fneg A), B) -> (fsub B, A)
5253   if (isNegatibleForFree(N0, LegalOperations) == 2)
5254     return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N1,
5255                        GetNegatedExpression(N0, DAG, LegalOperations));
5256
5257   // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
5258   if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FADD &&
5259       N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
5260     return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0.getOperand(0),
5261                        DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5262                                    N0.getOperand(1), N1));
5263
5264   return SDValue();
5265 }
5266
5267 SDValue DAGCombiner::visitFSUB(SDNode *N) {
5268   SDValue N0 = N->getOperand(0);
5269   SDValue N1 = N->getOperand(1);
5270   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5271   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
5272   EVT VT = N->getValueType(0);
5273
5274   // fold vector ops
5275   if (VT.isVector()) {
5276     SDValue FoldedVOp = SimplifyVBinOp(N);
5277     if (FoldedVOp.getNode()) return FoldedVOp;
5278   }
5279
5280   // fold (fsub c1, c2) -> c1-c2
5281   if (N0CFP && N1CFP && VT != MVT::ppcf128)
5282     return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, N1);
5283   // fold (fsub A, 0) -> A
5284   if (UnsafeFPMath && N1CFP && N1CFP->getValueAPF().isZero())
5285     return N0;
5286   // fold (fsub 0, B) -> -B
5287   if (UnsafeFPMath && N0CFP && N0CFP->getValueAPF().isZero()) {
5288     if (isNegatibleForFree(N1, LegalOperations))
5289       return GetNegatedExpression(N1, DAG, LegalOperations);
5290     if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
5291       return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N1);
5292   }
5293   // fold (fsub A, (fneg B)) -> (fadd A, B)
5294   if (isNegatibleForFree(N1, LegalOperations))
5295     return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0,
5296                        GetNegatedExpression(N1, DAG, LegalOperations));
5297
5298   return SDValue();
5299 }
5300
5301 SDValue DAGCombiner::visitFMUL(SDNode *N) {
5302   SDValue N0 = N->getOperand(0);
5303   SDValue N1 = N->getOperand(1);
5304   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5305   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
5306   EVT VT = N->getValueType(0);
5307
5308   // fold vector ops
5309   if (VT.isVector()) {
5310     SDValue FoldedVOp = SimplifyVBinOp(N);
5311     if (FoldedVOp.getNode()) return FoldedVOp;
5312   }
5313
5314   // fold (fmul c1, c2) -> c1*c2
5315   if (N0CFP && N1CFP && VT != MVT::ppcf128)
5316     return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, N1);
5317   // canonicalize constant to RHS
5318   if (N0CFP && !N1CFP)
5319     return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N1, N0);
5320   // fold (fmul A, 0) -> 0
5321   if (UnsafeFPMath && N1CFP && N1CFP->getValueAPF().isZero())
5322     return N1;
5323   // fold (fmul A, 0) -> 0, vector edition.
5324   if (UnsafeFPMath && ISD::isBuildVectorAllZeros(N1.getNode()))
5325     return N1;
5326   // fold (fmul X, 2.0) -> (fadd X, X)
5327   if (N1CFP && N1CFP->isExactlyValue(+2.0))
5328     return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0);
5329   // fold (fmul X, -1.0) -> (fneg X)
5330   if (N1CFP && N1CFP->isExactlyValue(-1.0))
5331     if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
5332       return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0);
5333
5334   // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
5335   if (char LHSNeg = isNegatibleForFree(N0, LegalOperations)) {
5336     if (char RHSNeg = isNegatibleForFree(N1, LegalOperations)) {
5337       // Both can be negated for free, check to see if at least one is cheaper
5338       // negated.
5339       if (LHSNeg == 2 || RHSNeg == 2)
5340         return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5341                            GetNegatedExpression(N0, DAG, LegalOperations),
5342                            GetNegatedExpression(N1, DAG, LegalOperations));
5343     }
5344   }
5345
5346   // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
5347   if (UnsafeFPMath && N1CFP && N0.getOpcode() == ISD::FMUL &&
5348       N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
5349     return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0.getOperand(0),
5350                        DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
5351                                    N0.getOperand(1), N1));
5352
5353   return SDValue();
5354 }
5355
5356 SDValue DAGCombiner::visitFDIV(SDNode *N) {
5357   SDValue N0 = N->getOperand(0);
5358   SDValue N1 = N->getOperand(1);
5359   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5360   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
5361   EVT VT = N->getValueType(0);
5362
5363   // fold vector ops
5364   if (VT.isVector()) {
5365     SDValue FoldedVOp = SimplifyVBinOp(N);
5366     if (FoldedVOp.getNode()) return FoldedVOp;
5367   }
5368
5369   // fold (fdiv c1, c2) -> c1/c2
5370   if (N0CFP && N1CFP && VT != MVT::ppcf128)
5371     return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, N0, N1);
5372
5373
5374   // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
5375   if (char LHSNeg = isNegatibleForFree(N0, LegalOperations)) {
5376     if (char RHSNeg = isNegatibleForFree(N1, LegalOperations)) {
5377       // Both can be negated for free, check to see if at least one is cheaper
5378       // negated.
5379       if (LHSNeg == 2 || RHSNeg == 2)
5380         return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT,
5381                            GetNegatedExpression(N0, DAG, LegalOperations),
5382                            GetNegatedExpression(N1, DAG, LegalOperations));
5383     }
5384   }
5385
5386   return SDValue();
5387 }
5388
5389 SDValue DAGCombiner::visitFREM(SDNode *N) {
5390   SDValue N0 = N->getOperand(0);
5391   SDValue N1 = N->getOperand(1);
5392   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5393   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
5394   EVT VT = N->getValueType(0);
5395
5396   // fold (frem c1, c2) -> fmod(c1,c2)
5397   if (N0CFP && N1CFP && VT != MVT::ppcf128)
5398     return DAG.getNode(ISD::FREM, N->getDebugLoc(), VT, N0, N1);
5399
5400   return SDValue();
5401 }
5402
5403 SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
5404   SDValue N0 = N->getOperand(0);
5405   SDValue N1 = N->getOperand(1);
5406   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5407   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
5408   EVT VT = N->getValueType(0);
5409
5410   if (N0CFP && N1CFP && VT != MVT::ppcf128)  // Constant fold
5411     return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1);
5412
5413   if (N1CFP) {
5414     const APFloat& V = N1CFP->getValueAPF();
5415     // copysign(x, c1) -> fabs(x)       iff ispos(c1)
5416     // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
5417     if (!V.isNegative()) {
5418       if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
5419         return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
5420     } else {
5421       if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
5422         return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
5423                            DAG.getNode(ISD::FABS, N0.getDebugLoc(), VT, N0));
5424     }
5425   }
5426
5427   // copysign(fabs(x), y) -> copysign(x, y)
5428   // copysign(fneg(x), y) -> copysign(x, y)
5429   // copysign(copysign(x,z), y) -> copysign(x, y)
5430   if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
5431       N0.getOpcode() == ISD::FCOPYSIGN)
5432     return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5433                        N0.getOperand(0), N1);
5434
5435   // copysign(x, abs(y)) -> abs(x)
5436   if (N1.getOpcode() == ISD::FABS)
5437     return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
5438
5439   // copysign(x, copysign(y,z)) -> copysign(x, z)
5440   if (N1.getOpcode() == ISD::FCOPYSIGN)
5441     return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5442                        N0, N1.getOperand(1));
5443
5444   // copysign(x, fp_extend(y)) -> copysign(x, y)
5445   // copysign(x, fp_round(y)) -> copysign(x, y)
5446   if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
5447     return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5448                        N0, N1.getOperand(0));
5449
5450   return SDValue();
5451 }
5452
5453 SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
5454   SDValue N0 = N->getOperand(0);
5455   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
5456   EVT VT = N->getValueType(0);
5457   EVT OpVT = N0.getValueType();
5458
5459   // fold (sint_to_fp c1) -> c1fp
5460   if (N0C && OpVT != MVT::ppcf128 &&
5461       // ...but only if the target supports immediate floating-point values
5462       (Level == llvm::Unrestricted ||
5463        TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
5464     return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
5465
5466   // If the input is a legal type, and SINT_TO_FP is not legal on this target,
5467   // but UINT_TO_FP is legal on this target, try to convert.
5468   if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
5469       TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
5470     // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
5471     if (DAG.SignBitIsZero(N0))
5472       return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
5473   }
5474
5475   return SDValue();
5476 }
5477
5478 SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
5479   SDValue N0 = N->getOperand(0);
5480   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
5481   EVT VT = N->getValueType(0);
5482   EVT OpVT = N0.getValueType();
5483
5484   // fold (uint_to_fp c1) -> c1fp
5485   if (N0C && OpVT != MVT::ppcf128 &&
5486       // ...but only if the target supports immediate floating-point values
5487       (Level == llvm::Unrestricted ||
5488        TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
5489     return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
5490
5491   // If the input is a legal type, and UINT_TO_FP is not legal on this target,
5492   // but SINT_TO_FP is legal on this target, try to convert.
5493   if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
5494       TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
5495     // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
5496     if (DAG.SignBitIsZero(N0))
5497       return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
5498   }
5499
5500   return SDValue();
5501 }
5502
5503 SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
5504   SDValue N0 = N->getOperand(0);
5505   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5506   EVT VT = N->getValueType(0);
5507
5508   // fold (fp_to_sint c1fp) -> c1
5509   if (N0CFP)
5510     return DAG.getNode(ISD::FP_TO_SINT, N->getDebugLoc(), VT, N0);
5511
5512   return SDValue();
5513 }
5514
5515 SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
5516   SDValue N0 = N->getOperand(0);
5517   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5518   EVT VT = N->getValueType(0);
5519
5520   // fold (fp_to_uint c1fp) -> c1
5521   if (N0CFP && VT != MVT::ppcf128)
5522     return DAG.getNode(ISD::FP_TO_UINT, N->getDebugLoc(), VT, N0);
5523
5524   return SDValue();
5525 }
5526
5527 SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
5528   SDValue N0 = N->getOperand(0);
5529   SDValue N1 = N->getOperand(1);
5530   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5531   EVT VT = N->getValueType(0);
5532
5533   // fold (fp_round c1fp) -> c1fp
5534   if (N0CFP && N0.getValueType() != MVT::ppcf128)
5535     return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0, N1);
5536
5537   // fold (fp_round (fp_extend x)) -> x
5538   if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
5539     return N0.getOperand(0);
5540
5541   // fold (fp_round (fp_round x)) -> (fp_round x)
5542   if (N0.getOpcode() == ISD::FP_ROUND) {
5543     // This is a value preserving truncation if both round's are.
5544     bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
5545                    N0.getNode()->getConstantOperandVal(1) == 1;
5546     return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0.getOperand(0),
5547                        DAG.getIntPtrConstant(IsTrunc));
5548   }
5549
5550   // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
5551   if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
5552     SDValue Tmp = DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), VT,
5553                               N0.getOperand(0), N1);
5554     AddToWorkList(Tmp.getNode());
5555     return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5556                        Tmp, N0.getOperand(1));
5557   }
5558
5559   return SDValue();
5560 }
5561
5562 SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
5563   SDValue N0 = N->getOperand(0);
5564   EVT VT = N->getValueType(0);
5565   EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
5566   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5567
5568   // fold (fp_round_inreg c1fp) -> c1fp
5569   if (N0CFP && isTypeLegal(EVT)) {
5570     SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
5571     return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, Round);
5572   }
5573
5574   return SDValue();
5575 }
5576
5577 SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
5578   SDValue N0 = N->getOperand(0);
5579   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5580   EVT VT = N->getValueType(0);
5581
5582   // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
5583   if (N->hasOneUse() &&
5584       N->use_begin()->getOpcode() == ISD::FP_ROUND)
5585     return SDValue();
5586
5587   // fold (fp_extend c1fp) -> c1fp
5588   if (N0CFP && VT != MVT::ppcf128)
5589     return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, N0);
5590
5591   // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
5592   // value of X.
5593   if (N0.getOpcode() == ISD::FP_ROUND
5594       && N0.getNode()->getConstantOperandVal(1) == 1) {
5595     SDValue In = N0.getOperand(0);
5596     if (In.getValueType() == VT) return In;
5597     if (VT.bitsLT(In.getValueType()))
5598       return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT,
5599                          In, N0.getOperand(1));
5600     return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, In);
5601   }
5602
5603   // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
5604   if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
5605       ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
5606        TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
5607     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5608     SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
5609                                      LN0->getChain(),
5610                                      LN0->getBasePtr(), LN0->getPointerInfo(),
5611                                      N0.getValueType(),
5612                                      LN0->isVolatile(), LN0->isNonTemporal(),
5613                                      LN0->getAlignment());
5614     CombineTo(N, ExtLoad);
5615     CombineTo(N0.getNode(),
5616               DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(),
5617                           N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
5618               ExtLoad.getValue(1));
5619     return SDValue(N, 0);   // Return N so it doesn't get rechecked!
5620   }
5621
5622   return SDValue();
5623 }
5624
5625 SDValue DAGCombiner::visitFNEG(SDNode *N) {
5626   SDValue N0 = N->getOperand(0);
5627   EVT VT = N->getValueType(0);
5628
5629   if (isNegatibleForFree(N0, LegalOperations))
5630     return GetNegatedExpression(N0, DAG, LegalOperations);
5631
5632   // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
5633   // constant pool values.
5634   if (N0.getOpcode() == ISD::BITCAST &&
5635       !VT.isVector() &&
5636       N0.getNode()->hasOneUse() &&
5637       N0.getOperand(0).getValueType().isInteger()) {
5638     SDValue Int = N0.getOperand(0);
5639     EVT IntVT = Int.getValueType();
5640     if (IntVT.isInteger() && !IntVT.isVector()) {
5641       Int = DAG.getNode(ISD::XOR, N0.getDebugLoc(), IntVT, Int,
5642               DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
5643       AddToWorkList(Int.getNode());
5644       return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
5645                          VT, Int);
5646     }
5647   }
5648
5649   return SDValue();
5650 }
5651
5652 SDValue DAGCombiner::visitFABS(SDNode *N) {
5653   SDValue N0 = N->getOperand(0);
5654   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5655   EVT VT = N->getValueType(0);
5656
5657   // fold (fabs c1) -> fabs(c1)
5658   if (N0CFP && VT != MVT::ppcf128)
5659     return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
5660   // fold (fabs (fabs x)) -> (fabs x)
5661   if (N0.getOpcode() == ISD::FABS)
5662     return N->getOperand(0);
5663   // fold (fabs (fneg x)) -> (fabs x)
5664   // fold (fabs (fcopysign x, y)) -> (fabs x)
5665   if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
5666     return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0.getOperand(0));
5667
5668   // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
5669   // constant pool values.
5670   if (N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
5671       N0.getOperand(0).getValueType().isInteger() &&
5672       !N0.getOperand(0).getValueType().isVector()) {
5673     SDValue Int = N0.getOperand(0);
5674     EVT IntVT = Int.getValueType();
5675     if (IntVT.isInteger() && !IntVT.isVector()) {
5676       Int = DAG.getNode(ISD::AND, N0.getDebugLoc(), IntVT, Int,
5677              DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
5678       AddToWorkList(Int.getNode());
5679       return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
5680                          N->getValueType(0), Int);
5681     }
5682   }
5683
5684   return SDValue();
5685 }
5686
5687 SDValue DAGCombiner::visitBRCOND(SDNode *N) {
5688   SDValue Chain = N->getOperand(0);
5689   SDValue N1 = N->getOperand(1);
5690   SDValue N2 = N->getOperand(2);
5691
5692   // If N is a constant we could fold this into a fallthrough or unconditional
5693   // branch. However that doesn't happen very often in normal code, because
5694   // Instcombine/SimplifyCFG should have handled the available opportunities.
5695   // If we did this folding here, it would be necessary to update the
5696   // MachineBasicBlock CFG, which is awkward.
5697
5698   // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
5699   // on the target.
5700   if (N1.getOpcode() == ISD::SETCC &&
5701       TLI.isOperationLegalOrCustom(ISD::BR_CC, MVT::Other)) {
5702     return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
5703                        Chain, N1.getOperand(2),
5704                        N1.getOperand(0), N1.getOperand(1), N2);
5705   }
5706
5707   if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
5708       ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
5709        (N1.getOperand(0).hasOneUse() &&
5710         N1.getOperand(0).getOpcode() == ISD::SRL))) {
5711     SDNode *Trunc = 0;
5712     if (N1.getOpcode() == ISD::TRUNCATE) {
5713       // Look pass the truncate.
5714       Trunc = N1.getNode();
5715       N1 = N1.getOperand(0);
5716     }
5717
5718     // Match this pattern so that we can generate simpler code:
5719     //
5720     //   %a = ...
5721     //   %b = and i32 %a, 2
5722     //   %c = srl i32 %b, 1
5723     //   brcond i32 %c ...
5724     //
5725     // into
5726     //
5727     //   %a = ...
5728     //   %b = and i32 %a, 2
5729     //   %c = setcc eq %b, 0
5730     //   brcond %c ...
5731     //
5732     // This applies only when the AND constant value has one bit set and the
5733     // SRL constant is equal to the log2 of the AND constant. The back-end is
5734     // smart enough to convert the result into a TEST/JMP sequence.
5735     SDValue Op0 = N1.getOperand(0);
5736     SDValue Op1 = N1.getOperand(1);
5737
5738     if (Op0.getOpcode() == ISD::AND &&
5739         Op1.getOpcode() == ISD::Constant) {
5740       SDValue AndOp1 = Op0.getOperand(1);
5741
5742       if (AndOp1.getOpcode() == ISD::Constant) {
5743         const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
5744
5745         if (AndConst.isPowerOf2() &&
5746             cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
5747           SDValue SetCC =
5748             DAG.getSetCC(N->getDebugLoc(),
5749                          TLI.getSetCCResultType(Op0.getValueType()),
5750                          Op0, DAG.getConstant(0, Op0.getValueType()),
5751                          ISD::SETNE);
5752
5753           SDValue NewBRCond = DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
5754                                           MVT::Other, Chain, SetCC, N2);
5755           // Don't add the new BRCond into the worklist or else SimplifySelectCC
5756           // will convert it back to (X & C1) >> C2.
5757           CombineTo(N, NewBRCond, false);
5758           // Truncate is dead.
5759           if (Trunc) {
5760             removeFromWorkList(Trunc);
5761             DAG.DeleteNode(Trunc);
5762           }
5763           // Replace the uses of SRL with SETCC
5764           WorkListRemover DeadNodes(*this);
5765           DAG.ReplaceAllUsesOfValueWith(N1, SetCC, &DeadNodes);
5766           removeFromWorkList(N1.getNode());
5767           DAG.DeleteNode(N1.getNode());
5768           return SDValue(N, 0);   // Return N so it doesn't get rechecked!
5769         }
5770       }
5771     }
5772
5773     if (Trunc)
5774       // Restore N1 if the above transformation doesn't match.
5775       N1 = N->getOperand(1);
5776   }
5777
5778   // Transform br(xor(x, y)) -> br(x != y)
5779   // Transform br(xor(xor(x,y), 1)) -> br (x == y)
5780   if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
5781     SDNode *TheXor = N1.getNode();
5782     SDValue Op0 = TheXor->getOperand(0);
5783     SDValue Op1 = TheXor->getOperand(1);
5784     if (Op0.getOpcode() == Op1.getOpcode()) {
5785       // Avoid missing important xor optimizations.
5786       SDValue Tmp = visitXOR(TheXor);
5787       if (Tmp.getNode() && Tmp.getNode() != TheXor) {
5788         DEBUG(dbgs() << "\nReplacing.8 ";
5789               TheXor->dump(&DAG);
5790               dbgs() << "\nWith: ";
5791               Tmp.getNode()->dump(&DAG);
5792               dbgs() << '\n');
5793         WorkListRemover DeadNodes(*this);
5794         DAG.ReplaceAllUsesOfValueWith(N1, Tmp, &DeadNodes);
5795         removeFromWorkList(TheXor);
5796         DAG.DeleteNode(TheXor);
5797         return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
5798                            MVT::Other, Chain, Tmp, N2);
5799       }
5800     }
5801
5802     if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
5803       bool Equal = false;
5804       if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
5805         if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
5806             Op0.getOpcode() == ISD::XOR) {
5807           TheXor = Op0.getNode();
5808           Equal = true;
5809         }
5810
5811       EVT SetCCVT = N1.getValueType();
5812       if (LegalTypes)
5813         SetCCVT = TLI.getSetCCResultType(SetCCVT);
5814       SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(),
5815                                    SetCCVT,
5816                                    Op0, Op1,
5817                                    Equal ? ISD::SETEQ : ISD::SETNE);
5818       // Replace the uses of XOR with SETCC
5819       WorkListRemover DeadNodes(*this);
5820       DAG.ReplaceAllUsesOfValueWith(N1, SetCC, &DeadNodes);
5821       removeFromWorkList(N1.getNode());
5822       DAG.DeleteNode(N1.getNode());
5823       return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
5824                          MVT::Other, Chain, SetCC, N2);
5825     }
5826   }
5827
5828   return SDValue();
5829 }
5830
5831 // Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
5832 //
5833 SDValue DAGCombiner::visitBR_CC(SDNode *N) {
5834   CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
5835   SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
5836
5837   // If N is a constant we could fold this into a fallthrough or unconditional
5838   // branch. However that doesn't happen very often in normal code, because
5839   // Instcombine/SimplifyCFG should have handled the available opportunities.
5840   // If we did this folding here, it would be necessary to update the
5841   // MachineBasicBlock CFG, which is awkward.
5842
5843   // Use SimplifySetCC to simplify SETCC's.
5844   SDValue Simp = SimplifySetCC(TLI.getSetCCResultType(CondLHS.getValueType()),
5845                                CondLHS, CondRHS, CC->get(), N->getDebugLoc(),
5846                                false);
5847   if (Simp.getNode()) AddToWorkList(Simp.getNode());
5848
5849   // fold to a simpler setcc
5850   if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
5851     return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
5852                        N->getOperand(0), Simp.getOperand(2),
5853                        Simp.getOperand(0), Simp.getOperand(1),
5854                        N->getOperand(4));
5855
5856   return SDValue();
5857 }
5858
5859 /// CombineToPreIndexedLoadStore - Try turning a load / store into a
5860 /// pre-indexed load / store when the base pointer is an add or subtract
5861 /// and it has other uses besides the load / store. After the
5862 /// transformation, the new indexed load / store has effectively folded
5863 /// the add / subtract in and all of its other uses are redirected to the
5864 /// new load / store.
5865 bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
5866   if (!LegalOperations)
5867     return false;
5868
5869   bool isLoad = true;
5870   SDValue Ptr;
5871   EVT VT;
5872   if (LoadSDNode *LD  = dyn_cast<LoadSDNode>(N)) {
5873     if (LD->isIndexed())
5874       return false;
5875     VT = LD->getMemoryVT();
5876     if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
5877         !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
5878       return false;
5879     Ptr = LD->getBasePtr();
5880   } else if (StoreSDNode *ST  = dyn_cast<StoreSDNode>(N)) {
5881     if (ST->isIndexed())
5882       return false;
5883     VT = ST->getMemoryVT();
5884     if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
5885         !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
5886       return false;
5887     Ptr = ST->getBasePtr();
5888     isLoad = false;
5889   } else {
5890     return false;
5891   }
5892
5893   // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
5894   // out.  There is no reason to make this a preinc/predec.
5895   if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
5896       Ptr.getNode()->hasOneUse())
5897     return false;
5898
5899   // Ask the target to do addressing mode selection.
5900   SDValue BasePtr;
5901   SDValue Offset;
5902   ISD::MemIndexedMode AM = ISD::UNINDEXED;
5903   if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
5904     return false;
5905   // Don't create a indexed load / store with zero offset.
5906   if (isa<ConstantSDNode>(Offset) &&
5907       cast<ConstantSDNode>(Offset)->isNullValue())
5908     return false;
5909
5910   // Try turning it into a pre-indexed load / store except when:
5911   // 1) The new base ptr is a frame index.
5912   // 2) If N is a store and the new base ptr is either the same as or is a
5913   //    predecessor of the value being stored.
5914   // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
5915   //    that would create a cycle.
5916   // 4) All uses are load / store ops that use it as old base ptr.
5917
5918   // Check #1.  Preinc'ing a frame index would require copying the stack pointer
5919   // (plus the implicit offset) to a register to preinc anyway.
5920   if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
5921     return false;
5922
5923   // Check #2.
5924   if (!isLoad) {
5925     SDValue Val = cast<StoreSDNode>(N)->getValue();
5926     if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
5927       return false;
5928   }
5929
5930   // Now check for #3 and #4.
5931   bool RealUse = false;
5932
5933   // Caches for hasPredecessorHelper
5934   SmallPtrSet<const SDNode *, 32> Visited;
5935   SmallVector<const SDNode *, 16> Worklist;
5936
5937   for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
5938          E = Ptr.getNode()->use_end(); I != E; ++I) {
5939     SDNode *Use = *I;
5940     if (Use == N)
5941       continue;
5942     if (N->hasPredecessorHelper(Use, Visited, Worklist))
5943       return false;
5944
5945     if (!((Use->getOpcode() == ISD::LOAD &&
5946            cast<LoadSDNode>(Use)->getBasePtr() == Ptr) ||
5947           (Use->getOpcode() == ISD::STORE &&
5948            cast<StoreSDNode>(Use)->getBasePtr() == Ptr)))
5949       RealUse = true;
5950   }
5951
5952   if (!RealUse)
5953     return false;
5954
5955   SDValue Result;
5956   if (isLoad)
5957     Result = DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
5958                                 BasePtr, Offset, AM);
5959   else
5960     Result = DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
5961                                  BasePtr, Offset, AM);
5962   ++PreIndexedNodes;
5963   ++NodesCombined;
5964   DEBUG(dbgs() << "\nReplacing.4 ";
5965         N->dump(&DAG);
5966         dbgs() << "\nWith: ";
5967         Result.getNode()->dump(&DAG);
5968         dbgs() << '\n');
5969   WorkListRemover DeadNodes(*this);
5970   if (isLoad) {
5971     DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0),
5972                                   &DeadNodes);
5973     DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2),
5974                                   &DeadNodes);
5975   } else {
5976     DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1),
5977                                   &DeadNodes);
5978   }
5979
5980   // Finally, since the node is now dead, remove it from the graph.
5981   DAG.DeleteNode(N);
5982
5983   // Replace the uses of Ptr with uses of the updated base value.
5984   DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0),
5985                                 &DeadNodes);
5986   removeFromWorkList(Ptr.getNode());
5987   DAG.DeleteNode(Ptr.getNode());
5988
5989   return true;
5990 }
5991
5992 /// CombineToPostIndexedLoadStore - Try to combine a load / store with a
5993 /// add / sub of the base pointer node into a post-indexed load / store.
5994 /// The transformation folded the add / subtract into the new indexed
5995 /// load / store effectively and all of its uses are redirected to the
5996 /// new load / store.
5997 bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
5998   if (!LegalOperations)
5999     return false;
6000
6001   bool isLoad = true;
6002   SDValue Ptr;
6003   EVT VT;
6004   if (LoadSDNode *LD  = dyn_cast<LoadSDNode>(N)) {
6005     if (LD->isIndexed())
6006       return false;
6007     VT = LD->getMemoryVT();
6008     if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
6009         !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
6010       return false;
6011     Ptr = LD->getBasePtr();
6012   } else if (StoreSDNode *ST  = dyn_cast<StoreSDNode>(N)) {
6013     if (ST->isIndexed())
6014       return false;
6015     VT = ST->getMemoryVT();
6016     if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
6017         !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
6018       return false;
6019     Ptr = ST->getBasePtr();
6020     isLoad = false;
6021   } else {
6022     return false;
6023   }
6024
6025   if (Ptr.getNode()->hasOneUse())
6026     return false;
6027
6028   for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6029          E = Ptr.getNode()->use_end(); I != E; ++I) {
6030     SDNode *Op = *I;
6031     if (Op == N ||
6032         (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
6033       continue;
6034
6035     SDValue BasePtr;
6036     SDValue Offset;
6037     ISD::MemIndexedMode AM = ISD::UNINDEXED;
6038     if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
6039       // Don't create a indexed load / store with zero offset.
6040       if (isa<ConstantSDNode>(Offset) &&
6041           cast<ConstantSDNode>(Offset)->isNullValue())
6042         continue;
6043
6044       // Try turning it into a post-indexed load / store except when
6045       // 1) All uses are load / store ops that use it as base ptr.
6046       // 2) Op must be independent of N, i.e. Op is neither a predecessor
6047       //    nor a successor of N. Otherwise, if Op is folded that would
6048       //    create a cycle.
6049
6050       if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
6051         continue;
6052
6053       // Check for #1.
6054       bool TryNext = false;
6055       for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
6056              EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
6057         SDNode *Use = *II;
6058         if (Use == Ptr.getNode())
6059           continue;
6060
6061         // If all the uses are load / store addresses, then don't do the
6062         // transformation.
6063         if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
6064           bool RealUse = false;
6065           for (SDNode::use_iterator III = Use->use_begin(),
6066                  EEE = Use->use_end(); III != EEE; ++III) {
6067             SDNode *UseUse = *III;
6068             if (!((UseUse->getOpcode() == ISD::LOAD &&
6069                    cast<LoadSDNode>(UseUse)->getBasePtr().getNode() == Use) ||
6070                   (UseUse->getOpcode() == ISD::STORE &&
6071                    cast<StoreSDNode>(UseUse)->getBasePtr().getNode() == Use)))
6072               RealUse = true;
6073           }
6074
6075           if (!RealUse) {
6076             TryNext = true;
6077             break;
6078           }
6079         }
6080       }
6081
6082       if (TryNext)
6083         continue;
6084
6085       // Check for #2
6086       if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
6087         SDValue Result = isLoad
6088           ? DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6089                                BasePtr, Offset, AM)
6090           : DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6091                                 BasePtr, Offset, AM);
6092         ++PostIndexedNodes;
6093         ++NodesCombined;
6094         DEBUG(dbgs() << "\nReplacing.5 ";
6095               N->dump(&DAG);
6096               dbgs() << "\nWith: ";
6097               Result.getNode()->dump(&DAG);
6098               dbgs() << '\n');
6099         WorkListRemover DeadNodes(*this);
6100         if (isLoad) {
6101           DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0),
6102                                         &DeadNodes);
6103           DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2),
6104                                         &DeadNodes);
6105         } else {
6106           DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1),
6107                                         &DeadNodes);
6108         }
6109
6110         // Finally, since the node is now dead, remove it from the graph.
6111         DAG.DeleteNode(N);
6112
6113         // Replace the uses of Use with uses of the updated base value.
6114         DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
6115                                       Result.getValue(isLoad ? 1 : 0),
6116                                       &DeadNodes);
6117         removeFromWorkList(Op);
6118         DAG.DeleteNode(Op);
6119         return true;
6120       }
6121     }
6122   }
6123
6124   return false;
6125 }
6126
6127 SDValue DAGCombiner::visitLOAD(SDNode *N) {
6128   LoadSDNode *LD  = cast<LoadSDNode>(N);
6129   SDValue Chain = LD->getChain();
6130   SDValue Ptr   = LD->getBasePtr();
6131
6132   // If load is not volatile and there are no uses of the loaded value (and
6133   // the updated indexed value in case of indexed loads), change uses of the
6134   // chain value into uses of the chain input (i.e. delete the dead load).
6135   if (!LD->isVolatile()) {
6136     if (N->getValueType(1) == MVT::Other) {
6137       // Unindexed loads.
6138       if (N->hasNUsesOfValue(0, 0)) {
6139         // It's not safe to use the two value CombineTo variant here. e.g.
6140         // v1, chain2 = load chain1, loc
6141         // v2, chain3 = load chain2, loc
6142         // v3         = add v2, c
6143         // Now we replace use of chain2 with chain1.  This makes the second load
6144         // isomorphic to the one we are deleting, and thus makes this load live.
6145         DEBUG(dbgs() << "\nReplacing.6 ";
6146               N->dump(&DAG);
6147               dbgs() << "\nWith chain: ";
6148               Chain.getNode()->dump(&DAG);
6149               dbgs() << "\n");
6150         WorkListRemover DeadNodes(*this);
6151         DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain, &DeadNodes);
6152
6153         if (N->use_empty()) {
6154           removeFromWorkList(N);
6155           DAG.DeleteNode(N);
6156         }
6157
6158         return SDValue(N, 0);   // Return N so it doesn't get rechecked!
6159       }
6160     } else {
6161       // Indexed loads.
6162       assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
6163       if (N->hasNUsesOfValue(0, 0) && N->hasNUsesOfValue(0, 1)) {
6164         SDValue Undef = DAG.getUNDEF(N->getValueType(0));
6165         DEBUG(dbgs() << "\nReplacing.7 ";
6166               N->dump(&DAG);
6167               dbgs() << "\nWith: ";
6168               Undef.getNode()->dump(&DAG);
6169               dbgs() << " and 2 other values\n");
6170         WorkListRemover DeadNodes(*this);
6171         DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef, &DeadNodes);
6172         DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
6173                                       DAG.getUNDEF(N->getValueType(1)),
6174                                       &DeadNodes);
6175         DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain, &DeadNodes);
6176         removeFromWorkList(N);
6177         DAG.DeleteNode(N);
6178         return SDValue(N, 0);   // Return N so it doesn't get rechecked!
6179       }
6180     }
6181   }
6182
6183   // If this load is directly stored, replace the load value with the stored
6184   // value.
6185   // TODO: Handle store large -> read small portion.
6186   // TODO: Handle TRUNCSTORE/LOADEXT
6187   if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
6188     if (ISD::isNON_TRUNCStore(Chain.getNode())) {
6189       StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
6190       if (PrevST->getBasePtr() == Ptr &&
6191           PrevST->getValue().getValueType() == N->getValueType(0))
6192       return CombineTo(N, Chain.getOperand(1), Chain);
6193     }
6194   }
6195
6196   // Try to infer better alignment information than the load already has.
6197   if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
6198     if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
6199       if (Align > LD->getAlignment())
6200         return DAG.getExtLoad(LD->getExtensionType(), N->getDebugLoc(),
6201                               LD->getValueType(0),
6202                               Chain, Ptr, LD->getPointerInfo(),
6203                               LD->getMemoryVT(),
6204                               LD->isVolatile(), LD->isNonTemporal(), Align);
6205     }
6206   }
6207
6208   if (CombinerAA) {
6209     // Walk up chain skipping non-aliasing memory nodes.
6210     SDValue BetterChain = FindBetterChain(N, Chain);
6211
6212     // If there is a better chain.
6213     if (Chain != BetterChain) {
6214       SDValue ReplLoad;
6215
6216       // Replace the chain to void dependency.
6217       if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
6218         ReplLoad = DAG.getLoad(N->getValueType(0), LD->getDebugLoc(),
6219                                BetterChain, Ptr, LD->getPointerInfo(),
6220                                LD->isVolatile(), LD->isNonTemporal(),
6221                                LD->getAlignment());
6222       } else {
6223         ReplLoad = DAG.getExtLoad(LD->getExtensionType(), LD->getDebugLoc(),
6224                                   LD->getValueType(0),
6225                                   BetterChain, Ptr, LD->getPointerInfo(),
6226                                   LD->getMemoryVT(),
6227                                   LD->isVolatile(),
6228                                   LD->isNonTemporal(),
6229                                   LD->getAlignment());
6230       }
6231
6232       // Create token factor to keep old chain connected.
6233       SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
6234                                   MVT::Other, Chain, ReplLoad.getValue(1));
6235
6236       // Make sure the new and old chains are cleaned up.
6237       AddToWorkList(Token.getNode());
6238
6239       // Replace uses with load result and token factor. Don't add users
6240       // to work list.
6241       return CombineTo(N, ReplLoad.getValue(0), Token, false);
6242     }
6243   }
6244
6245   // Try transforming N to an indexed load.
6246   if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
6247     return SDValue(N, 0);
6248
6249   return SDValue();
6250 }
6251
6252 /// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
6253 /// load is having specific bytes cleared out.  If so, return the byte size
6254 /// being masked out and the shift amount.
6255 static std::pair<unsigned, unsigned>
6256 CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
6257   std::pair<unsigned, unsigned> Result(0, 0);
6258
6259   // Check for the structure we're looking for.
6260   if (V->getOpcode() != ISD::AND ||
6261       !isa<ConstantSDNode>(V->getOperand(1)) ||
6262       !ISD::isNormalLoad(V->getOperand(0).getNode()))
6263     return Result;
6264
6265   // Check the chain and pointer.
6266   LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
6267   if (LD->getBasePtr() != Ptr) return Result;  // Not from same pointer.
6268
6269   // The store should be chained directly to the load or be an operand of a
6270   // tokenfactor.
6271   if (LD == Chain.getNode())
6272     ; // ok.
6273   else if (Chain->getOpcode() != ISD::TokenFactor)
6274     return Result; // Fail.
6275   else {
6276     bool isOk = false;
6277     for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
6278       if (Chain->getOperand(i).getNode() == LD) {
6279         isOk = true;
6280         break;
6281       }
6282     if (!isOk) return Result;
6283   }
6284
6285   // This only handles simple types.
6286   if (V.getValueType() != MVT::i16 &&
6287       V.getValueType() != MVT::i32 &&
6288       V.getValueType() != MVT::i64)
6289     return Result;
6290
6291   // Check the constant mask.  Invert it so that the bits being masked out are
6292   // 0 and the bits being kept are 1.  Use getSExtValue so that leading bits
6293   // follow the sign bit for uniformity.
6294   uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
6295   unsigned NotMaskLZ = CountLeadingZeros_64(NotMask);
6296   if (NotMaskLZ & 7) return Result;  // Must be multiple of a byte.
6297   unsigned NotMaskTZ = CountTrailingZeros_64(NotMask);
6298   if (NotMaskTZ & 7) return Result;  // Must be multiple of a byte.
6299   if (NotMaskLZ == 64) return Result;  // All zero mask.
6300
6301   // See if we have a continuous run of bits.  If so, we have 0*1+0*
6302   if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
6303     return Result;
6304
6305   // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
6306   if (V.getValueType() != MVT::i64 && NotMaskLZ)
6307     NotMaskLZ -= 64-V.getValueSizeInBits();
6308
6309   unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
6310   switch (MaskedBytes) {
6311   case 1:
6312   case 2:
6313   case 4: break;
6314   default: return Result; // All one mask, or 5-byte mask.
6315   }
6316
6317   // Verify that the first bit starts at a multiple of mask so that the access
6318   // is aligned the same as the access width.
6319   if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
6320
6321   Result.first = MaskedBytes;
6322   Result.second = NotMaskTZ/8;
6323   return Result;
6324 }
6325
6326
6327 /// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
6328 /// provides a value as specified by MaskInfo.  If so, replace the specified
6329 /// store with a narrower store of truncated IVal.
6330 static SDNode *
6331 ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
6332                                 SDValue IVal, StoreSDNode *St,
6333                                 DAGCombiner *DC) {
6334   unsigned NumBytes = MaskInfo.first;
6335   unsigned ByteShift = MaskInfo.second;
6336   SelectionDAG &DAG = DC->getDAG();
6337
6338   // Check to see if IVal is all zeros in the part being masked in by the 'or'
6339   // that uses this.  If not, this is not a replacement.
6340   APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
6341                                   ByteShift*8, (ByteShift+NumBytes)*8);
6342   if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
6343
6344   // Check that it is legal on the target to do this.  It is legal if the new
6345   // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
6346   // legalization.
6347   MVT VT = MVT::getIntegerVT(NumBytes*8);
6348   if (!DC->isTypeLegal(VT))
6349     return 0;
6350
6351   // Okay, we can do this!  Replace the 'St' store with a store of IVal that is
6352   // shifted by ByteShift and truncated down to NumBytes.
6353   if (ByteShift)
6354     IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal.getValueType(), IVal,
6355                        DAG.getConstant(ByteShift*8,
6356                                     DC->getShiftAmountTy(IVal.getValueType())));
6357
6358   // Figure out the offset for the store and the alignment of the access.
6359   unsigned StOffset;
6360   unsigned NewAlign = St->getAlignment();
6361
6362   if (DAG.getTargetLoweringInfo().isLittleEndian())
6363     StOffset = ByteShift;
6364   else
6365     StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
6366
6367   SDValue Ptr = St->getBasePtr();
6368   if (StOffset) {
6369     Ptr = DAG.getNode(ISD::ADD, IVal->getDebugLoc(), Ptr.getValueType(),
6370                       Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
6371     NewAlign = MinAlign(NewAlign, StOffset);
6372   }
6373
6374   // Truncate down to the new size.
6375   IVal = DAG.getNode(ISD::TRUNCATE, IVal->getDebugLoc(), VT, IVal);
6376
6377   ++OpsNarrowed;
6378   return DAG.getStore(St->getChain(), St->getDebugLoc(), IVal, Ptr,
6379                       St->getPointerInfo().getWithOffset(StOffset),
6380                       false, false, NewAlign).getNode();
6381 }
6382
6383
6384 /// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
6385 /// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
6386 /// of the loaded bits, try narrowing the load and store if it would end up
6387 /// being a win for performance or code size.
6388 SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
6389   StoreSDNode *ST  = cast<StoreSDNode>(N);
6390   if (ST->isVolatile())
6391     return SDValue();
6392
6393   SDValue Chain = ST->getChain();
6394   SDValue Value = ST->getValue();
6395   SDValue Ptr   = ST->getBasePtr();
6396   EVT VT = Value.getValueType();
6397
6398   if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
6399     return SDValue();
6400
6401   unsigned Opc = Value.getOpcode();
6402
6403   // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
6404   // is a byte mask indicating a consecutive number of bytes, check to see if
6405   // Y is known to provide just those bytes.  If so, we try to replace the
6406   // load + replace + store sequence with a single (narrower) store, which makes
6407   // the load dead.
6408   if (Opc == ISD::OR) {
6409     std::pair<unsigned, unsigned> MaskedLoad;
6410     MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
6411     if (MaskedLoad.first)
6412       if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
6413                                                   Value.getOperand(1), ST,this))
6414         return SDValue(NewST, 0);
6415
6416     // Or is commutative, so try swapping X and Y.
6417     MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
6418     if (MaskedLoad.first)
6419       if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
6420                                                   Value.getOperand(0), ST,this))
6421         return SDValue(NewST, 0);
6422   }
6423
6424   if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
6425       Value.getOperand(1).getOpcode() != ISD::Constant)
6426     return SDValue();
6427
6428   SDValue N0 = Value.getOperand(0);
6429   if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
6430       Chain == SDValue(N0.getNode(), 1)) {
6431     LoadSDNode *LD = cast<LoadSDNode>(N0);
6432     if (LD->getBasePtr() != Ptr ||
6433         LD->getPointerInfo().getAddrSpace() !=
6434         ST->getPointerInfo().getAddrSpace())
6435       return SDValue();
6436
6437     // Find the type to narrow it the load / op / store to.
6438     SDValue N1 = Value.getOperand(1);
6439     unsigned BitWidth = N1.getValueSizeInBits();
6440     APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
6441     if (Opc == ISD::AND)
6442       Imm ^= APInt::getAllOnesValue(BitWidth);
6443     if (Imm == 0 || Imm.isAllOnesValue())
6444       return SDValue();
6445     unsigned ShAmt = Imm.countTrailingZeros();
6446     unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
6447     unsigned NewBW = NextPowerOf2(MSB - ShAmt);
6448     EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
6449     while (NewBW < BitWidth &&
6450            !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
6451              TLI.isNarrowingProfitable(VT, NewVT))) {
6452       NewBW = NextPowerOf2(NewBW);
6453       NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
6454     }
6455     if (NewBW >= BitWidth)
6456       return SDValue();
6457
6458     // If the lsb changed does not start at the type bitwidth boundary,
6459     // start at the previous one.
6460     if (ShAmt % NewBW)
6461       ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
6462     APInt Mask = APInt::getBitsSet(BitWidth, ShAmt, ShAmt + NewBW);
6463     if ((Imm & Mask) == Imm) {
6464       APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
6465       if (Opc == ISD::AND)
6466         NewImm ^= APInt::getAllOnesValue(NewBW);
6467       uint64_t PtrOff = ShAmt / 8;
6468       // For big endian targets, we need to adjust the offset to the pointer to
6469       // load the correct bytes.
6470       if (TLI.isBigEndian())
6471         PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
6472
6473       unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
6474       const Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
6475       if (NewAlign < TLI.getTargetData()->getABITypeAlignment(NewVTTy))
6476         return SDValue();
6477
6478       SDValue NewPtr = DAG.getNode(ISD::ADD, LD->getDebugLoc(),
6479                                    Ptr.getValueType(), Ptr,
6480                                    DAG.getConstant(PtrOff, Ptr.getValueType()));
6481       SDValue NewLD = DAG.getLoad(NewVT, N0.getDebugLoc(),
6482                                   LD->getChain(), NewPtr,
6483                                   LD->getPointerInfo().getWithOffset(PtrOff),
6484                                   LD->isVolatile(), LD->isNonTemporal(),
6485                                   NewAlign);
6486       SDValue NewVal = DAG.getNode(Opc, Value.getDebugLoc(), NewVT, NewLD,
6487                                    DAG.getConstant(NewImm, NewVT));
6488       SDValue NewST = DAG.getStore(Chain, N->getDebugLoc(),
6489                                    NewVal, NewPtr,
6490                                    ST->getPointerInfo().getWithOffset(PtrOff),
6491                                    false, false, NewAlign);
6492
6493       AddToWorkList(NewPtr.getNode());
6494       AddToWorkList(NewLD.getNode());
6495       AddToWorkList(NewVal.getNode());
6496       WorkListRemover DeadNodes(*this);
6497       DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1),
6498                                     &DeadNodes);
6499       ++OpsNarrowed;
6500       return NewST;
6501     }
6502   }
6503
6504   return SDValue();
6505 }
6506
6507 /// TransformFPLoadStorePair - For a given floating point load / store pair,
6508 /// if the load value isn't used by any other operations, then consider
6509 /// transforming the pair to integer load / store operations if the target
6510 /// deems the transformation profitable.
6511 SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
6512   StoreSDNode *ST  = cast<StoreSDNode>(N);
6513   SDValue Chain = ST->getChain();
6514   SDValue Value = ST->getValue();
6515   if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
6516       Value.hasOneUse() &&
6517       Chain == SDValue(Value.getNode(), 1)) {
6518     LoadSDNode *LD = cast<LoadSDNode>(Value);
6519     EVT VT = LD->getMemoryVT();
6520     if (!VT.isFloatingPoint() ||
6521         VT != ST->getMemoryVT() ||
6522         LD->isNonTemporal() ||
6523         ST->isNonTemporal() ||
6524         LD->getPointerInfo().getAddrSpace() != 0 ||
6525         ST->getPointerInfo().getAddrSpace() != 0)
6526       return SDValue();
6527
6528     EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
6529     if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
6530         !TLI.isOperationLegal(ISD::STORE, IntVT) ||
6531         !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
6532         !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
6533       return SDValue();
6534
6535     unsigned LDAlign = LD->getAlignment();
6536     unsigned STAlign = ST->getAlignment();
6537     const Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
6538     unsigned ABIAlign = TLI.getTargetData()->getABITypeAlignment(IntVTTy);
6539     if (LDAlign < ABIAlign || STAlign < ABIAlign)
6540       return SDValue();
6541
6542     SDValue NewLD = DAG.getLoad(IntVT, Value.getDebugLoc(),
6543                                 LD->getChain(), LD->getBasePtr(),
6544                                 LD->getPointerInfo(),
6545                                 false, false, LDAlign);
6546
6547     SDValue NewST = DAG.getStore(NewLD.getValue(1), N->getDebugLoc(),
6548                                  NewLD, ST->getBasePtr(),
6549                                  ST->getPointerInfo(),
6550                                  false, false, STAlign);
6551
6552     AddToWorkList(NewLD.getNode());
6553     AddToWorkList(NewST.getNode());
6554     WorkListRemover DeadNodes(*this);
6555     DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1),
6556                                   &DeadNodes);
6557     ++LdStFP2Int;
6558     return NewST;
6559   }
6560
6561   return SDValue();
6562 }
6563
6564 SDValue DAGCombiner::visitSTORE(SDNode *N) {
6565   StoreSDNode *ST  = cast<StoreSDNode>(N);
6566   SDValue Chain = ST->getChain();
6567   SDValue Value = ST->getValue();
6568   SDValue Ptr   = ST->getBasePtr();
6569
6570   // If this is a store of a bit convert, store the input value if the
6571   // resultant store does not need a higher alignment than the original.
6572   if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
6573       ST->isUnindexed()) {
6574     unsigned OrigAlign = ST->getAlignment();
6575     EVT SVT = Value.getOperand(0).getValueType();
6576     unsigned Align = TLI.getTargetData()->
6577       getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
6578     if (Align <= OrigAlign &&
6579         ((!LegalOperations && !ST->isVolatile()) ||
6580          TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
6581       return DAG.getStore(Chain, N->getDebugLoc(), Value.getOperand(0),
6582                           Ptr, ST->getPointerInfo(), ST->isVolatile(),
6583                           ST->isNonTemporal(), OrigAlign);
6584   }
6585
6586   // Turn 'store undef, Ptr' -> nothing.
6587   if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
6588     return Chain;
6589
6590   // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
6591   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
6592     // NOTE: If the original store is volatile, this transform must not increase
6593     // the number of stores.  For example, on x86-32 an f64 can be stored in one
6594     // processor operation but an i64 (which is not legal) requires two.  So the
6595     // transform should not be done in this case.
6596     if (Value.getOpcode() != ISD::TargetConstantFP) {
6597       SDValue Tmp;
6598       switch (CFP->getValueType(0).getSimpleVT().SimpleTy) {
6599       default: llvm_unreachable("Unknown FP type");
6600       case MVT::f80:    // We don't do this for these yet.
6601       case MVT::f128:
6602       case MVT::ppcf128:
6603         break;
6604       case MVT::f32:
6605         if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
6606             TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
6607           Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
6608                               bitcastToAPInt().getZExtValue(), MVT::i32);
6609           return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
6610                               Ptr, ST->getPointerInfo(), ST->isVolatile(),
6611                               ST->isNonTemporal(), ST->getAlignment());
6612         }
6613         break;
6614       case MVT::f64:
6615         if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
6616              !ST->isVolatile()) ||
6617             TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
6618           Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
6619                                 getZExtValue(), MVT::i64);
6620           return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
6621                               Ptr, ST->getPointerInfo(), ST->isVolatile(),
6622                               ST->isNonTemporal(), ST->getAlignment());
6623         }
6624
6625         if (!ST->isVolatile() &&
6626             TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
6627           // Many FP stores are not made apparent until after legalize, e.g. for
6628           // argument passing.  Since this is so common, custom legalize the
6629           // 64-bit integer store into two 32-bit stores.
6630           uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
6631           SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
6632           SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
6633           if (TLI.isBigEndian()) std::swap(Lo, Hi);
6634
6635           unsigned Alignment = ST->getAlignment();
6636           bool isVolatile = ST->isVolatile();
6637           bool isNonTemporal = ST->isNonTemporal();
6638
6639           SDValue St0 = DAG.getStore(Chain, ST->getDebugLoc(), Lo,
6640                                      Ptr, ST->getPointerInfo(),
6641                                      isVolatile, isNonTemporal,
6642                                      ST->getAlignment());
6643           Ptr = DAG.getNode(ISD::ADD, N->getDebugLoc(), Ptr.getValueType(), Ptr,
6644                             DAG.getConstant(4, Ptr.getValueType()));
6645           Alignment = MinAlign(Alignment, 4U);
6646           SDValue St1 = DAG.getStore(Chain, ST->getDebugLoc(), Hi,
6647                                      Ptr, ST->getPointerInfo().getWithOffset(4),
6648                                      isVolatile, isNonTemporal,
6649                                      Alignment);
6650           return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
6651                              St0, St1);
6652         }
6653
6654         break;
6655       }
6656     }
6657   }
6658
6659   // Try to infer better alignment information than the store already has.
6660   if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
6661     if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
6662       if (Align > ST->getAlignment())
6663         return DAG.getTruncStore(Chain, N->getDebugLoc(), Value,
6664                                  Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
6665                                  ST->isVolatile(), ST->isNonTemporal(), Align);
6666     }
6667   }
6668
6669   // Try transforming a pair floating point load / store ops to integer
6670   // load / store ops.
6671   SDValue NewST = TransformFPLoadStorePair(N);
6672   if (NewST.getNode())
6673     return NewST;
6674
6675   if (CombinerAA) {
6676     // Walk up chain skipping non-aliasing memory nodes.
6677     SDValue BetterChain = FindBetterChain(N, Chain);
6678
6679     // If there is a better chain.
6680     if (Chain != BetterChain) {
6681       SDValue ReplStore;
6682
6683       // Replace the chain to avoid dependency.
6684       if (ST->isTruncatingStore()) {
6685         ReplStore = DAG.getTruncStore(BetterChain, N->getDebugLoc(), Value, Ptr,
6686                                       ST->getPointerInfo(),
6687                                       ST->getMemoryVT(), ST->isVolatile(),
6688                                       ST->isNonTemporal(), ST->getAlignment());
6689       } else {
6690         ReplStore = DAG.getStore(BetterChain, N->getDebugLoc(), Value, Ptr,
6691                                  ST->getPointerInfo(),
6692                                  ST->isVolatile(), ST->isNonTemporal(),
6693                                  ST->getAlignment());
6694       }
6695
6696       // Create token to keep both nodes around.
6697       SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
6698                                   MVT::Other, Chain, ReplStore);
6699
6700       // Make sure the new and old chains are cleaned up.
6701       AddToWorkList(Token.getNode());
6702
6703       // Don't add users to work list.
6704       return CombineTo(N, Token, false);
6705     }
6706   }
6707
6708   // Try transforming N to an indexed store.
6709   if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
6710     return SDValue(N, 0);
6711
6712   // FIXME: is there such a thing as a truncating indexed store?
6713   if (ST->isTruncatingStore() && ST->isUnindexed() &&
6714       Value.getValueType().isInteger()) {
6715     // See if we can simplify the input to this truncstore with knowledge that
6716     // only the low bits are being used.  For example:
6717     // "truncstore (or (shl x, 8), y), i8"  -> "truncstore y, i8"
6718     SDValue Shorter =
6719       GetDemandedBits(Value,
6720                       APInt::getLowBitsSet(
6721                         Value.getValueType().getScalarType().getSizeInBits(),
6722                         ST->getMemoryVT().getScalarType().getSizeInBits()));
6723     AddToWorkList(Value.getNode());
6724     if (Shorter.getNode())
6725       return DAG.getTruncStore(Chain, N->getDebugLoc(), Shorter,
6726                                Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
6727                                ST->isVolatile(), ST->isNonTemporal(),
6728                                ST->getAlignment());
6729
6730     // Otherwise, see if we can simplify the operation with
6731     // SimplifyDemandedBits, which only works if the value has a single use.
6732     if (SimplifyDemandedBits(Value,
6733                         APInt::getLowBitsSet(
6734                           Value.getValueType().getScalarType().getSizeInBits(),
6735                           ST->getMemoryVT().getScalarType().getSizeInBits())))
6736       return SDValue(N, 0);
6737   }
6738
6739   // If this is a load followed by a store to the same location, then the store
6740   // is dead/noop.
6741   if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
6742     if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
6743         ST->isUnindexed() && !ST->isVolatile() &&
6744         // There can't be any side effects between the load and store, such as
6745         // a call or store.
6746         Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
6747       // The store is dead, remove it.
6748       return Chain;
6749     }
6750   }
6751
6752   // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
6753   // truncating store.  We can do this even if this is already a truncstore.
6754   if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
6755       && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
6756       TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
6757                             ST->getMemoryVT())) {
6758     return DAG.getTruncStore(Chain, N->getDebugLoc(), Value.getOperand(0),
6759                              Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
6760                              ST->isVolatile(), ST->isNonTemporal(),
6761                              ST->getAlignment());
6762   }
6763
6764   return ReduceLoadOpStoreWidth(N);
6765 }
6766
6767 SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
6768   SDValue InVec = N->getOperand(0);
6769   SDValue InVal = N->getOperand(1);
6770   SDValue EltNo = N->getOperand(2);
6771
6772   // If the inserted element is an UNDEF, just use the input vector.
6773   if (InVal.getOpcode() == ISD::UNDEF)
6774     return InVec;
6775
6776   EVT VT = InVec.getValueType();
6777
6778   // If we can't generate a legal BUILD_VECTOR, exit
6779   if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
6780     return SDValue();
6781
6782   // If the invec is a BUILD_VECTOR and if EltNo is a constant, build a new
6783   // vector with the inserted element.
6784   if (InVec.getOpcode() == ISD::BUILD_VECTOR && isa<ConstantSDNode>(EltNo)) {
6785     unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
6786     SmallVector<SDValue, 8> Ops(InVec.getNode()->op_begin(),
6787                                 InVec.getNode()->op_end());
6788     if (Elt < Ops.size())
6789       Ops[Elt] = InVal;
6790     return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
6791                        VT, &Ops[0], Ops.size());
6792   }
6793   // If the invec is an UNDEF and if EltNo is a constant, create a new
6794   // BUILD_VECTOR with undef elements and the inserted element.
6795   if (InVec.getOpcode() == ISD::UNDEF &&
6796       isa<ConstantSDNode>(EltNo)) {
6797     EVT EltVT = VT.getVectorElementType();
6798     unsigned NElts = VT.getVectorNumElements();
6799     SmallVector<SDValue, 8> Ops(NElts, DAG.getUNDEF(EltVT));
6800
6801     unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
6802     if (Elt < Ops.size())
6803       Ops[Elt] = InVal;
6804     return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
6805                        VT, &Ops[0], Ops.size());
6806   }
6807   return SDValue();
6808 }
6809
6810 SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
6811   // (vextract (scalar_to_vector val, 0) -> val
6812   SDValue InVec = N->getOperand(0);
6813
6814   if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
6815     // Check if the result type doesn't match the inserted element type. A
6816     // SCALAR_TO_VECTOR may truncate the inserted element and the
6817     // EXTRACT_VECTOR_ELT may widen the extracted vector.
6818     SDValue InOp = InVec.getOperand(0);
6819     EVT NVT = N->getValueType(0);
6820     if (InOp.getValueType() != NVT) {
6821       assert(InOp.getValueType().isInteger() && NVT.isInteger());
6822       return DAG.getSExtOrTrunc(InOp, InVec.getDebugLoc(), NVT);
6823     }
6824     return InOp;
6825   }
6826
6827   // Perform only after legalization to ensure build_vector / vector_shuffle
6828   // optimizations have already been done.
6829   if (!LegalOperations) return SDValue();
6830
6831   // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
6832   // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
6833   // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
6834   SDValue EltNo = N->getOperand(1);
6835
6836   if (isa<ConstantSDNode>(EltNo)) {
6837     int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
6838     bool NewLoad = false;
6839     bool BCNumEltsChanged = false;
6840     EVT VT = InVec.getValueType();
6841     EVT ExtVT = VT.getVectorElementType();
6842     EVT LVT = ExtVT;
6843
6844     if (InVec.getOpcode() == ISD::BITCAST) {
6845       EVT BCVT = InVec.getOperand(0).getValueType();
6846       if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
6847         return SDValue();
6848       if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
6849         BCNumEltsChanged = true;
6850       InVec = InVec.getOperand(0);
6851       ExtVT = BCVT.getVectorElementType();
6852       NewLoad = true;
6853     }
6854
6855     LoadSDNode *LN0 = NULL;
6856     const ShuffleVectorSDNode *SVN = NULL;
6857     if (ISD::isNormalLoad(InVec.getNode())) {
6858       LN0 = cast<LoadSDNode>(InVec);
6859     } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
6860                InVec.getOperand(0).getValueType() == ExtVT &&
6861                ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
6862       LN0 = cast<LoadSDNode>(InVec.getOperand(0));
6863     } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
6864       // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
6865       // =>
6866       // (load $addr+1*size)
6867
6868       // If the bit convert changed the number of elements, it is unsafe
6869       // to examine the mask.
6870       if (BCNumEltsChanged)
6871         return SDValue();
6872
6873       // Select the input vector, guarding against out of range extract vector.
6874       unsigned NumElems = VT.getVectorNumElements();
6875       int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
6876       InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
6877
6878       if (InVec.getOpcode() == ISD::BITCAST)
6879         InVec = InVec.getOperand(0);
6880       if (ISD::isNormalLoad(InVec.getNode())) {
6881         LN0 = cast<LoadSDNode>(InVec);
6882         Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
6883       }
6884     }
6885
6886     if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
6887       return SDValue();
6888
6889     // If Idx was -1 above, Elt is going to be -1, so just return undef.
6890     if (Elt == -1)
6891       return DAG.getUNDEF(LN0->getBasePtr().getValueType());
6892
6893     unsigned Align = LN0->getAlignment();
6894     if (NewLoad) {
6895       // Check the resultant load doesn't need a higher alignment than the
6896       // original load.
6897       unsigned NewAlign =
6898         TLI.getTargetData()
6899             ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
6900
6901       if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
6902         return SDValue();
6903
6904       Align = NewAlign;
6905     }
6906
6907     SDValue NewPtr = LN0->getBasePtr();
6908     unsigned PtrOff = 0;
6909
6910     if (Elt) {
6911       PtrOff = LVT.getSizeInBits() * Elt / 8;
6912       EVT PtrType = NewPtr.getValueType();
6913       if (TLI.isBigEndian())
6914         PtrOff = VT.getSizeInBits() / 8 - PtrOff;
6915       NewPtr = DAG.getNode(ISD::ADD, N->getDebugLoc(), PtrType, NewPtr,
6916                            DAG.getConstant(PtrOff, PtrType));
6917     }
6918
6919     return DAG.getLoad(LVT, N->getDebugLoc(), LN0->getChain(), NewPtr,
6920                        LN0->getPointerInfo().getWithOffset(PtrOff),
6921                        LN0->isVolatile(), LN0->isNonTemporal(), Align);
6922   }
6923
6924   return SDValue();
6925 }
6926
6927 SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
6928   unsigned NumInScalars = N->getNumOperands();
6929   EVT VT = N->getValueType(0);
6930
6931   // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
6932   // operations.  If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
6933   // at most two distinct vectors, turn this into a shuffle node.
6934   SDValue VecIn1, VecIn2;
6935   for (unsigned i = 0; i != NumInScalars; ++i) {
6936     // Ignore undef inputs.
6937     if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
6938
6939     // If this input is something other than a EXTRACT_VECTOR_ELT with a
6940     // constant index, bail out.
6941     if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
6942         !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
6943       VecIn1 = VecIn2 = SDValue(0, 0);
6944       break;
6945     }
6946
6947     // If the input vector type disagrees with the result of the build_vector,
6948     // we can't make a shuffle.
6949     SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
6950     if (ExtractedFromVec.getValueType() != VT) {
6951       VecIn1 = VecIn2 = SDValue(0, 0);
6952       break;
6953     }
6954
6955     // Otherwise, remember this.  We allow up to two distinct input vectors.
6956     if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
6957       continue;
6958
6959     if (VecIn1.getNode() == 0) {
6960       VecIn1 = ExtractedFromVec;
6961     } else if (VecIn2.getNode() == 0) {
6962       VecIn2 = ExtractedFromVec;
6963     } else {
6964       // Too many inputs.
6965       VecIn1 = VecIn2 = SDValue(0, 0);
6966       break;
6967     }
6968   }
6969
6970   // If everything is good, we can make a shuffle operation.
6971   if (VecIn1.getNode()) {
6972     SmallVector<int, 8> Mask;
6973     for (unsigned i = 0; i != NumInScalars; ++i) {
6974       if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
6975         Mask.push_back(-1);
6976         continue;
6977       }
6978
6979       // If extracting from the first vector, just use the index directly.
6980       SDValue Extract = N->getOperand(i);
6981       SDValue ExtVal = Extract.getOperand(1);
6982       if (Extract.getOperand(0) == VecIn1) {
6983         unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
6984         if (ExtIndex > VT.getVectorNumElements())
6985           return SDValue();
6986
6987         Mask.push_back(ExtIndex);
6988         continue;
6989       }
6990
6991       // Otherwise, use InIdx + VecSize
6992       unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
6993       Mask.push_back(Idx+NumInScalars);
6994     }
6995
6996     // Add count and size info.
6997     if (!isTypeLegal(VT))
6998       return SDValue();
6999
7000     // Return the new VECTOR_SHUFFLE node.
7001     SDValue Ops[2];
7002     Ops[0] = VecIn1;
7003     Ops[1] = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
7004     return DAG.getVectorShuffle(VT, N->getDebugLoc(), Ops[0], Ops[1], &Mask[0]);
7005   }
7006
7007   return SDValue();
7008 }
7009
7010 SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
7011   // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
7012   // EXTRACT_SUBVECTOR operations.  If so, and if the EXTRACT_SUBVECTOR vector
7013   // inputs come from at most two distinct vectors, turn this into a shuffle
7014   // node.
7015
7016   // If we only have one input vector, we don't need to do any concatenation.
7017   if (N->getNumOperands() == 1)
7018     return N->getOperand(0);
7019
7020   return SDValue();
7021 }
7022
7023 SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
7024   EVT VT = N->getValueType(0);
7025   unsigned NumElts = VT.getVectorNumElements();
7026
7027   SDValue N0 = N->getOperand(0);
7028
7029   assert(N0.getValueType().getVectorNumElements() == NumElts &&
7030         "Vector shuffle must be normalized in DAG");
7031
7032   // FIXME: implement canonicalizations from DAG.getVectorShuffle()
7033
7034   // If it is a splat, check if the argument vector is another splat or a
7035   // build_vector with all scalar elements the same.
7036   ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
7037   if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
7038     SDNode *V = N0.getNode();
7039
7040     // If this is a bit convert that changes the element type of the vector but
7041     // not the number of vector elements, look through it.  Be careful not to
7042     // look though conversions that change things like v4f32 to v2f64.
7043     if (V->getOpcode() == ISD::BITCAST) {
7044       SDValue ConvInput = V->getOperand(0);
7045       if (ConvInput.getValueType().isVector() &&
7046           ConvInput.getValueType().getVectorNumElements() == NumElts)
7047         V = ConvInput.getNode();
7048     }
7049
7050     if (V->getOpcode() == ISD::BUILD_VECTOR) {
7051       assert(V->getNumOperands() == NumElts &&
7052              "BUILD_VECTOR has wrong number of operands");
7053       SDValue Base;
7054       bool AllSame = true;
7055       for (unsigned i = 0; i != NumElts; ++i) {
7056         if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
7057           Base = V->getOperand(i);
7058           break;
7059         }
7060       }
7061       // Splat of <u, u, u, u>, return <u, u, u, u>
7062       if (!Base.getNode())
7063         return N0;
7064       for (unsigned i = 0; i != NumElts; ++i) {
7065         if (V->getOperand(i) != Base) {
7066           AllSame = false;
7067           break;
7068         }
7069       }
7070       // Splat of <x, x, x, x>, return <x, x, x, x>
7071       if (AllSame)
7072         return N0;
7073     }
7074   }
7075   return SDValue();
7076 }
7077
7078 SDValue DAGCombiner::visitMEMBARRIER(SDNode* N) {
7079   if (!TLI.getShouldFoldAtomicFences())
7080     return SDValue();
7081
7082   SDValue atomic = N->getOperand(0);
7083   switch (atomic.getOpcode()) {
7084     case ISD::ATOMIC_CMP_SWAP:
7085     case ISD::ATOMIC_SWAP:
7086     case ISD::ATOMIC_LOAD_ADD:
7087     case ISD::ATOMIC_LOAD_SUB:
7088     case ISD::ATOMIC_LOAD_AND:
7089     case ISD::ATOMIC_LOAD_OR:
7090     case ISD::ATOMIC_LOAD_XOR:
7091     case ISD::ATOMIC_LOAD_NAND:
7092     case ISD::ATOMIC_LOAD_MIN:
7093     case ISD::ATOMIC_LOAD_MAX:
7094     case ISD::ATOMIC_LOAD_UMIN:
7095     case ISD::ATOMIC_LOAD_UMAX:
7096       break;
7097     default:
7098       return SDValue();
7099   }
7100
7101   SDValue fence = atomic.getOperand(0);
7102   if (fence.getOpcode() != ISD::MEMBARRIER)
7103     return SDValue();
7104
7105   switch (atomic.getOpcode()) {
7106     case ISD::ATOMIC_CMP_SWAP:
7107       return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
7108                                     fence.getOperand(0),
7109                                     atomic.getOperand(1), atomic.getOperand(2),
7110                                     atomic.getOperand(3)), atomic.getResNo());
7111     case ISD::ATOMIC_SWAP:
7112     case ISD::ATOMIC_LOAD_ADD:
7113     case ISD::ATOMIC_LOAD_SUB:
7114     case ISD::ATOMIC_LOAD_AND:
7115     case ISD::ATOMIC_LOAD_OR:
7116     case ISD::ATOMIC_LOAD_XOR:
7117     case ISD::ATOMIC_LOAD_NAND:
7118     case ISD::ATOMIC_LOAD_MIN:
7119     case ISD::ATOMIC_LOAD_MAX:
7120     case ISD::ATOMIC_LOAD_UMIN:
7121     case ISD::ATOMIC_LOAD_UMAX:
7122       return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
7123                                     fence.getOperand(0),
7124                                     atomic.getOperand(1), atomic.getOperand(2)),
7125                      atomic.getResNo());
7126     default:
7127       return SDValue();
7128   }
7129 }
7130
7131 /// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
7132 /// an AND to a vector_shuffle with the destination vector and a zero vector.
7133 /// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
7134 ///      vector_shuffle V, Zero, <0, 4, 2, 4>
7135 SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
7136   EVT VT = N->getValueType(0);
7137   DebugLoc dl = N->getDebugLoc();
7138   SDValue LHS = N->getOperand(0);
7139   SDValue RHS = N->getOperand(1);
7140   if (N->getOpcode() == ISD::AND) {
7141     if (RHS.getOpcode() == ISD::BITCAST)
7142       RHS = RHS.getOperand(0);
7143     if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
7144       SmallVector<int, 8> Indices;
7145       unsigned NumElts = RHS.getNumOperands();
7146       for (unsigned i = 0; i != NumElts; ++i) {
7147         SDValue Elt = RHS.getOperand(i);
7148         if (!isa<ConstantSDNode>(Elt))
7149           return SDValue();
7150         else if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
7151           Indices.push_back(i);
7152         else if (cast<ConstantSDNode>(Elt)->isNullValue())
7153           Indices.push_back(NumElts);
7154         else
7155           return SDValue();
7156       }
7157
7158       // Let's see if the target supports this vector_shuffle.
7159       EVT RVT = RHS.getValueType();
7160       if (!TLI.isVectorClearMaskLegal(Indices, RVT))
7161         return SDValue();
7162
7163       // Return the new VECTOR_SHUFFLE node.
7164       EVT EltVT = RVT.getVectorElementType();
7165       SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
7166                                      DAG.getConstant(0, EltVT));
7167       SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7168                                  RVT, &ZeroOps[0], ZeroOps.size());
7169       LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
7170       SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
7171       return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
7172     }
7173   }
7174
7175   return SDValue();
7176 }
7177
7178 /// SimplifyVBinOp - Visit a binary vector operation, like ADD.
7179 SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
7180   // After legalize, the target may be depending on adds and other
7181   // binary ops to provide legal ways to construct constants or other
7182   // things. Simplifying them may result in a loss of legality.
7183   if (LegalOperations) return SDValue();
7184
7185   assert(N->getValueType(0).isVector() &&
7186          "SimplifyVBinOp only works on vectors!");
7187
7188   SDValue LHS = N->getOperand(0);
7189   SDValue RHS = N->getOperand(1);
7190   SDValue Shuffle = XformToShuffleWithZero(N);
7191   if (Shuffle.getNode()) return Shuffle;
7192
7193   // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
7194   // this operation.
7195   if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
7196       RHS.getOpcode() == ISD::BUILD_VECTOR) {
7197     SmallVector<SDValue, 8> Ops;
7198     for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
7199       SDValue LHSOp = LHS.getOperand(i);
7200       SDValue RHSOp = RHS.getOperand(i);
7201       // If these two elements can't be folded, bail out.
7202       if ((LHSOp.getOpcode() != ISD::UNDEF &&
7203            LHSOp.getOpcode() != ISD::Constant &&
7204            LHSOp.getOpcode() != ISD::ConstantFP) ||
7205           (RHSOp.getOpcode() != ISD::UNDEF &&
7206            RHSOp.getOpcode() != ISD::Constant &&
7207            RHSOp.getOpcode() != ISD::ConstantFP))
7208         break;
7209
7210       // Can't fold divide by zero.
7211       if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
7212           N->getOpcode() == ISD::FDIV) {
7213         if ((RHSOp.getOpcode() == ISD::Constant &&
7214              cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
7215             (RHSOp.getOpcode() == ISD::ConstantFP &&
7216              cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
7217           break;
7218       }
7219
7220       EVT VT = LHSOp.getValueType();
7221       assert(RHSOp.getValueType() == VT &&
7222              "SimplifyVBinOp with different BUILD_VECTOR element types");
7223       SDValue FoldOp = DAG.getNode(N->getOpcode(), LHS.getDebugLoc(), VT,
7224                                    LHSOp, RHSOp);
7225       if (FoldOp.getOpcode() != ISD::UNDEF &&
7226           FoldOp.getOpcode() != ISD::Constant &&
7227           FoldOp.getOpcode() != ISD::ConstantFP)
7228         break;
7229       Ops.push_back(FoldOp);
7230       AddToWorkList(FoldOp.getNode());
7231     }
7232
7233     if (Ops.size() == LHS.getNumOperands())
7234       return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7235                          LHS.getValueType(), &Ops[0], Ops.size());
7236   }
7237
7238   return SDValue();
7239 }
7240
7241 SDValue DAGCombiner::SimplifySelect(DebugLoc DL, SDValue N0,
7242                                     SDValue N1, SDValue N2){
7243   assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
7244
7245   SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
7246                                  cast<CondCodeSDNode>(N0.getOperand(2))->get());
7247
7248   // If we got a simplified select_cc node back from SimplifySelectCC, then
7249   // break it down into a new SETCC node, and a new SELECT node, and then return
7250   // the SELECT node, since we were called with a SELECT node.
7251   if (SCC.getNode()) {
7252     // Check to see if we got a select_cc back (to turn into setcc/select).
7253     // Otherwise, just return whatever node we got back, like fabs.
7254     if (SCC.getOpcode() == ISD::SELECT_CC) {
7255       SDValue SETCC = DAG.getNode(ISD::SETCC, N0.getDebugLoc(),
7256                                   N0.getValueType(),
7257                                   SCC.getOperand(0), SCC.getOperand(1),
7258                                   SCC.getOperand(4));
7259       AddToWorkList(SETCC.getNode());
7260       return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(),
7261                          SCC.getOperand(2), SCC.getOperand(3), SETCC);
7262     }
7263
7264     return SCC;
7265   }
7266   return SDValue();
7267 }
7268
7269 /// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
7270 /// are the two values being selected between, see if we can simplify the
7271 /// select.  Callers of this should assume that TheSelect is deleted if this
7272 /// returns true.  As such, they should return the appropriate thing (e.g. the
7273 /// node) back to the top-level of the DAG combiner loop to avoid it being
7274 /// looked at.
7275 bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
7276                                     SDValue RHS) {
7277
7278   // Cannot simplify select with vector condition
7279   if (TheSelect->getOperand(0).getValueType().isVector()) return false;
7280
7281   // If this is a select from two identical things, try to pull the operation
7282   // through the select.
7283   if (LHS.getOpcode() != RHS.getOpcode() ||
7284       !LHS.hasOneUse() || !RHS.hasOneUse())
7285     return false;
7286
7287   // If this is a load and the token chain is identical, replace the select
7288   // of two loads with a load through a select of the address to load from.
7289   // This triggers in things like "select bool X, 10.0, 123.0" after the FP
7290   // constants have been dropped into the constant pool.
7291   if (LHS.getOpcode() == ISD::LOAD) {
7292     LoadSDNode *LLD = cast<LoadSDNode>(LHS);
7293     LoadSDNode *RLD = cast<LoadSDNode>(RHS);
7294
7295     // Token chains must be identical.
7296     if (LHS.getOperand(0) != RHS.getOperand(0) ||
7297         // Do not let this transformation reduce the number of volatile loads.
7298         LLD->isVolatile() || RLD->isVolatile() ||
7299         // If this is an EXTLOAD, the VT's must match.
7300         LLD->getMemoryVT() != RLD->getMemoryVT() ||
7301         // If this is an EXTLOAD, the kind of extension must match.
7302         (LLD->getExtensionType() != RLD->getExtensionType() &&
7303          // The only exception is if one of the extensions is anyext.
7304          LLD->getExtensionType() != ISD::EXTLOAD &&
7305          RLD->getExtensionType() != ISD::EXTLOAD) ||
7306         // FIXME: this discards src value information.  This is
7307         // over-conservative. It would be beneficial to be able to remember
7308         // both potential memory locations.  Since we are discarding
7309         // src value info, don't do the transformation if the memory
7310         // locations are not in the default address space.
7311         LLD->getPointerInfo().getAddrSpace() != 0 ||
7312         RLD->getPointerInfo().getAddrSpace() != 0)
7313       return false;
7314
7315     // Check that the select condition doesn't reach either load.  If so,
7316     // folding this will induce a cycle into the DAG.  If not, this is safe to
7317     // xform, so create a select of the addresses.
7318     SDValue Addr;
7319     if (TheSelect->getOpcode() == ISD::SELECT) {
7320       SDNode *CondNode = TheSelect->getOperand(0).getNode();
7321       if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
7322           (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
7323         return false;
7324       Addr = DAG.getNode(ISD::SELECT, TheSelect->getDebugLoc(),
7325                          LLD->getBasePtr().getValueType(),
7326                          TheSelect->getOperand(0), LLD->getBasePtr(),
7327                          RLD->getBasePtr());
7328     } else {  // Otherwise SELECT_CC
7329       SDNode *CondLHS = TheSelect->getOperand(0).getNode();
7330       SDNode *CondRHS = TheSelect->getOperand(1).getNode();
7331
7332       if ((LLD->hasAnyUseOfValue(1) &&
7333            (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
7334           (LLD->hasAnyUseOfValue(1) &&
7335            (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))))
7336         return false;
7337
7338       Addr = DAG.getNode(ISD::SELECT_CC, TheSelect->getDebugLoc(),
7339                          LLD->getBasePtr().getValueType(),
7340                          TheSelect->getOperand(0),
7341                          TheSelect->getOperand(1),
7342                          LLD->getBasePtr(), RLD->getBasePtr(),
7343                          TheSelect->getOperand(4));
7344     }
7345
7346     SDValue Load;
7347     if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
7348       Load = DAG.getLoad(TheSelect->getValueType(0),
7349                          TheSelect->getDebugLoc(),
7350                          // FIXME: Discards pointer info.
7351                          LLD->getChain(), Addr, MachinePointerInfo(),
7352                          LLD->isVolatile(), LLD->isNonTemporal(),
7353                          LLD->getAlignment());
7354     } else {
7355       Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
7356                             RLD->getExtensionType() : LLD->getExtensionType(),
7357                             TheSelect->getDebugLoc(),
7358                             TheSelect->getValueType(0),
7359                             // FIXME: Discards pointer info.
7360                             LLD->getChain(), Addr, MachinePointerInfo(),
7361                             LLD->getMemoryVT(), LLD->isVolatile(),
7362                             LLD->isNonTemporal(), LLD->getAlignment());
7363     }
7364
7365     // Users of the select now use the result of the load.
7366     CombineTo(TheSelect, Load);
7367
7368     // Users of the old loads now use the new load's chain.  We know the
7369     // old-load value is dead now.
7370     CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
7371     CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
7372     return true;
7373   }
7374
7375   return false;
7376 }
7377
7378 /// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
7379 /// where 'cond' is the comparison specified by CC.
7380 SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1,
7381                                       SDValue N2, SDValue N3,
7382                                       ISD::CondCode CC, bool NotExtCompare) {
7383   // (x ? y : y) -> y.
7384   if (N2 == N3) return N2;
7385
7386   EVT VT = N2.getValueType();
7387   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
7388   ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
7389   ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
7390
7391   // Determine if the condition we're dealing with is constant
7392   SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
7393                               N0, N1, CC, DL, false);
7394   if (SCC.getNode()) AddToWorkList(SCC.getNode());
7395   ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
7396
7397   // fold select_cc true, x, y -> x
7398   if (SCCC && !SCCC->isNullValue())
7399     return N2;
7400   // fold select_cc false, x, y -> y
7401   if (SCCC && SCCC->isNullValue())
7402     return N3;
7403
7404   // Check to see if we can simplify the select into an fabs node
7405   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
7406     // Allow either -0.0 or 0.0
7407     if (CFP->getValueAPF().isZero()) {
7408       // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
7409       if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
7410           N0 == N2 && N3.getOpcode() == ISD::FNEG &&
7411           N2 == N3.getOperand(0))
7412         return DAG.getNode(ISD::FABS, DL, VT, N0);
7413
7414       // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
7415       if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
7416           N0 == N3 && N2.getOpcode() == ISD::FNEG &&
7417           N2.getOperand(0) == N3)
7418         return DAG.getNode(ISD::FABS, DL, VT, N3);
7419     }
7420   }
7421
7422   // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
7423   // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
7424   // in it.  This is a win when the constant is not otherwise available because
7425   // it replaces two constant pool loads with one.  We only do this if the FP
7426   // type is known to be legal, because if it isn't, then we are before legalize
7427   // types an we want the other legalization to happen first (e.g. to avoid
7428   // messing with soft float) and if the ConstantFP is not legal, because if
7429   // it is legal, we may not need to store the FP constant in a constant pool.
7430   if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
7431     if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
7432       if (TLI.isTypeLegal(N2.getValueType()) &&
7433           (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
7434            TargetLowering::Legal) &&
7435           // If both constants have multiple uses, then we won't need to do an
7436           // extra load, they are likely around in registers for other users.
7437           (TV->hasOneUse() || FV->hasOneUse())) {
7438         Constant *Elts[] = {
7439           const_cast<ConstantFP*>(FV->getConstantFPValue()),
7440           const_cast<ConstantFP*>(TV->getConstantFPValue())
7441         };
7442         const Type *FPTy = Elts[0]->getType();
7443         const TargetData &TD = *TLI.getTargetData();
7444
7445         // Create a ConstantArray of the two constants.
7446         Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
7447         SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
7448                                             TD.getPrefTypeAlignment(FPTy));
7449         unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
7450
7451         // Get the offsets to the 0 and 1 element of the array so that we can
7452         // select between them.
7453         SDValue Zero = DAG.getIntPtrConstant(0);
7454         unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
7455         SDValue One = DAG.getIntPtrConstant(EltSize);
7456
7457         SDValue Cond = DAG.getSetCC(DL,
7458                                     TLI.getSetCCResultType(N0.getValueType()),
7459                                     N0, N1, CC);
7460         SDValue CstOffset = DAG.getNode(ISD::SELECT, DL, Zero.getValueType(),
7461                                         Cond, One, Zero);
7462         CPIdx = DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(), CPIdx,
7463                             CstOffset);
7464         return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
7465                            MachinePointerInfo::getConstantPool(), false,
7466                            false, Alignment);
7467
7468       }
7469     }
7470
7471   // Check to see if we can perform the "gzip trick", transforming
7472   // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
7473   if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
7474       N0.getValueType().isInteger() &&
7475       N2.getValueType().isInteger() &&
7476       (N1C->isNullValue() ||                         // (a < 0) ? b : 0
7477        (N1C->getAPIntValue() == 1 && N0 == N2))) {   // (a < 1) ? a : 0
7478     EVT XType = N0.getValueType();
7479     EVT AType = N2.getValueType();
7480     if (XType.bitsGE(AType)) {
7481       // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
7482       // single-bit constant.
7483       if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
7484         unsigned ShCtV = N2C->getAPIntValue().logBase2();
7485         ShCtV = XType.getSizeInBits()-ShCtV-1;
7486         SDValue ShCt = DAG.getConstant(ShCtV,
7487                                        getShiftAmountTy(N0.getValueType()));
7488         SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(),
7489                                     XType, N0, ShCt);
7490         AddToWorkList(Shift.getNode());
7491
7492         if (XType.bitsGT(AType)) {
7493           Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
7494           AddToWorkList(Shift.getNode());
7495         }
7496
7497         return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
7498       }
7499
7500       SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(),
7501                                   XType, N0,
7502                                   DAG.getConstant(XType.getSizeInBits()-1,
7503                                          getShiftAmountTy(N0.getValueType())));
7504       AddToWorkList(Shift.getNode());
7505
7506       if (XType.bitsGT(AType)) {
7507         Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
7508         AddToWorkList(Shift.getNode());
7509       }
7510
7511       return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
7512     }
7513   }
7514
7515   // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
7516   // where y is has a single bit set.
7517   // A plaintext description would be, we can turn the SELECT_CC into an AND
7518   // when the condition can be materialized as an all-ones register.  Any
7519   // single bit-test can be materialized as an all-ones register with
7520   // shift-left and shift-right-arith.
7521   if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
7522       N0->getValueType(0) == VT &&
7523       N1C && N1C->isNullValue() &&
7524       N2C && N2C->isNullValue()) {
7525     SDValue AndLHS = N0->getOperand(0);
7526     ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
7527     if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
7528       // Shift the tested bit over the sign bit.
7529       APInt AndMask = ConstAndRHS->getAPIntValue();
7530       SDValue ShlAmt =
7531         DAG.getConstant(AndMask.countLeadingZeros(),
7532                         getShiftAmountTy(AndLHS.getValueType()));
7533       SDValue Shl = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, AndLHS, ShlAmt);
7534
7535       // Now arithmetic right shift it all the way over, so the result is either
7536       // all-ones, or zero.
7537       SDValue ShrAmt =
7538         DAG.getConstant(AndMask.getBitWidth()-1,
7539                         getShiftAmountTy(Shl.getValueType()));
7540       SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt);
7541
7542       return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
7543     }
7544   }
7545
7546   // fold select C, 16, 0 -> shl C, 4
7547   if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
7548       TLI.getBooleanContents() == TargetLowering::ZeroOrOneBooleanContent) {
7549
7550     // If the caller doesn't want us to simplify this into a zext of a compare,
7551     // don't do it.
7552     if (NotExtCompare && N2C->getAPIntValue() == 1)
7553       return SDValue();
7554
7555     // Get a SetCC of the condition
7556     // FIXME: Should probably make sure that setcc is legal if we ever have a
7557     // target where it isn't.
7558     SDValue Temp, SCC;
7559     // cast from setcc result type to select result type
7560     if (LegalTypes) {
7561       SCC  = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()),
7562                           N0, N1, CC);
7563       if (N2.getValueType().bitsLT(SCC.getValueType()))
7564         Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(), N2.getValueType());
7565       else
7566         Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
7567                            N2.getValueType(), SCC);
7568     } else {
7569       SCC  = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC);
7570       Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
7571                          N2.getValueType(), SCC);
7572     }
7573
7574     AddToWorkList(SCC.getNode());
7575     AddToWorkList(Temp.getNode());
7576
7577     if (N2C->getAPIntValue() == 1)
7578       return Temp;
7579
7580     // shl setcc result by log2 n2c
7581     return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
7582                        DAG.getConstant(N2C->getAPIntValue().logBase2(),
7583                                        getShiftAmountTy(Temp.getValueType())));
7584   }
7585
7586   // Check to see if this is the equivalent of setcc
7587   // FIXME: Turn all of these into setcc if setcc if setcc is legal
7588   // otherwise, go ahead with the folds.
7589   if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
7590     EVT XType = N0.getValueType();
7591     if (!LegalOperations ||
7592         TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(XType))) {
7593       SDValue Res = DAG.getSetCC(DL, TLI.getSetCCResultType(XType), N0, N1, CC);
7594       if (Res.getValueType() != VT)
7595         Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
7596       return Res;
7597     }
7598
7599     // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
7600     if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
7601         (!LegalOperations ||
7602          TLI.isOperationLegal(ISD::CTLZ, XType))) {
7603       SDValue Ctlz = DAG.getNode(ISD::CTLZ, N0.getDebugLoc(), XType, N0);
7604       return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
7605                          DAG.getConstant(Log2_32(XType.getSizeInBits()),
7606                                        getShiftAmountTy(Ctlz.getValueType())));
7607     }
7608     // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
7609     if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
7610       SDValue NegN0 = DAG.getNode(ISD::SUB, N0.getDebugLoc(),
7611                                   XType, DAG.getConstant(0, XType), N0);
7612       SDValue NotN0 = DAG.getNOT(N0.getDebugLoc(), N0, XType);
7613       return DAG.getNode(ISD::SRL, DL, XType,
7614                          DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
7615                          DAG.getConstant(XType.getSizeInBits()-1,
7616                                          getShiftAmountTy(XType)));
7617     }
7618     // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
7619     if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
7620       SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0,
7621                                  DAG.getConstant(XType.getSizeInBits()-1,
7622                                          getShiftAmountTy(N0.getValueType())));
7623       return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
7624     }
7625   }
7626
7627   // Check to see if this is an integer abs.
7628   // select_cc setg[te] X,  0,  X, -X ->
7629   // select_cc setgt    X, -1,  X, -X ->
7630   // select_cc setl[te] X,  0, -X,  X ->
7631   // select_cc setlt    X,  1, -X,  X ->
7632   // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
7633   if (N1C) {
7634     ConstantSDNode *SubC = NULL;
7635     if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
7636          (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
7637         N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
7638       SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
7639     else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
7640               (N1C->isOne() && CC == ISD::SETLT)) &&
7641              N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
7642       SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
7643
7644     EVT XType = N0.getValueType();
7645     if (SubC && SubC->isNullValue() && XType.isInteger()) {
7646       SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), XType,
7647                                   N0,
7648                                   DAG.getConstant(XType.getSizeInBits()-1,
7649                                          getShiftAmountTy(N0.getValueType())));
7650       SDValue Add = DAG.getNode(ISD::ADD, N0.getDebugLoc(),
7651                                 XType, N0, Shift);
7652       AddToWorkList(Shift.getNode());
7653       AddToWorkList(Add.getNode());
7654       return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
7655     }
7656   }
7657
7658   return SDValue();
7659 }
7660
7661 /// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
7662 SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
7663                                    SDValue N1, ISD::CondCode Cond,
7664                                    DebugLoc DL, bool foldBooleans) {
7665   TargetLowering::DAGCombinerInfo
7666     DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
7667   return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
7668 }
7669
7670 /// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
7671 /// return a DAG expression to select that will generate the same value by
7672 /// multiplying by a magic number.  See:
7673 /// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
7674 SDValue DAGCombiner::BuildSDIV(SDNode *N) {
7675   std::vector<SDNode*> Built;
7676   SDValue S = TLI.BuildSDIV(N, DAG, &Built);
7677
7678   for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
7679        ii != ee; ++ii)
7680     AddToWorkList(*ii);
7681   return S;
7682 }
7683
7684 /// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
7685 /// return a DAG expression to select that will generate the same value by
7686 /// multiplying by a magic number.  See:
7687 /// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
7688 SDValue DAGCombiner::BuildUDIV(SDNode *N) {
7689   std::vector<SDNode*> Built;
7690   SDValue S = TLI.BuildUDIV(N, DAG, &Built);
7691
7692   for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
7693        ii != ee; ++ii)
7694     AddToWorkList(*ii);
7695   return S;
7696 }
7697
7698 /// FindBaseOffset - Return true if base is a frame index, which is known not
7699 // to alias with anything but itself.  Provides base object and offset as
7700 // results.
7701 static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
7702                            const GlobalValue *&GV, void *&CV) {
7703   // Assume it is a primitive operation.
7704   Base = Ptr; Offset = 0; GV = 0; CV = 0;
7705
7706   // If it's an adding a simple constant then integrate the offset.
7707   if (Base.getOpcode() == ISD::ADD) {
7708     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
7709       Base = Base.getOperand(0);
7710       Offset += C->getZExtValue();
7711     }
7712   }
7713
7714   // Return the underlying GlobalValue, and update the Offset.  Return false
7715   // for GlobalAddressSDNode since the same GlobalAddress may be represented
7716   // by multiple nodes with different offsets.
7717   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
7718     GV = G->getGlobal();
7719     Offset += G->getOffset();
7720     return false;
7721   }
7722
7723   // Return the underlying Constant value, and update the Offset.  Return false
7724   // for ConstantSDNodes since the same constant pool entry may be represented
7725   // by multiple nodes with different offsets.
7726   if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
7727     CV = C->isMachineConstantPoolEntry() ? (void *)C->getMachineCPVal()
7728                                          : (void *)C->getConstVal();
7729     Offset += C->getOffset();
7730     return false;
7731   }
7732   // If it's any of the following then it can't alias with anything but itself.
7733   return isa<FrameIndexSDNode>(Base);
7734 }
7735
7736 /// isAlias - Return true if there is any possibility that the two addresses
7737 /// overlap.
7738 bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
7739                           const Value *SrcValue1, int SrcValueOffset1,
7740                           unsigned SrcValueAlign1,
7741                           const MDNode *TBAAInfo1,
7742                           SDValue Ptr2, int64_t Size2,
7743                           const Value *SrcValue2, int SrcValueOffset2,
7744                           unsigned SrcValueAlign2,
7745                           const MDNode *TBAAInfo2) const {
7746   // If they are the same then they must be aliases.
7747   if (Ptr1 == Ptr2) return true;
7748
7749   // Gather base node and offset information.
7750   SDValue Base1, Base2;
7751   int64_t Offset1, Offset2;
7752   const GlobalValue *GV1, *GV2;
7753   void *CV1, *CV2;
7754   bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
7755   bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
7756
7757   // If they have a same base address then check to see if they overlap.
7758   if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
7759     return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
7760
7761   // It is possible for different frame indices to alias each other, mostly
7762   // when tail call optimization reuses return address slots for arguments.
7763   // To catch this case, look up the actual index of frame indices to compute
7764   // the real alias relationship.
7765   if (isFrameIndex1 && isFrameIndex2) {
7766     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7767     Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
7768     Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
7769     return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
7770   }
7771
7772   // Otherwise, if we know what the bases are, and they aren't identical, then
7773   // we know they cannot alias.
7774   if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
7775     return false;
7776
7777   // If we know required SrcValue1 and SrcValue2 have relatively large alignment
7778   // compared to the size and offset of the access, we may be able to prove they
7779   // do not alias.  This check is conservative for now to catch cases created by
7780   // splitting vector types.
7781   if ((SrcValueAlign1 == SrcValueAlign2) &&
7782       (SrcValueOffset1 != SrcValueOffset2) &&
7783       (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
7784     int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
7785     int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
7786
7787     // There is no overlap between these relatively aligned accesses of similar
7788     // size, return no alias.
7789     if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
7790       return false;
7791   }
7792
7793   if (CombinerGlobalAA) {
7794     // Use alias analysis information.
7795     int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
7796     int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
7797     int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
7798     AliasAnalysis::AliasResult AAResult =
7799       AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
7800                AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
7801     if (AAResult == AliasAnalysis::NoAlias)
7802       return false;
7803   }
7804
7805   // Otherwise we have to assume they alias.
7806   return true;
7807 }
7808
7809 /// FindAliasInfo - Extracts the relevant alias information from the memory
7810 /// node.  Returns true if the operand was a load.
7811 bool DAGCombiner::FindAliasInfo(SDNode *N,
7812                         SDValue &Ptr, int64_t &Size,
7813                         const Value *&SrcValue,
7814                         int &SrcValueOffset,
7815                         unsigned &SrcValueAlign,
7816                         const MDNode *&TBAAInfo) const {
7817   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
7818     Ptr = LD->getBasePtr();
7819     Size = LD->getMemoryVT().getSizeInBits() >> 3;
7820     SrcValue = LD->getSrcValue();
7821     SrcValueOffset = LD->getSrcValueOffset();
7822     SrcValueAlign = LD->getOriginalAlignment();
7823     TBAAInfo = LD->getTBAAInfo();
7824     return true;
7825   }
7826   if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
7827     Ptr = ST->getBasePtr();
7828     Size = ST->getMemoryVT().getSizeInBits() >> 3;
7829     SrcValue = ST->getSrcValue();
7830     SrcValueOffset = ST->getSrcValueOffset();
7831     SrcValueAlign = ST->getOriginalAlignment();
7832     TBAAInfo = ST->getTBAAInfo();
7833     return false;
7834   }
7835   llvm_unreachable("FindAliasInfo expected a memory operand");
7836 }
7837
7838 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
7839 /// looking for aliasing nodes and adding them to the Aliases vector.
7840 void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
7841                                    SmallVector<SDValue, 8> &Aliases) {
7842   SmallVector<SDValue, 8> Chains;     // List of chains to visit.
7843   SmallPtrSet<SDNode *, 16> Visited;  // Visited node set.
7844
7845   // Get alias information for node.
7846   SDValue Ptr;
7847   int64_t Size;
7848   const Value *SrcValue;
7849   int SrcValueOffset;
7850   unsigned SrcValueAlign;
7851   const MDNode *SrcTBAAInfo;
7852   bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
7853                               SrcValueAlign, SrcTBAAInfo);
7854
7855   // Starting off.
7856   Chains.push_back(OriginalChain);
7857   unsigned Depth = 0;
7858
7859   // Look at each chain and determine if it is an alias.  If so, add it to the
7860   // aliases list.  If not, then continue up the chain looking for the next
7861   // candidate.
7862   while (!Chains.empty()) {
7863     SDValue Chain = Chains.back();
7864     Chains.pop_back();
7865
7866     // For TokenFactor nodes, look at each operand and only continue up the
7867     // chain until we find two aliases.  If we've seen two aliases, assume we'll
7868     // find more and revert to original chain since the xform is unlikely to be
7869     // profitable.
7870     //
7871     // FIXME: The depth check could be made to return the last non-aliasing
7872     // chain we found before we hit a tokenfactor rather than the original
7873     // chain.
7874     if (Depth > 6 || Aliases.size() == 2) {
7875       Aliases.clear();
7876       Aliases.push_back(OriginalChain);
7877       break;
7878     }
7879
7880     // Don't bother if we've been before.
7881     if (!Visited.insert(Chain.getNode()))
7882       continue;
7883
7884     switch (Chain.getOpcode()) {
7885     case ISD::EntryToken:
7886       // Entry token is ideal chain operand, but handled in FindBetterChain.
7887       break;
7888
7889     case ISD::LOAD:
7890     case ISD::STORE: {
7891       // Get alias information for Chain.
7892       SDValue OpPtr;
7893       int64_t OpSize;
7894       const Value *OpSrcValue;
7895       int OpSrcValueOffset;
7896       unsigned OpSrcValueAlign;
7897       const MDNode *OpSrcTBAAInfo;
7898       bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
7899                                     OpSrcValue, OpSrcValueOffset,
7900                                     OpSrcValueAlign,
7901                                     OpSrcTBAAInfo);
7902
7903       // If chain is alias then stop here.
7904       if (!(IsLoad && IsOpLoad) &&
7905           isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
7906                   SrcTBAAInfo,
7907                   OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
7908                   OpSrcValueAlign, OpSrcTBAAInfo)) {
7909         Aliases.push_back(Chain);
7910       } else {
7911         // Look further up the chain.
7912         Chains.push_back(Chain.getOperand(0));
7913         ++Depth;
7914       }
7915       break;
7916     }
7917
7918     case ISD::TokenFactor:
7919       // We have to check each of the operands of the token factor for "small"
7920       // token factors, so we queue them up.  Adding the operands to the queue
7921       // (stack) in reverse order maintains the original order and increases the
7922       // likelihood that getNode will find a matching token factor (CSE.)
7923       if (Chain.getNumOperands() > 16) {
7924         Aliases.push_back(Chain);
7925         break;
7926       }
7927       for (unsigned n = Chain.getNumOperands(); n;)
7928         Chains.push_back(Chain.getOperand(--n));
7929       ++Depth;
7930       break;
7931
7932     default:
7933       // For all other instructions we will just have to take what we can get.
7934       Aliases.push_back(Chain);
7935       break;
7936     }
7937   }
7938 }
7939
7940 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
7941 /// for a better chain (aliasing node.)
7942 SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
7943   SmallVector<SDValue, 8> Aliases;  // Ops for replacing token factor.
7944
7945   // Accumulate all the aliases to this node.
7946   GatherAllAliases(N, OldChain, Aliases);
7947
7948   // If no operands then chain to entry token.
7949   if (Aliases.size() == 0)
7950     return DAG.getEntryNode();
7951
7952   // If a single operand then chain to it.  We don't need to revisit it.
7953   if (Aliases.size() == 1)
7954     return Aliases[0];
7955
7956   // Construct a custom tailored token factor.
7957   return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
7958                      &Aliases[0], Aliases.size());
7959 }
7960
7961 // SelectionDAG::Combine - This is the entry point for the file.
7962 //
7963 void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
7964                            CodeGenOpt::Level OptLevel) {
7965   /// run - This is the main entry point to this class.
7966   ///
7967   DAGCombiner(*this, AA, OptLevel).Run(Level);
7968 }