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