OSDN Git Service

Revert "SelectionDAG: Teach the legalizer to split SETCC if VSELECT needs splitting...
[android-x86/external-llvm.git] / lib / CodeGen / SelectionDAG / DAGCombiner.cpp
1 //===-- DAGCombiner.cpp - Implement a DAG node combiner -------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This pass combines dag nodes to form fewer, simpler DAG nodes.  It can be run
11 // both before and after the DAG is legalized.
12 //
13 // This pass is not a substitute for the LLVM IR instcombine pass. This pass is
14 // primarily intended to handle simplification opportunities that are implicit
15 // in the LLVM IR and exposed by the various codegen lowering phases.
16 //
17 //===----------------------------------------------------------------------===//
18
19 #define DEBUG_TYPE "dagcombine"
20 #include "llvm/CodeGen/SelectionDAG.h"
21 #include "llvm/ADT/SmallPtrSet.h"
22 #include "llvm/ADT/Statistic.h"
23 #include "llvm/Analysis/AliasAnalysis.h"
24 #include "llvm/CodeGen/MachineFrameInfo.h"
25 #include "llvm/CodeGen/MachineFunction.h"
26 #include "llvm/IR/DataLayout.h"
27 #include "llvm/IR/DerivedTypes.h"
28 #include "llvm/IR/Function.h"
29 #include "llvm/IR/LLVMContext.h"
30 #include "llvm/Support/CommandLine.h"
31 #include "llvm/Support/Debug.h"
32 #include "llvm/Support/ErrorHandling.h"
33 #include "llvm/Support/MathExtras.h"
34 #include "llvm/Support/raw_ostream.h"
35 #include "llvm/Target/TargetLowering.h"
36 #include "llvm/Target/TargetMachine.h"
37 #include "llvm/Target/TargetOptions.h"
38 #include "llvm/Target/TargetSubtargetInfo.h"
39 #include <algorithm>
40 using namespace llvm;
41
42 STATISTIC(NodesCombined   , "Number of dag nodes combined");
43 STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created");
44 STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created");
45 STATISTIC(OpsNarrowed     , "Number of load/op/store narrowed");
46 STATISTIC(LdStFP2Int      , "Number of fp load/store pairs transformed to int");
47
48 namespace {
49   static cl::opt<bool>
50     CombinerAA("combiner-alias-analysis", cl::Hidden,
51                cl::desc("Turn on alias analysis during testing"));
52
53   static cl::opt<bool>
54     CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden,
55                cl::desc("Include global information in alias analysis"));
56
57 //------------------------------ DAGCombiner ---------------------------------//
58
59   class DAGCombiner {
60     SelectionDAG &DAG;
61     const TargetLowering &TLI;
62     CombineLevel Level;
63     CodeGenOpt::Level OptLevel;
64     bool LegalOperations;
65     bool LegalTypes;
66
67     // Worklist of all of the nodes that need to be simplified.
68     //
69     // This has the semantics that when adding to the worklist,
70     // the item added must be next to be processed. It should
71     // also only appear once. The naive approach to this takes
72     // linear time.
73     //
74     // To reduce the insert/remove time to logarithmic, we use
75     // a set and a vector to maintain our worklist.
76     //
77     // The set contains the items on the worklist, but does not
78     // maintain the order they should be visited.
79     //
80     // The vector maintains the order nodes should be visited, but may
81     // contain duplicate or removed nodes. When choosing a node to
82     // visit, we pop off the order stack until we find an item that is
83     // also in the contents set. All operations are O(log N).
84     SmallPtrSet<SDNode*, 64> WorkListContents;
85     SmallVector<SDNode*, 64> WorkListOrder;
86
87     // AA - Used for DAG load/store alias analysis.
88     AliasAnalysis &AA;
89
90     /// AddUsersToWorkList - When an instruction is simplified, add all users of
91     /// the instruction to the work lists because they might get more simplified
92     /// now.
93     ///
94     void AddUsersToWorkList(SDNode *N) {
95       for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
96            UI != UE; ++UI)
97         AddToWorkList(*UI);
98     }
99
100     /// visit - call the node-specific routine that knows how to fold each
101     /// particular type of node.
102     SDValue visit(SDNode *N);
103
104   public:
105     /// AddToWorkList - Add to the work list making sure its instance is at the
106     /// back (next to be processed.)
107     void AddToWorkList(SDNode *N) {
108       WorkListContents.insert(N);
109       WorkListOrder.push_back(N);
110     }
111
112     /// removeFromWorkList - remove all instances of N from the worklist.
113     ///
114     void removeFromWorkList(SDNode *N) {
115       WorkListContents.erase(N);
116     }
117
118     SDValue CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
119                       bool AddTo = true);
120
121     SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true) {
122       return CombineTo(N, &Res, 1, AddTo);
123     }
124
125     SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1,
126                       bool AddTo = true) {
127       SDValue To[] = { Res0, Res1 };
128       return CombineTo(N, To, 2, AddTo);
129     }
130
131     void CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO);
132
133   private:
134
135     /// SimplifyDemandedBits - Check the specified integer node value to see if
136     /// it can be simplified or if things it uses can be simplified by bit
137     /// propagation.  If so, return true.
138     bool SimplifyDemandedBits(SDValue Op) {
139       unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
140       APInt Demanded = APInt::getAllOnesValue(BitWidth);
141       return SimplifyDemandedBits(Op, Demanded);
142     }
143
144     bool SimplifyDemandedBits(SDValue Op, const APInt &Demanded);
145
146     bool CombineToPreIndexedLoadStore(SDNode *N);
147     bool CombineToPostIndexedLoadStore(SDNode *N);
148
149     void ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad);
150     SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
151     SDValue SExtPromoteOperand(SDValue Op, EVT PVT);
152     SDValue ZExtPromoteOperand(SDValue Op, EVT PVT);
153     SDValue PromoteIntBinOp(SDValue Op);
154     SDValue PromoteIntShiftOp(SDValue Op);
155     SDValue PromoteExtend(SDValue Op);
156     bool PromoteLoad(SDValue Op);
157
158     void ExtendSetCCUses(const SmallVectorImpl<SDNode *> &SetCCs,
159                          SDValue Trunc, SDValue ExtLoad, SDLoc DL,
160                          ISD::NodeType ExtType);
161
162     /// combine - call the node-specific routine that knows how to fold each
163     /// particular type of node. If that doesn't do anything, try the
164     /// target-specific DAG combines.
165     SDValue combine(SDNode *N);
166
167     // Visitation implementation - Implement dag node combining for different
168     // node types.  The semantics are as follows:
169     // Return Value:
170     //   SDValue.getNode() == 0 - No change was made
171     //   SDValue.getNode() == N - N was replaced, is dead and has been handled.
172     //   otherwise              - N should be replaced by the returned Operand.
173     //
174     SDValue visitTokenFactor(SDNode *N);
175     SDValue visitMERGE_VALUES(SDNode *N);
176     SDValue visitADD(SDNode *N);
177     SDValue visitSUB(SDNode *N);
178     SDValue visitADDC(SDNode *N);
179     SDValue visitSUBC(SDNode *N);
180     SDValue visitADDE(SDNode *N);
181     SDValue visitSUBE(SDNode *N);
182     SDValue visitMUL(SDNode *N);
183     SDValue visitSDIV(SDNode *N);
184     SDValue visitUDIV(SDNode *N);
185     SDValue visitSREM(SDNode *N);
186     SDValue visitUREM(SDNode *N);
187     SDValue visitMULHU(SDNode *N);
188     SDValue visitMULHS(SDNode *N);
189     SDValue visitSMUL_LOHI(SDNode *N);
190     SDValue visitUMUL_LOHI(SDNode *N);
191     SDValue visitSMULO(SDNode *N);
192     SDValue visitUMULO(SDNode *N);
193     SDValue visitSDIVREM(SDNode *N);
194     SDValue visitUDIVREM(SDNode *N);
195     SDValue visitAND(SDNode *N);
196     SDValue visitOR(SDNode *N);
197     SDValue visitXOR(SDNode *N);
198     SDValue SimplifyVBinOp(SDNode *N);
199     SDValue SimplifyVUnaryOp(SDNode *N);
200     SDValue visitSHL(SDNode *N);
201     SDValue visitSRA(SDNode *N);
202     SDValue visitSRL(SDNode *N);
203     SDValue visitCTLZ(SDNode *N);
204     SDValue visitCTLZ_ZERO_UNDEF(SDNode *N);
205     SDValue visitCTTZ(SDNode *N);
206     SDValue visitCTTZ_ZERO_UNDEF(SDNode *N);
207     SDValue visitCTPOP(SDNode *N);
208     SDValue visitSELECT(SDNode *N);
209     SDValue visitVSELECT(SDNode *N);
210     SDValue visitSELECT_CC(SDNode *N);
211     SDValue visitSETCC(SDNode *N);
212     SDValue visitSIGN_EXTEND(SDNode *N);
213     SDValue visitZERO_EXTEND(SDNode *N);
214     SDValue visitANY_EXTEND(SDNode *N);
215     SDValue visitSIGN_EXTEND_INREG(SDNode *N);
216     SDValue visitTRUNCATE(SDNode *N);
217     SDValue visitBITCAST(SDNode *N);
218     SDValue visitBUILD_PAIR(SDNode *N);
219     SDValue visitFADD(SDNode *N);
220     SDValue visitFSUB(SDNode *N);
221     SDValue visitFMUL(SDNode *N);
222     SDValue visitFMA(SDNode *N);
223     SDValue visitFDIV(SDNode *N);
224     SDValue visitFREM(SDNode *N);
225     SDValue visitFCOPYSIGN(SDNode *N);
226     SDValue visitSINT_TO_FP(SDNode *N);
227     SDValue visitUINT_TO_FP(SDNode *N);
228     SDValue visitFP_TO_SINT(SDNode *N);
229     SDValue visitFP_TO_UINT(SDNode *N);
230     SDValue visitFP_ROUND(SDNode *N);
231     SDValue visitFP_ROUND_INREG(SDNode *N);
232     SDValue visitFP_EXTEND(SDNode *N);
233     SDValue visitFNEG(SDNode *N);
234     SDValue visitFABS(SDNode *N);
235     SDValue visitFCEIL(SDNode *N);
236     SDValue visitFTRUNC(SDNode *N);
237     SDValue visitFFLOOR(SDNode *N);
238     SDValue visitBRCOND(SDNode *N);
239     SDValue visitBR_CC(SDNode *N);
240     SDValue visitLOAD(SDNode *N);
241     SDValue visitSTORE(SDNode *N);
242     SDValue visitINSERT_VECTOR_ELT(SDNode *N);
243     SDValue visitEXTRACT_VECTOR_ELT(SDNode *N);
244     SDValue visitBUILD_VECTOR(SDNode *N);
245     SDValue visitCONCAT_VECTORS(SDNode *N);
246     SDValue visitEXTRACT_SUBVECTOR(SDNode *N);
247     SDValue visitVECTOR_SHUFFLE(SDNode *N);
248
249     SDValue XformToShuffleWithZero(SDNode *N);
250     SDValue ReassociateOps(unsigned Opc, SDLoc DL, SDValue LHS, SDValue RHS);
251
252     SDValue visitShiftByConstant(SDNode *N, unsigned Amt);
253
254     bool SimplifySelectOps(SDNode *SELECT, SDValue LHS, SDValue RHS);
255     SDValue SimplifyBinOpWithSameOpcodeHands(SDNode *N);
256     SDValue SimplifySelect(SDLoc DL, SDValue N0, SDValue N1, SDValue N2);
257     SDValue SimplifySelectCC(SDLoc DL, SDValue N0, SDValue N1, SDValue N2,
258                              SDValue N3, ISD::CondCode CC,
259                              bool NotExtCompare = false);
260     SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
261                           SDLoc DL, bool foldBooleans = true);
262     SDValue SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
263                                          unsigned HiOp);
264     SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
265     SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
266     SDValue BuildSDIV(SDNode *N);
267     SDValue BuildUDIV(SDNode *N);
268     SDValue MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
269                                bool DemandHighBits = true);
270     SDValue MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1);
271     SDNode *MatchRotate(SDValue LHS, SDValue RHS, SDLoc DL);
272     SDValue ReduceLoadWidth(SDNode *N);
273     SDValue ReduceLoadOpStoreWidth(SDNode *N);
274     SDValue TransformFPLoadStorePair(SDNode *N);
275     SDValue reduceBuildVecExtToExtBuildVec(SDNode *N);
276     SDValue reduceBuildVecConvertToConvertBuildVec(SDNode *N);
277
278     SDValue GetDemandedBits(SDValue V, const APInt &Mask);
279
280     /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
281     /// looking for aliasing nodes and adding them to the Aliases vector.
282     void GatherAllAliases(SDNode *N, SDValue OriginalChain,
283                           SmallVectorImpl<SDValue> &Aliases);
284
285     /// isAlias - Return true if there is any possibility that the two addresses
286     /// overlap.
287     bool isAlias(SDValue Ptr1, int64_t Size1,
288                  const Value *SrcValue1, int SrcValueOffset1,
289                  unsigned SrcValueAlign1,
290                  const MDNode *TBAAInfo1,
291                  SDValue Ptr2, int64_t Size2,
292                  const Value *SrcValue2, int SrcValueOffset2,
293                  unsigned SrcValueAlign2,
294                  const MDNode *TBAAInfo2) const;
295
296     /// isAlias - Return true if there is any possibility that the two addresses
297     /// overlap.
298     bool isAlias(LSBaseSDNode *Op0, LSBaseSDNode *Op1);
299
300     /// FindAliasInfo - Extracts the relevant alias information from the memory
301     /// node.  Returns true if the operand was a load.
302     bool FindAliasInfo(SDNode *N,
303                        SDValue &Ptr, int64_t &Size,
304                        const Value *&SrcValue, int &SrcValueOffset,
305                        unsigned &SrcValueAlignment,
306                        const MDNode *&TBAAInfo) const;
307
308     /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
309     /// looking for a better chain (aliasing node.)
310     SDValue FindBetterChain(SDNode *N, SDValue Chain);
311
312     /// Merge consecutive store operations into a wide store.
313     /// This optimization uses wide integers or vectors when possible.
314     /// \return True if some memory operations were changed.
315     bool MergeConsecutiveStores(StoreSDNode *N);
316
317   public:
318     DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL)
319       : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes),
320         OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {}
321
322     /// Run - runs the dag combiner on all nodes in the work list
323     void Run(CombineLevel AtLevel);
324
325     SelectionDAG &getDAG() const { return DAG; }
326
327     /// getShiftAmountTy - Returns a type large enough to hold any valid
328     /// shift amount - before type legalization these can be huge.
329     EVT getShiftAmountTy(EVT LHSTy) {
330       assert(LHSTy.isInteger() && "Shift amount is not an integer type!");
331       if (LHSTy.isVector())
332         return LHSTy;
333       return LegalTypes ? TLI.getScalarShiftAmountTy(LHSTy) : TLI.getPointerTy();
334     }
335
336     /// isTypeLegal - This method returns true if we are running before type
337     /// legalization or if the specified VT is legal.
338     bool isTypeLegal(const EVT &VT) {
339       if (!LegalTypes) return true;
340       return TLI.isTypeLegal(VT);
341     }
342
343     /// getSetCCResultType - Convenience wrapper around
344     /// TargetLowering::getSetCCResultType
345     EVT getSetCCResultType(EVT VT) const {
346       return TLI.getSetCCResultType(*DAG.getContext(), VT);
347     }
348   };
349 }
350
351
352 namespace {
353 /// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
354 /// nodes from the worklist.
355 class WorkListRemover : public SelectionDAG::DAGUpdateListener {
356   DAGCombiner &DC;
357 public:
358   explicit WorkListRemover(DAGCombiner &dc)
359     : SelectionDAG::DAGUpdateListener(dc.getDAG()), DC(dc) {}
360
361   virtual void NodeDeleted(SDNode *N, SDNode *E) {
362     DC.removeFromWorkList(N);
363   }
364 };
365 }
366
367 //===----------------------------------------------------------------------===//
368 //  TargetLowering::DAGCombinerInfo implementation
369 //===----------------------------------------------------------------------===//
370
371 void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
372   ((DAGCombiner*)DC)->AddToWorkList(N);
373 }
374
375 void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) {
376   ((DAGCombiner*)DC)->removeFromWorkList(N);
377 }
378
379 SDValue TargetLowering::DAGCombinerInfo::
380 CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) {
381   return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
382 }
383
384 SDValue TargetLowering::DAGCombinerInfo::
385 CombineTo(SDNode *N, SDValue Res, bool AddTo) {
386   return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
387 }
388
389
390 SDValue TargetLowering::DAGCombinerInfo::
391 CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) {
392   return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo);
393 }
394
395 void TargetLowering::DAGCombinerInfo::
396 CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
397   return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
398 }
399
400 //===----------------------------------------------------------------------===//
401 // Helper Functions
402 //===----------------------------------------------------------------------===//
403
404 /// isNegatibleForFree - Return 1 if we can compute the negated form of the
405 /// specified expression for the same cost as the expression itself, or 2 if we
406 /// can compute the negated form more cheaply than the expression itself.
407 static char isNegatibleForFree(SDValue Op, bool LegalOperations,
408                                const TargetLowering &TLI,
409                                const TargetOptions *Options,
410                                unsigned Depth = 0) {
411   // fneg is removable even if it has multiple uses.
412   if (Op.getOpcode() == ISD::FNEG) return 2;
413
414   // Don't allow anything with multiple uses.
415   if (!Op.hasOneUse()) return 0;
416
417   // Don't recurse exponentially.
418   if (Depth > 6) return 0;
419
420   switch (Op.getOpcode()) {
421   default: return false;
422   case ISD::ConstantFP:
423     // Don't invert constant FP values after legalize.  The negated constant
424     // isn't necessarily legal.
425     return LegalOperations ? 0 : 1;
426   case ISD::FADD:
427     // FIXME: determine better conditions for this xform.
428     if (!Options->UnsafeFPMath) return 0;
429
430     // After operation legalization, it might not be legal to create new FSUBs.
431     if (LegalOperations &&
432         !TLI.isOperationLegalOrCustom(ISD::FSUB,  Op.getValueType()))
433       return 0;
434
435     // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
436     if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
437                                     Options, Depth + 1))
438       return V;
439     // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
440     return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
441                               Depth + 1);
442   case ISD::FSUB:
443     // We can't turn -(A-B) into B-A when we honor signed zeros.
444     if (!Options->UnsafeFPMath) return 0;
445
446     // fold (fneg (fsub A, B)) -> (fsub B, A)
447     return 1;
448
449   case ISD::FMUL:
450   case ISD::FDIV:
451     if (Options->HonorSignDependentRoundingFPMath()) return 0;
452
453     // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y))
454     if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI,
455                                     Options, Depth + 1))
456       return V;
457
458     return isNegatibleForFree(Op.getOperand(1), LegalOperations, TLI, Options,
459                               Depth + 1);
460
461   case ISD::FP_EXTEND:
462   case ISD::FP_ROUND:
463   case ISD::FSIN:
464     return isNegatibleForFree(Op.getOperand(0), LegalOperations, TLI, Options,
465                               Depth + 1);
466   }
467 }
468
469 /// GetNegatedExpression - If isNegatibleForFree returns true, this function
470 /// returns the newly negated expression.
471 static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
472                                     bool LegalOperations, unsigned Depth = 0) {
473   // fneg is removable even if it has multiple uses.
474   if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
475
476   // Don't allow anything with multiple uses.
477   assert(Op.hasOneUse() && "Unknown reuse!");
478
479   assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
480   switch (Op.getOpcode()) {
481   default: llvm_unreachable("Unknown code");
482   case ISD::ConstantFP: {
483     APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
484     V.changeSign();
485     return DAG.getConstantFP(V, Op.getValueType());
486   }
487   case ISD::FADD:
488     // FIXME: determine better conditions for this xform.
489     assert(DAG.getTarget().Options.UnsafeFPMath);
490
491     // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
492     if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
493                            DAG.getTargetLoweringInfo(),
494                            &DAG.getTarget().Options, Depth+1))
495       return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(),
496                          GetNegatedExpression(Op.getOperand(0), DAG,
497                                               LegalOperations, Depth+1),
498                          Op.getOperand(1));
499     // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
500     return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(),
501                        GetNegatedExpression(Op.getOperand(1), DAG,
502                                             LegalOperations, Depth+1),
503                        Op.getOperand(0));
504   case ISD::FSUB:
505     // We can't turn -(A-B) into B-A when we honor signed zeros.
506     assert(DAG.getTarget().Options.UnsafeFPMath);
507
508     // fold (fneg (fsub 0, B)) -> B
509     if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
510       if (N0CFP->getValueAPF().isZero())
511         return Op.getOperand(1);
512
513     // fold (fneg (fsub A, B)) -> (fsub B, A)
514     return DAG.getNode(ISD::FSUB, SDLoc(Op), Op.getValueType(),
515                        Op.getOperand(1), Op.getOperand(0));
516
517   case ISD::FMUL:
518   case ISD::FDIV:
519     assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath());
520
521     // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y)
522     if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
523                            DAG.getTargetLoweringInfo(),
524                            &DAG.getTarget().Options, Depth+1))
525       return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(),
526                          GetNegatedExpression(Op.getOperand(0), DAG,
527                                               LegalOperations, Depth+1),
528                          Op.getOperand(1));
529
530     // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y))
531     return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(),
532                        Op.getOperand(0),
533                        GetNegatedExpression(Op.getOperand(1), DAG,
534                                             LegalOperations, Depth+1));
535
536   case ISD::FP_EXTEND:
537   case ISD::FSIN:
538     return DAG.getNode(Op.getOpcode(), SDLoc(Op), Op.getValueType(),
539                        GetNegatedExpression(Op.getOperand(0), DAG,
540                                             LegalOperations, Depth+1));
541   case ISD::FP_ROUND:
542       return DAG.getNode(ISD::FP_ROUND, SDLoc(Op), Op.getValueType(),
543                          GetNegatedExpression(Op.getOperand(0), DAG,
544                                               LegalOperations, Depth+1),
545                          Op.getOperand(1));
546   }
547 }
548
549
550 // isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
551 // that selects between the values 1 and 0, making it equivalent to a setcc.
552 // Also, set the incoming LHS, RHS, and CC references to the appropriate
553 // nodes based on the type of node we are checking.  This simplifies life a
554 // bit for the callers.
555 static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
556                               SDValue &CC) {
557   if (N.getOpcode() == ISD::SETCC) {
558     LHS = N.getOperand(0);
559     RHS = N.getOperand(1);
560     CC  = N.getOperand(2);
561     return true;
562   }
563   if (N.getOpcode() == ISD::SELECT_CC &&
564       N.getOperand(2).getOpcode() == ISD::Constant &&
565       N.getOperand(3).getOpcode() == ISD::Constant &&
566       cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
567       cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
568     LHS = N.getOperand(0);
569     RHS = N.getOperand(1);
570     CC  = N.getOperand(4);
571     return true;
572   }
573   return false;
574 }
575
576 // isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
577 // one use.  If this is true, it allows the users to invert the operation for
578 // free when it is profitable to do so.
579 static bool isOneUseSetCC(SDValue N) {
580   SDValue N0, N1, N2;
581   if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
582     return true;
583   return false;
584 }
585
586 SDValue DAGCombiner::ReassociateOps(unsigned Opc, SDLoc DL,
587                                     SDValue N0, SDValue N1) {
588   EVT VT = N0.getValueType();
589   if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
590     if (isa<ConstantSDNode>(N1)) {
591       // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
592       SDValue OpNode =
593         DAG.FoldConstantArithmetic(Opc, VT,
594                                    cast<ConstantSDNode>(N0.getOperand(1)),
595                                    cast<ConstantSDNode>(N1));
596       return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
597     }
598     if (N0.hasOneUse()) {
599       // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
600       SDValue OpNode = DAG.getNode(Opc, SDLoc(N0), VT,
601                                    N0.getOperand(0), N1);
602       AddToWorkList(OpNode.getNode());
603       return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
604     }
605   }
606
607   if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
608     if (isa<ConstantSDNode>(N0)) {
609       // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
610       SDValue OpNode =
611         DAG.FoldConstantArithmetic(Opc, VT,
612                                    cast<ConstantSDNode>(N1.getOperand(1)),
613                                    cast<ConstantSDNode>(N0));
614       return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
615     }
616     if (N1.hasOneUse()) {
617       // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
618       SDValue OpNode = DAG.getNode(Opc, SDLoc(N0), VT,
619                                    N1.getOperand(0), N0);
620       AddToWorkList(OpNode.getNode());
621       return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1));
622     }
623   }
624
625   return SDValue();
626 }
627
628 SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
629                                bool AddTo) {
630   assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
631   ++NodesCombined;
632   DEBUG(dbgs() << "\nReplacing.1 ";
633         N->dump(&DAG);
634         dbgs() << "\nWith: ";
635         To[0].getNode()->dump(&DAG);
636         dbgs() << " and " << NumTo-1 << " other values\n";
637         for (unsigned i = 0, e = NumTo; i != e; ++i)
638           assert((!To[i].getNode() ||
639                   N->getValueType(i) == To[i].getValueType()) &&
640                  "Cannot combine value to value of different type!"));
641   WorkListRemover DeadNodes(*this);
642   DAG.ReplaceAllUsesWith(N, To);
643   if (AddTo) {
644     // Push the new nodes and any users onto the worklist
645     for (unsigned i = 0, e = NumTo; i != e; ++i) {
646       if (To[i].getNode()) {
647         AddToWorkList(To[i].getNode());
648         AddUsersToWorkList(To[i].getNode());
649       }
650     }
651   }
652
653   // Finally, if the node is now dead, remove it from the graph.  The node
654   // may not be dead if the replacement process recursively simplified to
655   // something else needing this node.
656   if (N->use_empty()) {
657     // Nodes can be reintroduced into the worklist.  Make sure we do not
658     // process a node that has been replaced.
659     removeFromWorkList(N);
660
661     // Finally, since the node is now dead, remove it from the graph.
662     DAG.DeleteNode(N);
663   }
664   return SDValue(N, 0);
665 }
666
667 void DAGCombiner::
668 CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
669   // Replace all uses.  If any nodes become isomorphic to other nodes and
670   // are deleted, make sure to remove them from our worklist.
671   WorkListRemover DeadNodes(*this);
672   DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New);
673
674   // Push the new node and any (possibly new) users onto the worklist.
675   AddToWorkList(TLO.New.getNode());
676   AddUsersToWorkList(TLO.New.getNode());
677
678   // Finally, if the node is now dead, remove it from the graph.  The node
679   // may not be dead if the replacement process recursively simplified to
680   // something else needing this node.
681   if (TLO.Old.getNode()->use_empty()) {
682     removeFromWorkList(TLO.Old.getNode());
683
684     // If the operands of this node are only used by the node, they will now
685     // be dead.  Make sure to visit them first to delete dead nodes early.
686     for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i)
687       if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse())
688         AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode());
689
690     DAG.DeleteNode(TLO.Old.getNode());
691   }
692 }
693
694 /// SimplifyDemandedBits - Check the specified integer node value to see if
695 /// it can be simplified or if things it uses can be simplified by bit
696 /// propagation.  If so, return true.
697 bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) {
698   TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations);
699   APInt KnownZero, KnownOne;
700   if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
701     return false;
702
703   // Revisit the node.
704   AddToWorkList(Op.getNode());
705
706   // Replace the old value with the new one.
707   ++NodesCombined;
708   DEBUG(dbgs() << "\nReplacing.2 ";
709         TLO.Old.getNode()->dump(&DAG);
710         dbgs() << "\nWith: ";
711         TLO.New.getNode()->dump(&DAG);
712         dbgs() << '\n');
713
714   CommitTargetLoweringOpt(TLO);
715   return true;
716 }
717
718 void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) {
719   SDLoc dl(Load);
720   EVT VT = Load->getValueType(0);
721   SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
722
723   DEBUG(dbgs() << "\nReplacing.9 ";
724         Load->dump(&DAG);
725         dbgs() << "\nWith: ";
726         Trunc.getNode()->dump(&DAG);
727         dbgs() << '\n');
728   WorkListRemover DeadNodes(*this);
729   DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc);
730   DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1));
731   removeFromWorkList(Load);
732   DAG.DeleteNode(Load);
733   AddToWorkList(Trunc.getNode());
734 }
735
736 SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
737   Replace = false;
738   SDLoc dl(Op);
739   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
740     EVT MemVT = LD->getMemoryVT();
741     ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
742       ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
743                                                   : ISD::EXTLOAD)
744       : LD->getExtensionType();
745     Replace = true;
746     return DAG.getExtLoad(ExtType, dl, PVT,
747                           LD->getChain(), LD->getBasePtr(),
748                           LD->getPointerInfo(),
749                           MemVT, LD->isVolatile(),
750                           LD->isNonTemporal(), LD->getAlignment());
751   }
752
753   unsigned Opc = Op.getOpcode();
754   switch (Opc) {
755   default: break;
756   case ISD::AssertSext:
757     return DAG.getNode(ISD::AssertSext, dl, PVT,
758                        SExtPromoteOperand(Op.getOperand(0), PVT),
759                        Op.getOperand(1));
760   case ISD::AssertZext:
761     return DAG.getNode(ISD::AssertZext, dl, PVT,
762                        ZExtPromoteOperand(Op.getOperand(0), PVT),
763                        Op.getOperand(1));
764   case ISD::Constant: {
765     unsigned ExtOpc =
766       Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
767     return DAG.getNode(ExtOpc, dl, PVT, Op);
768   }
769   }
770
771   if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT))
772     return SDValue();
773   return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op);
774 }
775
776 SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) {
777   if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT))
778     return SDValue();
779   EVT OldVT = Op.getValueType();
780   SDLoc dl(Op);
781   bool Replace = false;
782   SDValue NewOp = PromoteOperand(Op, PVT, Replace);
783   if (NewOp.getNode() == 0)
784     return SDValue();
785   AddToWorkList(NewOp.getNode());
786
787   if (Replace)
788     ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
789   return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp,
790                      DAG.getValueType(OldVT));
791 }
792
793 SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) {
794   EVT OldVT = Op.getValueType();
795   SDLoc dl(Op);
796   bool Replace = false;
797   SDValue NewOp = PromoteOperand(Op, PVT, Replace);
798   if (NewOp.getNode() == 0)
799     return SDValue();
800   AddToWorkList(NewOp.getNode());
801
802   if (Replace)
803     ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
804   return DAG.getZeroExtendInReg(NewOp, dl, OldVT);
805 }
806
807 /// PromoteIntBinOp - Promote the specified integer binary operation if the
808 /// target indicates it is beneficial. e.g. On x86, it's usually better to
809 /// promote i16 operations to i32 since i16 instructions are longer.
810 SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) {
811   if (!LegalOperations)
812     return SDValue();
813
814   EVT VT = Op.getValueType();
815   if (VT.isVector() || !VT.isInteger())
816     return SDValue();
817
818   // If operation type is 'undesirable', e.g. i16 on x86, consider
819   // promoting it.
820   unsigned Opc = Op.getOpcode();
821   if (TLI.isTypeDesirableForOp(Opc, VT))
822     return SDValue();
823
824   EVT PVT = VT;
825   // Consult target whether it is a good idea to promote this operation and
826   // what's the right type to promote it to.
827   if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
828     assert(PVT != VT && "Don't know what type to promote to!");
829
830     bool Replace0 = false;
831     SDValue N0 = Op.getOperand(0);
832     SDValue NN0 = PromoteOperand(N0, PVT, Replace0);
833     if (NN0.getNode() == 0)
834       return SDValue();
835
836     bool Replace1 = false;
837     SDValue N1 = Op.getOperand(1);
838     SDValue NN1;
839     if (N0 == N1)
840       NN1 = NN0;
841     else {
842       NN1 = PromoteOperand(N1, PVT, Replace1);
843       if (NN1.getNode() == 0)
844         return SDValue();
845     }
846
847     AddToWorkList(NN0.getNode());
848     if (NN1.getNode())
849       AddToWorkList(NN1.getNode());
850
851     if (Replace0)
852       ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode());
853     if (Replace1)
854       ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode());
855
856     DEBUG(dbgs() << "\nPromoting ";
857           Op.getNode()->dump(&DAG));
858     SDLoc dl(Op);
859     return DAG.getNode(ISD::TRUNCATE, dl, VT,
860                        DAG.getNode(Opc, dl, PVT, NN0, NN1));
861   }
862   return SDValue();
863 }
864
865 /// PromoteIntShiftOp - Promote the specified integer shift operation if the
866 /// target indicates it is beneficial. e.g. On x86, it's usually better to
867 /// promote i16 operations to i32 since i16 instructions are longer.
868 SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) {
869   if (!LegalOperations)
870     return SDValue();
871
872   EVT VT = Op.getValueType();
873   if (VT.isVector() || !VT.isInteger())
874     return SDValue();
875
876   // If operation type is 'undesirable', e.g. i16 on x86, consider
877   // promoting it.
878   unsigned Opc = Op.getOpcode();
879   if (TLI.isTypeDesirableForOp(Opc, VT))
880     return SDValue();
881
882   EVT PVT = VT;
883   // Consult target whether it is a good idea to promote this operation and
884   // what's the right type to promote it to.
885   if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
886     assert(PVT != VT && "Don't know what type to promote to!");
887
888     bool Replace = false;
889     SDValue N0 = Op.getOperand(0);
890     if (Opc == ISD::SRA)
891       N0 = SExtPromoteOperand(Op.getOperand(0), PVT);
892     else if (Opc == ISD::SRL)
893       N0 = ZExtPromoteOperand(Op.getOperand(0), PVT);
894     else
895       N0 = PromoteOperand(N0, PVT, Replace);
896     if (N0.getNode() == 0)
897       return SDValue();
898
899     AddToWorkList(N0.getNode());
900     if (Replace)
901       ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode());
902
903     DEBUG(dbgs() << "\nPromoting ";
904           Op.getNode()->dump(&DAG));
905     SDLoc dl(Op);
906     return DAG.getNode(ISD::TRUNCATE, dl, VT,
907                        DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1)));
908   }
909   return SDValue();
910 }
911
912 SDValue DAGCombiner::PromoteExtend(SDValue Op) {
913   if (!LegalOperations)
914     return SDValue();
915
916   EVT VT = Op.getValueType();
917   if (VT.isVector() || !VT.isInteger())
918     return SDValue();
919
920   // If operation type is 'undesirable', e.g. i16 on x86, consider
921   // promoting it.
922   unsigned Opc = Op.getOpcode();
923   if (TLI.isTypeDesirableForOp(Opc, VT))
924     return SDValue();
925
926   EVT PVT = VT;
927   // Consult target whether it is a good idea to promote this operation and
928   // what's the right type to promote it to.
929   if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
930     assert(PVT != VT && "Don't know what type to promote to!");
931     // fold (aext (aext x)) -> (aext x)
932     // fold (aext (zext x)) -> (zext x)
933     // fold (aext (sext x)) -> (sext x)
934     DEBUG(dbgs() << "\nPromoting ";
935           Op.getNode()->dump(&DAG));
936     return DAG.getNode(Op.getOpcode(), SDLoc(Op), VT, Op.getOperand(0));
937   }
938   return SDValue();
939 }
940
941 bool DAGCombiner::PromoteLoad(SDValue Op) {
942   if (!LegalOperations)
943     return false;
944
945   EVT VT = Op.getValueType();
946   if (VT.isVector() || !VT.isInteger())
947     return false;
948
949   // If operation type is 'undesirable', e.g. i16 on x86, consider
950   // promoting it.
951   unsigned Opc = Op.getOpcode();
952   if (TLI.isTypeDesirableForOp(Opc, VT))
953     return false;
954
955   EVT PVT = VT;
956   // Consult target whether it is a good idea to promote this operation and
957   // what's the right type to promote it to.
958   if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
959     assert(PVT != VT && "Don't know what type to promote to!");
960
961     SDLoc dl(Op);
962     SDNode *N = Op.getNode();
963     LoadSDNode *LD = cast<LoadSDNode>(N);
964     EVT MemVT = LD->getMemoryVT();
965     ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
966       ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
967                                                   : ISD::EXTLOAD)
968       : LD->getExtensionType();
969     SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT,
970                                    LD->getChain(), LD->getBasePtr(),
971                                    LD->getPointerInfo(),
972                                    MemVT, LD->isVolatile(),
973                                    LD->isNonTemporal(), LD->getAlignment());
974     SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD);
975
976     DEBUG(dbgs() << "\nPromoting ";
977           N->dump(&DAG);
978           dbgs() << "\nTo: ";
979           Result.getNode()->dump(&DAG);
980           dbgs() << '\n');
981     WorkListRemover DeadNodes(*this);
982     DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
983     DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1));
984     removeFromWorkList(N);
985     DAG.DeleteNode(N);
986     AddToWorkList(Result.getNode());
987     return true;
988   }
989   return false;
990 }
991
992
993 //===----------------------------------------------------------------------===//
994 //  Main DAG Combiner implementation
995 //===----------------------------------------------------------------------===//
996
997 void DAGCombiner::Run(CombineLevel AtLevel) {
998   // set the instance variables, so that the various visit routines may use it.
999   Level = AtLevel;
1000   LegalOperations = Level >= AfterLegalizeVectorOps;
1001   LegalTypes = Level >= AfterLegalizeTypes;
1002
1003   // Add all the dag nodes to the worklist.
1004   for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
1005        E = DAG.allnodes_end(); I != E; ++I)
1006     AddToWorkList(I);
1007
1008   // Create a dummy node (which is not added to allnodes), that adds a reference
1009   // to the root node, preventing it from being deleted, and tracking any
1010   // changes of the root.
1011   HandleSDNode Dummy(DAG.getRoot());
1012
1013   // The root of the dag may dangle to deleted nodes until the dag combiner is
1014   // done.  Set it to null to avoid confusion.
1015   DAG.setRoot(SDValue());
1016
1017   // while the worklist isn't empty, find a node and
1018   // try and combine it.
1019   while (!WorkListContents.empty()) {
1020     SDNode *N;
1021     // The WorkListOrder holds the SDNodes in order, but it may contain duplicates.
1022     // In order to avoid a linear scan, we use a set (O(log N)) to hold what the
1023     // worklist *should* contain, and check the node we want to visit is should
1024     // actually be visited.
1025     do {
1026       N = WorkListOrder.pop_back_val();
1027     } while (!WorkListContents.erase(N));
1028
1029     // If N has no uses, it is dead.  Make sure to revisit all N's operands once
1030     // N is deleted from the DAG, since they too may now be dead or may have a
1031     // reduced number of uses, allowing other xforms.
1032     if (N->use_empty() && N != &Dummy) {
1033       for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1034         AddToWorkList(N->getOperand(i).getNode());
1035
1036       DAG.DeleteNode(N);
1037       continue;
1038     }
1039
1040     SDValue RV = combine(N);
1041
1042     if (RV.getNode() == 0)
1043       continue;
1044
1045     ++NodesCombined;
1046
1047     // If we get back the same node we passed in, rather than a new node or
1048     // zero, we know that the node must have defined multiple values and
1049     // CombineTo was used.  Since CombineTo takes care of the worklist
1050     // mechanics for us, we have no work to do in this case.
1051     if (RV.getNode() == N)
1052       continue;
1053
1054     assert(N->getOpcode() != ISD::DELETED_NODE &&
1055            RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
1056            "Node was deleted but visit returned new node!");
1057
1058     DEBUG(dbgs() << "\nReplacing.3 ";
1059           N->dump(&DAG);
1060           dbgs() << "\nWith: ";
1061           RV.getNode()->dump(&DAG);
1062           dbgs() << '\n');
1063
1064     // Transfer debug value.
1065     DAG.TransferDbgValues(SDValue(N, 0), RV);
1066     WorkListRemover DeadNodes(*this);
1067     if (N->getNumValues() == RV.getNode()->getNumValues())
1068       DAG.ReplaceAllUsesWith(N, RV.getNode());
1069     else {
1070       assert(N->getValueType(0) == RV.getValueType() &&
1071              N->getNumValues() == 1 && "Type mismatch");
1072       SDValue OpV = RV;
1073       DAG.ReplaceAllUsesWith(N, &OpV);
1074     }
1075
1076     // Push the new node and any users onto the worklist
1077     AddToWorkList(RV.getNode());
1078     AddUsersToWorkList(RV.getNode());
1079
1080     // Add any uses of the old node to the worklist in case this node is the
1081     // last one that uses them.  They may become dead after this node is
1082     // deleted.
1083     for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1084       AddToWorkList(N->getOperand(i).getNode());
1085
1086     // Finally, if the node is now dead, remove it from the graph.  The node
1087     // may not be dead if the replacement process recursively simplified to
1088     // something else needing this node.
1089     if (N->use_empty()) {
1090       // Nodes can be reintroduced into the worklist.  Make sure we do not
1091       // process a node that has been replaced.
1092       removeFromWorkList(N);
1093
1094       // Finally, since the node is now dead, remove it from the graph.
1095       DAG.DeleteNode(N);
1096     }
1097   }
1098
1099   // If the root changed (e.g. it was a dead load, update the root).
1100   DAG.setRoot(Dummy.getValue());
1101   DAG.RemoveDeadNodes();
1102 }
1103
1104 SDValue DAGCombiner::visit(SDNode *N) {
1105   switch (N->getOpcode()) {
1106   default: break;
1107   case ISD::TokenFactor:        return visitTokenFactor(N);
1108   case ISD::MERGE_VALUES:       return visitMERGE_VALUES(N);
1109   case ISD::ADD:                return visitADD(N);
1110   case ISD::SUB:                return visitSUB(N);
1111   case ISD::ADDC:               return visitADDC(N);
1112   case ISD::SUBC:               return visitSUBC(N);
1113   case ISD::ADDE:               return visitADDE(N);
1114   case ISD::SUBE:               return visitSUBE(N);
1115   case ISD::MUL:                return visitMUL(N);
1116   case ISD::SDIV:               return visitSDIV(N);
1117   case ISD::UDIV:               return visitUDIV(N);
1118   case ISD::SREM:               return visitSREM(N);
1119   case ISD::UREM:               return visitUREM(N);
1120   case ISD::MULHU:              return visitMULHU(N);
1121   case ISD::MULHS:              return visitMULHS(N);
1122   case ISD::SMUL_LOHI:          return visitSMUL_LOHI(N);
1123   case ISD::UMUL_LOHI:          return visitUMUL_LOHI(N);
1124   case ISD::SMULO:              return visitSMULO(N);
1125   case ISD::UMULO:              return visitUMULO(N);
1126   case ISD::SDIVREM:            return visitSDIVREM(N);
1127   case ISD::UDIVREM:            return visitUDIVREM(N);
1128   case ISD::AND:                return visitAND(N);
1129   case ISD::OR:                 return visitOR(N);
1130   case ISD::XOR:                return visitXOR(N);
1131   case ISD::SHL:                return visitSHL(N);
1132   case ISD::SRA:                return visitSRA(N);
1133   case ISD::SRL:                return visitSRL(N);
1134   case ISD::CTLZ:               return visitCTLZ(N);
1135   case ISD::CTLZ_ZERO_UNDEF:    return visitCTLZ_ZERO_UNDEF(N);
1136   case ISD::CTTZ:               return visitCTTZ(N);
1137   case ISD::CTTZ_ZERO_UNDEF:    return visitCTTZ_ZERO_UNDEF(N);
1138   case ISD::CTPOP:              return visitCTPOP(N);
1139   case ISD::SELECT:             return visitSELECT(N);
1140   case ISD::VSELECT:            return visitVSELECT(N);
1141   case ISD::SELECT_CC:          return visitSELECT_CC(N);
1142   case ISD::SETCC:              return visitSETCC(N);
1143   case ISD::SIGN_EXTEND:        return visitSIGN_EXTEND(N);
1144   case ISD::ZERO_EXTEND:        return visitZERO_EXTEND(N);
1145   case ISD::ANY_EXTEND:         return visitANY_EXTEND(N);
1146   case ISD::SIGN_EXTEND_INREG:  return visitSIGN_EXTEND_INREG(N);
1147   case ISD::TRUNCATE:           return visitTRUNCATE(N);
1148   case ISD::BITCAST:            return visitBITCAST(N);
1149   case ISD::BUILD_PAIR:         return visitBUILD_PAIR(N);
1150   case ISD::FADD:               return visitFADD(N);
1151   case ISD::FSUB:               return visitFSUB(N);
1152   case ISD::FMUL:               return visitFMUL(N);
1153   case ISD::FMA:                return visitFMA(N);
1154   case ISD::FDIV:               return visitFDIV(N);
1155   case ISD::FREM:               return visitFREM(N);
1156   case ISD::FCOPYSIGN:          return visitFCOPYSIGN(N);
1157   case ISD::SINT_TO_FP:         return visitSINT_TO_FP(N);
1158   case ISD::UINT_TO_FP:         return visitUINT_TO_FP(N);
1159   case ISD::FP_TO_SINT:         return visitFP_TO_SINT(N);
1160   case ISD::FP_TO_UINT:         return visitFP_TO_UINT(N);
1161   case ISD::FP_ROUND:           return visitFP_ROUND(N);
1162   case ISD::FP_ROUND_INREG:     return visitFP_ROUND_INREG(N);
1163   case ISD::FP_EXTEND:          return visitFP_EXTEND(N);
1164   case ISD::FNEG:               return visitFNEG(N);
1165   case ISD::FABS:               return visitFABS(N);
1166   case ISD::FFLOOR:             return visitFFLOOR(N);
1167   case ISD::FCEIL:              return visitFCEIL(N);
1168   case ISD::FTRUNC:             return visitFTRUNC(N);
1169   case ISD::BRCOND:             return visitBRCOND(N);
1170   case ISD::BR_CC:              return visitBR_CC(N);
1171   case ISD::LOAD:               return visitLOAD(N);
1172   case ISD::STORE:              return visitSTORE(N);
1173   case ISD::INSERT_VECTOR_ELT:  return visitINSERT_VECTOR_ELT(N);
1174   case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
1175   case ISD::BUILD_VECTOR:       return visitBUILD_VECTOR(N);
1176   case ISD::CONCAT_VECTORS:     return visitCONCAT_VECTORS(N);
1177   case ISD::EXTRACT_SUBVECTOR:  return visitEXTRACT_SUBVECTOR(N);
1178   case ISD::VECTOR_SHUFFLE:     return visitVECTOR_SHUFFLE(N);
1179   }
1180   return SDValue();
1181 }
1182
1183 SDValue DAGCombiner::combine(SDNode *N) {
1184   SDValue RV = visit(N);
1185
1186   // If nothing happened, try a target-specific DAG combine.
1187   if (RV.getNode() == 0) {
1188     assert(N->getOpcode() != ISD::DELETED_NODE &&
1189            "Node was deleted but visit returned NULL!");
1190
1191     if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1192         TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1193
1194       // Expose the DAG combiner to the target combiner impls.
1195       TargetLowering::DAGCombinerInfo
1196         DagCombineInfo(DAG, Level, false, this);
1197
1198       RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1199     }
1200   }
1201
1202   // If nothing happened still, try promoting the operation.
1203   if (RV.getNode() == 0) {
1204     switch (N->getOpcode()) {
1205     default: break;
1206     case ISD::ADD:
1207     case ISD::SUB:
1208     case ISD::MUL:
1209     case ISD::AND:
1210     case ISD::OR:
1211     case ISD::XOR:
1212       RV = PromoteIntBinOp(SDValue(N, 0));
1213       break;
1214     case ISD::SHL:
1215     case ISD::SRA:
1216     case ISD::SRL:
1217       RV = PromoteIntShiftOp(SDValue(N, 0));
1218       break;
1219     case ISD::SIGN_EXTEND:
1220     case ISD::ZERO_EXTEND:
1221     case ISD::ANY_EXTEND:
1222       RV = PromoteExtend(SDValue(N, 0));
1223       break;
1224     case ISD::LOAD:
1225       if (PromoteLoad(SDValue(N, 0)))
1226         RV = SDValue(N, 0);
1227       break;
1228     }
1229   }
1230
1231   // If N is a commutative binary node, try commuting it to enable more
1232   // sdisel CSE.
1233   if (RV.getNode() == 0 &&
1234       SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1235       N->getNumValues() == 1) {
1236     SDValue N0 = N->getOperand(0);
1237     SDValue N1 = N->getOperand(1);
1238
1239     // Constant operands are canonicalized to RHS.
1240     if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
1241       SDValue Ops[] = { N1, N0 };
1242       SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1243                                             Ops, 2);
1244       if (CSENode)
1245         return SDValue(CSENode, 0);
1246     }
1247   }
1248
1249   return RV;
1250 }
1251
1252 /// getInputChainForNode - Given a node, return its input chain if it has one,
1253 /// otherwise return a null sd operand.
1254 static SDValue getInputChainForNode(SDNode *N) {
1255   if (unsigned NumOps = N->getNumOperands()) {
1256     if (N->getOperand(0).getValueType() == MVT::Other)
1257       return N->getOperand(0);
1258     if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
1259       return N->getOperand(NumOps-1);
1260     for (unsigned i = 1; i < NumOps-1; ++i)
1261       if (N->getOperand(i).getValueType() == MVT::Other)
1262         return N->getOperand(i);
1263   }
1264   return SDValue();
1265 }
1266
1267 SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
1268   // If N has two operands, where one has an input chain equal to the other,
1269   // the 'other' chain is redundant.
1270   if (N->getNumOperands() == 2) {
1271     if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
1272       return N->getOperand(0);
1273     if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
1274       return N->getOperand(1);
1275   }
1276
1277   SmallVector<SDNode *, 8> TFs;     // List of token factors to visit.
1278   SmallVector<SDValue, 8> Ops;    // Ops for replacing token factor.
1279   SmallPtrSet<SDNode*, 16> SeenOps;
1280   bool Changed = false;             // If we should replace this token factor.
1281
1282   // Start out with this token factor.
1283   TFs.push_back(N);
1284
1285   // Iterate through token factors.  The TFs grows when new token factors are
1286   // encountered.
1287   for (unsigned i = 0; i < TFs.size(); ++i) {
1288     SDNode *TF = TFs[i];
1289
1290     // Check each of the operands.
1291     for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
1292       SDValue Op = TF->getOperand(i);
1293
1294       switch (Op.getOpcode()) {
1295       case ISD::EntryToken:
1296         // Entry tokens don't need to be added to the list. They are
1297         // rededundant.
1298         Changed = true;
1299         break;
1300
1301       case ISD::TokenFactor:
1302         if (Op.hasOneUse() &&
1303             std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
1304           // Queue up for processing.
1305           TFs.push_back(Op.getNode());
1306           // Clean up in case the token factor is removed.
1307           AddToWorkList(Op.getNode());
1308           Changed = true;
1309           break;
1310         }
1311         // Fall thru
1312
1313       default:
1314         // Only add if it isn't already in the list.
1315         if (SeenOps.insert(Op.getNode()))
1316           Ops.push_back(Op);
1317         else
1318           Changed = true;
1319         break;
1320       }
1321     }
1322   }
1323
1324   SDValue Result;
1325
1326   // If we've change things around then replace token factor.
1327   if (Changed) {
1328     if (Ops.empty()) {
1329       // The entry token is the only possible outcome.
1330       Result = DAG.getEntryNode();
1331     } else {
1332       // New and improved token factor.
1333       Result = DAG.getNode(ISD::TokenFactor, SDLoc(N),
1334                            MVT::Other, &Ops[0], Ops.size());
1335     }
1336
1337     // Don't add users to work list.
1338     return CombineTo(N, Result, false);
1339   }
1340
1341   return Result;
1342 }
1343
1344 /// MERGE_VALUES can always be eliminated.
1345 SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
1346   WorkListRemover DeadNodes(*this);
1347   // Replacing results may cause a different MERGE_VALUES to suddenly
1348   // be CSE'd with N, and carry its uses with it. Iterate until no
1349   // uses remain, to ensure that the node can be safely deleted.
1350   // First add the users of this node to the work list so that they
1351   // can be tried again once they have new operands.
1352   AddUsersToWorkList(N);
1353   do {
1354     for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1355       DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i));
1356   } while (!N->use_empty());
1357   removeFromWorkList(N);
1358   DAG.DeleteNode(N);
1359   return SDValue(N, 0);   // Return N so it doesn't get rechecked!
1360 }
1361
1362 static
1363 SDValue combineShlAddConstant(SDLoc DL, SDValue N0, SDValue N1,
1364                               SelectionDAG &DAG) {
1365   EVT VT = N0.getValueType();
1366   SDValue N00 = N0.getOperand(0);
1367   SDValue N01 = N0.getOperand(1);
1368   ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
1369
1370   if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
1371       isa<ConstantSDNode>(N00.getOperand(1))) {
1372     // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1373     N0 = DAG.getNode(ISD::ADD, SDLoc(N0), VT,
1374                      DAG.getNode(ISD::SHL, SDLoc(N00), VT,
1375                                  N00.getOperand(0), N01),
1376                      DAG.getNode(ISD::SHL, SDLoc(N01), VT,
1377                                  N00.getOperand(1), N01));
1378     return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
1379   }
1380
1381   return SDValue();
1382 }
1383
1384 SDValue DAGCombiner::visitADD(SDNode *N) {
1385   SDValue N0 = N->getOperand(0);
1386   SDValue N1 = N->getOperand(1);
1387   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1388   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1389   EVT VT = N0.getValueType();
1390
1391   // fold vector ops
1392   if (VT.isVector()) {
1393     SDValue FoldedVOp = SimplifyVBinOp(N);
1394     if (FoldedVOp.getNode()) return FoldedVOp;
1395
1396     // fold (add x, 0) -> x, vector edition
1397     if (ISD::isBuildVectorAllZeros(N1.getNode()))
1398       return N0;
1399     if (ISD::isBuildVectorAllZeros(N0.getNode()))
1400       return N1;
1401   }
1402
1403   // fold (add x, undef) -> undef
1404   if (N0.getOpcode() == ISD::UNDEF)
1405     return N0;
1406   if (N1.getOpcode() == ISD::UNDEF)
1407     return N1;
1408   // fold (add c1, c2) -> c1+c2
1409   if (N0C && N1C)
1410     return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
1411   // canonicalize constant to RHS
1412   if (N0C && !N1C)
1413     return DAG.getNode(ISD::ADD, SDLoc(N), VT, N1, N0);
1414   // fold (add x, 0) -> x
1415   if (N1C && N1C->isNullValue())
1416     return N0;
1417   // fold (add Sym, c) -> Sym+c
1418   if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
1419     if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
1420         GA->getOpcode() == ISD::GlobalAddress)
1421       return DAG.getGlobalAddress(GA->getGlobal(), SDLoc(N1C), VT,
1422                                   GA->getOffset() +
1423                                     (uint64_t)N1C->getSExtValue());
1424   // fold ((c1-A)+c2) -> (c1+c2)-A
1425   if (N1C && N0.getOpcode() == ISD::SUB)
1426     if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
1427       return DAG.getNode(ISD::SUB, SDLoc(N), VT,
1428                          DAG.getConstant(N1C->getAPIntValue()+
1429                                          N0C->getAPIntValue(), VT),
1430                          N0.getOperand(1));
1431   // reassociate add
1432   SDValue RADD = ReassociateOps(ISD::ADD, SDLoc(N), N0, N1);
1433   if (RADD.getNode() != 0)
1434     return RADD;
1435   // fold ((0-A) + B) -> B-A
1436   if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1437       cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
1438     return DAG.getNode(ISD::SUB, SDLoc(N), VT, N1, N0.getOperand(1));
1439   // fold (A + (0-B)) -> A-B
1440   if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1441       cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
1442     return DAG.getNode(ISD::SUB, SDLoc(N), VT, N0, N1.getOperand(1));
1443   // fold (A+(B-A)) -> B
1444   if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
1445     return N1.getOperand(0);
1446   // fold ((B-A)+A) -> B
1447   if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1448     return N0.getOperand(0);
1449   // fold (A+(B-(A+C))) to (B-C)
1450   if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
1451       N0 == N1.getOperand(1).getOperand(0))
1452     return DAG.getNode(ISD::SUB, SDLoc(N), VT, N1.getOperand(0),
1453                        N1.getOperand(1).getOperand(1));
1454   // fold (A+(B-(C+A))) to (B-C)
1455   if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
1456       N0 == N1.getOperand(1).getOperand(1))
1457     return DAG.getNode(ISD::SUB, SDLoc(N), VT, N1.getOperand(0),
1458                        N1.getOperand(1).getOperand(0));
1459   // fold (A+((B-A)+or-C)) to (B+or-C)
1460   if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1461       N1.getOperand(0).getOpcode() == ISD::SUB &&
1462       N0 == N1.getOperand(0).getOperand(1))
1463     return DAG.getNode(N1.getOpcode(), SDLoc(N), VT,
1464                        N1.getOperand(0).getOperand(0), N1.getOperand(1));
1465
1466   // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1467   if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1468     SDValue N00 = N0.getOperand(0);
1469     SDValue N01 = N0.getOperand(1);
1470     SDValue N10 = N1.getOperand(0);
1471     SDValue N11 = N1.getOperand(1);
1472
1473     if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
1474       return DAG.getNode(ISD::SUB, SDLoc(N), VT,
1475                          DAG.getNode(ISD::ADD, SDLoc(N0), VT, N00, N10),
1476                          DAG.getNode(ISD::ADD, SDLoc(N1), VT, N01, N11));
1477   }
1478
1479   if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1480     return SDValue(N, 0);
1481
1482   // fold (a+b) -> (a|b) iff a and b share no bits.
1483   if (VT.isInteger() && !VT.isVector()) {
1484     APInt LHSZero, LHSOne;
1485     APInt RHSZero, RHSOne;
1486     DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
1487
1488     if (LHSZero.getBoolValue()) {
1489       DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
1490
1491       // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1492       // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1493       if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
1494         return DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N1);
1495     }
1496   }
1497
1498   // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1499   if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
1500     SDValue Result = combineShlAddConstant(SDLoc(N), N0, N1, DAG);
1501     if (Result.getNode()) return Result;
1502   }
1503   if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
1504     SDValue Result = combineShlAddConstant(SDLoc(N), N1, N0, DAG);
1505     if (Result.getNode()) return Result;
1506   }
1507
1508   // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1509   if (N1.getOpcode() == ISD::SHL &&
1510       N1.getOperand(0).getOpcode() == ISD::SUB)
1511     if (ConstantSDNode *C =
1512           dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1513       if (C->getAPIntValue() == 0)
1514         return DAG.getNode(ISD::SUB, SDLoc(N), VT, N0,
1515                            DAG.getNode(ISD::SHL, SDLoc(N), VT,
1516                                        N1.getOperand(0).getOperand(1),
1517                                        N1.getOperand(1)));
1518   if (N0.getOpcode() == ISD::SHL &&
1519       N0.getOperand(0).getOpcode() == ISD::SUB)
1520     if (ConstantSDNode *C =
1521           dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1522       if (C->getAPIntValue() == 0)
1523         return DAG.getNode(ISD::SUB, SDLoc(N), VT, N1,
1524                            DAG.getNode(ISD::SHL, SDLoc(N), VT,
1525                                        N0.getOperand(0).getOperand(1),
1526                                        N0.getOperand(1)));
1527
1528   if (N1.getOpcode() == ISD::AND) {
1529     SDValue AndOp0 = N1.getOperand(0);
1530     ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
1531     unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1532     unsigned DestBits = VT.getScalarType().getSizeInBits();
1533
1534     // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1535     // and similar xforms where the inner op is either ~0 or 0.
1536     if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
1537       SDLoc DL(N);
1538       return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1539     }
1540   }
1541
1542   // add (sext i1), X -> sub X, (zext i1)
1543   if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1544       N0.getOperand(0).getValueType() == MVT::i1 &&
1545       !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
1546     SDLoc DL(N);
1547     SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1548     return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1549   }
1550
1551   return SDValue();
1552 }
1553
1554 SDValue DAGCombiner::visitADDC(SDNode *N) {
1555   SDValue N0 = N->getOperand(0);
1556   SDValue N1 = N->getOperand(1);
1557   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1558   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1559   EVT VT = N0.getValueType();
1560
1561   // If the flag result is dead, turn this into an ADD.
1562   if (!N->hasAnyUseOfValue(1))
1563     return CombineTo(N, DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N1),
1564                      DAG.getNode(ISD::CARRY_FALSE,
1565                                  SDLoc(N), MVT::Glue));
1566
1567   // canonicalize constant to RHS.
1568   if (N0C && !N1C)
1569     return DAG.getNode(ISD::ADDC, SDLoc(N), N->getVTList(), N1, N0);
1570
1571   // fold (addc x, 0) -> x + no carry out
1572   if (N1C && N1C->isNullValue())
1573     return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
1574                                         SDLoc(N), MVT::Glue));
1575
1576   // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
1577   APInt LHSZero, LHSOne;
1578   APInt RHSZero, RHSOne;
1579   DAG.ComputeMaskedBits(N0, LHSZero, LHSOne);
1580
1581   if (LHSZero.getBoolValue()) {
1582     DAG.ComputeMaskedBits(N1, RHSZero, RHSOne);
1583
1584     // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1585     // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1586     if ((RHSZero & ~LHSZero) == ~LHSZero || (LHSZero & ~RHSZero) == ~RHSZero)
1587       return CombineTo(N, DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N1),
1588                        DAG.getNode(ISD::CARRY_FALSE,
1589                                    SDLoc(N), MVT::Glue));
1590   }
1591
1592   return SDValue();
1593 }
1594
1595 SDValue DAGCombiner::visitADDE(SDNode *N) {
1596   SDValue N0 = N->getOperand(0);
1597   SDValue N1 = N->getOperand(1);
1598   SDValue CarryIn = N->getOperand(2);
1599   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1600   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1601
1602   // canonicalize constant to RHS
1603   if (N0C && !N1C)
1604     return DAG.getNode(ISD::ADDE, SDLoc(N), N->getVTList(),
1605                        N1, N0, CarryIn);
1606
1607   // fold (adde x, y, false) -> (addc x, y)
1608   if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
1609     return DAG.getNode(ISD::ADDC, SDLoc(N), N->getVTList(), N0, N1);
1610
1611   return SDValue();
1612 }
1613
1614 // Since it may not be valid to emit a fold to zero for vector initializers
1615 // check if we can before folding.
1616 static SDValue tryFoldToZero(SDLoc DL, const TargetLowering &TLI, EVT VT,
1617                              SelectionDAG &DAG,
1618                              bool LegalOperations, bool LegalTypes) {
1619   if (!VT.isVector())
1620     return DAG.getConstant(0, VT);
1621   if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
1622     // Produce a vector of zeros.
1623     EVT ElemTy = VT.getVectorElementType();
1624     if (LegalTypes && TLI.getTypeAction(*DAG.getContext(), ElemTy) ==
1625                       TargetLowering::TypePromoteInteger)
1626       ElemTy = TLI.getTypeToTransformTo(*DAG.getContext(), ElemTy);
1627     assert((!LegalTypes || TLI.isTypeLegal(ElemTy)) &&
1628            "Type for zero vector elements is not legal");
1629     SDValue El = DAG.getConstant(0, ElemTy);
1630     std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1631     return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1632       &Ops[0], Ops.size());
1633   }
1634   return SDValue();
1635 }
1636
1637 SDValue DAGCombiner::visitSUB(SDNode *N) {
1638   SDValue N0 = N->getOperand(0);
1639   SDValue N1 = N->getOperand(1);
1640   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1641   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
1642   ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1643     dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
1644   EVT VT = N0.getValueType();
1645
1646   // fold vector ops
1647   if (VT.isVector()) {
1648     SDValue FoldedVOp = SimplifyVBinOp(N);
1649     if (FoldedVOp.getNode()) return FoldedVOp;
1650
1651     // fold (sub x, 0) -> x, vector edition
1652     if (ISD::isBuildVectorAllZeros(N1.getNode()))
1653       return N0;
1654   }
1655
1656   // fold (sub x, x) -> 0
1657   // FIXME: Refactor this and xor and other similar operations together.
1658   if (N0 == N1)
1659     return tryFoldToZero(SDLoc(N), TLI, VT, DAG, LegalOperations, LegalTypes);
1660   // fold (sub c1, c2) -> c1-c2
1661   if (N0C && N1C)
1662     return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
1663   // fold (sub x, c) -> (add x, -c)
1664   if (N1C)
1665     return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0,
1666                        DAG.getConstant(-N1C->getAPIntValue(), VT));
1667   // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1668   if (N0C && N0C->isAllOnesValue())
1669     return DAG.getNode(ISD::XOR, SDLoc(N), VT, N1, N0);
1670   // fold A-(A-B) -> B
1671   if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1672     return N1.getOperand(1);
1673   // fold (A+B)-A -> B
1674   if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
1675     return N0.getOperand(1);
1676   // fold (A+B)-B -> A
1677   if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
1678     return N0.getOperand(0);
1679   // fold C2-(A+C1) -> (C2-C1)-A
1680   if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
1681     SDValue NewC = DAG.getConstant(N0C->getAPIntValue() - N1C1->getAPIntValue(),
1682                                    VT);
1683     return DAG.getNode(ISD::SUB, SDLoc(N), VT, NewC,
1684                        N1.getOperand(0));
1685   }
1686   // fold ((A+(B+or-C))-B) -> A+or-C
1687   if (N0.getOpcode() == ISD::ADD &&
1688       (N0.getOperand(1).getOpcode() == ISD::SUB ||
1689        N0.getOperand(1).getOpcode() == ISD::ADD) &&
1690       N0.getOperand(1).getOperand(0) == N1)
1691     return DAG.getNode(N0.getOperand(1).getOpcode(), SDLoc(N), VT,
1692                        N0.getOperand(0), N0.getOperand(1).getOperand(1));
1693   // fold ((A+(C+B))-B) -> A+C
1694   if (N0.getOpcode() == ISD::ADD &&
1695       N0.getOperand(1).getOpcode() == ISD::ADD &&
1696       N0.getOperand(1).getOperand(1) == N1)
1697     return DAG.getNode(ISD::ADD, SDLoc(N), VT,
1698                        N0.getOperand(0), N0.getOperand(1).getOperand(0));
1699   // fold ((A-(B-C))-C) -> A-B
1700   if (N0.getOpcode() == ISD::SUB &&
1701       N0.getOperand(1).getOpcode() == ISD::SUB &&
1702       N0.getOperand(1).getOperand(1) == N1)
1703     return DAG.getNode(ISD::SUB, SDLoc(N), VT,
1704                        N0.getOperand(0), N0.getOperand(1).getOperand(0));
1705
1706   // If either operand of a sub is undef, the result is undef
1707   if (N0.getOpcode() == ISD::UNDEF)
1708     return N0;
1709   if (N1.getOpcode() == ISD::UNDEF)
1710     return N1;
1711
1712   // If the relocation model supports it, consider symbol offsets.
1713   if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
1714     if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
1715       // fold (sub Sym, c) -> Sym-c
1716       if (N1C && GA->getOpcode() == ISD::GlobalAddress)
1717         return DAG.getGlobalAddress(GA->getGlobal(), SDLoc(N1C), VT,
1718                                     GA->getOffset() -
1719                                       (uint64_t)N1C->getSExtValue());
1720       // fold (sub Sym+c1, Sym+c2) -> c1-c2
1721       if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1722         if (GA->getGlobal() == GB->getGlobal())
1723           return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1724                                  VT);
1725     }
1726
1727   return SDValue();
1728 }
1729
1730 SDValue DAGCombiner::visitSUBC(SDNode *N) {
1731   SDValue N0 = N->getOperand(0);
1732   SDValue N1 = N->getOperand(1);
1733   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1734   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1735   EVT VT = N0.getValueType();
1736
1737   // If the flag result is dead, turn this into an SUB.
1738   if (!N->hasAnyUseOfValue(1))
1739     return CombineTo(N, DAG.getNode(ISD::SUB, SDLoc(N), VT, N0, N1),
1740                      DAG.getNode(ISD::CARRY_FALSE, SDLoc(N),
1741                                  MVT::Glue));
1742
1743   // fold (subc x, x) -> 0 + no borrow
1744   if (N0 == N1)
1745     return CombineTo(N, DAG.getConstant(0, VT),
1746                      DAG.getNode(ISD::CARRY_FALSE, SDLoc(N),
1747                                  MVT::Glue));
1748
1749   // fold (subc x, 0) -> x + no borrow
1750   if (N1C && N1C->isNullValue())
1751     return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, SDLoc(N),
1752                                         MVT::Glue));
1753
1754   // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1755   if (N0C && N0C->isAllOnesValue())
1756     return CombineTo(N, DAG.getNode(ISD::XOR, SDLoc(N), VT, N1, N0),
1757                      DAG.getNode(ISD::CARRY_FALSE, SDLoc(N),
1758                                  MVT::Glue));
1759
1760   return SDValue();
1761 }
1762
1763 SDValue DAGCombiner::visitSUBE(SDNode *N) {
1764   SDValue N0 = N->getOperand(0);
1765   SDValue N1 = N->getOperand(1);
1766   SDValue CarryIn = N->getOperand(2);
1767
1768   // fold (sube x, y, false) -> (subc x, y)
1769   if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
1770     return DAG.getNode(ISD::SUBC, SDLoc(N), N->getVTList(), N0, N1);
1771
1772   return SDValue();
1773 }
1774
1775 /// isConstantSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
1776 /// all the same constant or undefined.
1777 static bool isConstantSplatVector(SDNode *N, APInt& SplatValue) {
1778   BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(N);
1779   if (!C)
1780     return false;
1781
1782   APInt SplatUndef;
1783   unsigned SplatBitSize;
1784   bool HasAnyUndefs;
1785   EVT EltVT = N->getValueType(0).getVectorElementType();
1786   return (C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
1787                              HasAnyUndefs) &&
1788           EltVT.getSizeInBits() >= SplatBitSize);
1789 }
1790
1791 SDValue DAGCombiner::visitMUL(SDNode *N) {
1792   SDValue N0 = N->getOperand(0);
1793   SDValue N1 = N->getOperand(1);
1794   EVT VT = N0.getValueType();
1795
1796   // fold (mul x, undef) -> 0
1797   if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
1798     return DAG.getConstant(0, VT);
1799
1800   bool N0IsConst = false;
1801   bool N1IsConst = false;
1802   APInt ConstValue0, ConstValue1;
1803   // fold vector ops
1804   if (VT.isVector()) {
1805     SDValue FoldedVOp = SimplifyVBinOp(N);
1806     if (FoldedVOp.getNode()) return FoldedVOp;
1807
1808     N0IsConst = isConstantSplatVector(N0.getNode(), ConstValue0);
1809     N1IsConst = isConstantSplatVector(N1.getNode(), ConstValue1);
1810   } else {
1811     N0IsConst = dyn_cast<ConstantSDNode>(N0) != 0;
1812     ConstValue0 = N0IsConst? (dyn_cast<ConstantSDNode>(N0))->getAPIntValue() : APInt();
1813     N1IsConst = dyn_cast<ConstantSDNode>(N1) != 0;
1814     ConstValue1 = N1IsConst? (dyn_cast<ConstantSDNode>(N1))->getAPIntValue() : APInt();
1815   }
1816
1817   // fold (mul c1, c2) -> c1*c2
1818   if (N0IsConst && N1IsConst)
1819     return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0.getNode(), N1.getNode());
1820
1821   // canonicalize constant to RHS
1822   if (N0IsConst && !N1IsConst)
1823     return DAG.getNode(ISD::MUL, SDLoc(N), VT, N1, N0);
1824   // fold (mul x, 0) -> 0
1825   if (N1IsConst && ConstValue1 == 0)
1826     return N1;
1827   // We require a splat of the entire scalar bit width for non-contiguous
1828   // bit patterns.
1829   bool IsFullSplat =
1830     ConstValue1.getBitWidth() == VT.getScalarType().getSizeInBits();
1831   // fold (mul x, 1) -> x
1832   if (N1IsConst && ConstValue1 == 1 && IsFullSplat)
1833     return N0;
1834   // fold (mul x, -1) -> 0-x
1835   if (N1IsConst && ConstValue1.isAllOnesValue())
1836     return DAG.getNode(ISD::SUB, SDLoc(N), VT,
1837                        DAG.getConstant(0, VT), N0);
1838   // fold (mul x, (1 << c)) -> x << c
1839   if (N1IsConst && ConstValue1.isPowerOf2() && IsFullSplat)
1840     return DAG.getNode(ISD::SHL, SDLoc(N), VT, N0,
1841                        DAG.getConstant(ConstValue1.logBase2(),
1842                                        getShiftAmountTy(N0.getValueType())));
1843   // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
1844   if (N1IsConst && (-ConstValue1).isPowerOf2() && IsFullSplat) {
1845     unsigned Log2Val = (-ConstValue1).logBase2();
1846     // FIXME: If the input is something that is easily negated (e.g. a
1847     // single-use add), we should put the negate there.
1848     return DAG.getNode(ISD::SUB, SDLoc(N), VT,
1849                        DAG.getConstant(0, VT),
1850                        DAG.getNode(ISD::SHL, SDLoc(N), VT, N0,
1851                             DAG.getConstant(Log2Val,
1852                                       getShiftAmountTy(N0.getValueType()))));
1853   }
1854
1855   APInt Val;
1856   // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
1857   if (N1IsConst && N0.getOpcode() == ISD::SHL &&
1858       (isConstantSplatVector(N0.getOperand(1).getNode(), Val) ||
1859                      isa<ConstantSDNode>(N0.getOperand(1)))) {
1860     SDValue C3 = DAG.getNode(ISD::SHL, SDLoc(N), VT,
1861                              N1, N0.getOperand(1));
1862     AddToWorkList(C3.getNode());
1863     return DAG.getNode(ISD::MUL, SDLoc(N), VT,
1864                        N0.getOperand(0), C3);
1865   }
1866
1867   // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1868   // use.
1869   {
1870     SDValue Sh(0,0), Y(0,0);
1871     // Check for both (mul (shl X, C), Y)  and  (mul Y, (shl X, C)).
1872     if (N0.getOpcode() == ISD::SHL &&
1873         (isConstantSplatVector(N0.getOperand(1).getNode(), Val) ||
1874                        isa<ConstantSDNode>(N0.getOperand(1))) &&
1875         N0.getNode()->hasOneUse()) {
1876       Sh = N0; Y = N1;
1877     } else if (N1.getOpcode() == ISD::SHL &&
1878                isa<ConstantSDNode>(N1.getOperand(1)) &&
1879                N1.getNode()->hasOneUse()) {
1880       Sh = N1; Y = N0;
1881     }
1882
1883     if (Sh.getNode()) {
1884       SDValue Mul = DAG.getNode(ISD::MUL, SDLoc(N), VT,
1885                                 Sh.getOperand(0), Y);
1886       return DAG.getNode(ISD::SHL, SDLoc(N), VT,
1887                          Mul, Sh.getOperand(1));
1888     }
1889   }
1890
1891   // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
1892   if (N1IsConst && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
1893       (isConstantSplatVector(N0.getOperand(1).getNode(), Val) ||
1894                      isa<ConstantSDNode>(N0.getOperand(1))))
1895     return DAG.getNode(ISD::ADD, SDLoc(N), VT,
1896                        DAG.getNode(ISD::MUL, SDLoc(N0), VT,
1897                                    N0.getOperand(0), N1),
1898                        DAG.getNode(ISD::MUL, SDLoc(N1), VT,
1899                                    N0.getOperand(1), N1));
1900
1901   // reassociate mul
1902   SDValue RMUL = ReassociateOps(ISD::MUL, SDLoc(N), N0, N1);
1903   if (RMUL.getNode() != 0)
1904     return RMUL;
1905
1906   return SDValue();
1907 }
1908
1909 SDValue DAGCombiner::visitSDIV(SDNode *N) {
1910   SDValue N0 = N->getOperand(0);
1911   SDValue N1 = N->getOperand(1);
1912   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1913   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
1914   EVT VT = N->getValueType(0);
1915
1916   // fold vector ops
1917   if (VT.isVector()) {
1918     SDValue FoldedVOp = SimplifyVBinOp(N);
1919     if (FoldedVOp.getNode()) return FoldedVOp;
1920   }
1921
1922   // fold (sdiv c1, c2) -> c1/c2
1923   if (N0C && N1C && !N1C->isNullValue())
1924     return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
1925   // fold (sdiv X, 1) -> X
1926   if (N1C && N1C->getAPIntValue() == 1LL)
1927     return N0;
1928   // fold (sdiv X, -1) -> 0-X
1929   if (N1C && N1C->isAllOnesValue())
1930     return DAG.getNode(ISD::SUB, SDLoc(N), VT,
1931                        DAG.getConstant(0, VT), N0);
1932   // If we know the sign bits of both operands are zero, strength reduce to a
1933   // udiv instead.  Handles (X&15) /s 4 -> X&15 >> 2
1934   if (!VT.isVector()) {
1935     if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
1936       return DAG.getNode(ISD::UDIV, SDLoc(N), N1.getValueType(),
1937                          N0, N1);
1938   }
1939   // fold (sdiv X, pow2) -> simple ops after legalize
1940   if (N1C && !N1C->isNullValue() &&
1941       (N1C->getAPIntValue().isPowerOf2() ||
1942        (-N1C->getAPIntValue()).isPowerOf2())) {
1943     // If dividing by powers of two is cheap, then don't perform the following
1944     // fold.
1945     if (TLI.isPow2DivCheap())
1946       return SDValue();
1947
1948     unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
1949
1950     // Splat the sign bit into the register
1951     SDValue SGN = DAG.getNode(ISD::SRA, SDLoc(N), VT, N0,
1952                               DAG.getConstant(VT.getSizeInBits()-1,
1953                                        getShiftAmountTy(N0.getValueType())));
1954     AddToWorkList(SGN.getNode());
1955
1956     // Add (N0 < 0) ? abs2 - 1 : 0;
1957     SDValue SRL = DAG.getNode(ISD::SRL, SDLoc(N), VT, SGN,
1958                               DAG.getConstant(VT.getSizeInBits() - lg2,
1959                                        getShiftAmountTy(SGN.getValueType())));
1960     SDValue ADD = DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, SRL);
1961     AddToWorkList(SRL.getNode());
1962     AddToWorkList(ADD.getNode());    // Divide by pow2
1963     SDValue SRA = DAG.getNode(ISD::SRA, SDLoc(N), VT, ADD,
1964                   DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
1965
1966     // If we're dividing by a positive value, we're done.  Otherwise, we must
1967     // negate the result.
1968     if (N1C->getAPIntValue().isNonNegative())
1969       return SRA;
1970
1971     AddToWorkList(SRA.getNode());
1972     return DAG.getNode(ISD::SUB, SDLoc(N), VT,
1973                        DAG.getConstant(0, VT), SRA);
1974   }
1975
1976   // if integer divide is expensive and we satisfy the requirements, emit an
1977   // alternate sequence.
1978   if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
1979     SDValue Op = BuildSDIV(N);
1980     if (Op.getNode()) return Op;
1981   }
1982
1983   // undef / X -> 0
1984   if (N0.getOpcode() == ISD::UNDEF)
1985     return DAG.getConstant(0, VT);
1986   // X / undef -> undef
1987   if (N1.getOpcode() == ISD::UNDEF)
1988     return N1;
1989
1990   return SDValue();
1991 }
1992
1993 SDValue DAGCombiner::visitUDIV(SDNode *N) {
1994   SDValue N0 = N->getOperand(0);
1995   SDValue N1 = N->getOperand(1);
1996   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1997   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
1998   EVT VT = N->getValueType(0);
1999
2000   // fold vector ops
2001   if (VT.isVector()) {
2002     SDValue FoldedVOp = SimplifyVBinOp(N);
2003     if (FoldedVOp.getNode()) return FoldedVOp;
2004   }
2005
2006   // fold (udiv c1, c2) -> c1/c2
2007   if (N0C && N1C && !N1C->isNullValue())
2008     return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
2009   // fold (udiv x, (1 << c)) -> x >>u c
2010   if (N1C && N1C->getAPIntValue().isPowerOf2())
2011     return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0,
2012                        DAG.getConstant(N1C->getAPIntValue().logBase2(),
2013                                        getShiftAmountTy(N0.getValueType())));
2014   // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
2015   if (N1.getOpcode() == ISD::SHL) {
2016     if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
2017       if (SHC->getAPIntValue().isPowerOf2()) {
2018         EVT ADDVT = N1.getOperand(1).getValueType();
2019         SDValue Add = DAG.getNode(ISD::ADD, SDLoc(N), ADDVT,
2020                                   N1.getOperand(1),
2021                                   DAG.getConstant(SHC->getAPIntValue()
2022                                                                   .logBase2(),
2023                                                   ADDVT));
2024         AddToWorkList(Add.getNode());
2025         return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0, Add);
2026       }
2027     }
2028   }
2029   // fold (udiv x, c) -> alternate
2030   if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
2031     SDValue Op = BuildUDIV(N);
2032     if (Op.getNode()) return Op;
2033   }
2034
2035   // undef / X -> 0
2036   if (N0.getOpcode() == ISD::UNDEF)
2037     return DAG.getConstant(0, VT);
2038   // X / undef -> undef
2039   if (N1.getOpcode() == ISD::UNDEF)
2040     return N1;
2041
2042   return SDValue();
2043 }
2044
2045 SDValue DAGCombiner::visitSREM(SDNode *N) {
2046   SDValue N0 = N->getOperand(0);
2047   SDValue N1 = N->getOperand(1);
2048   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2049   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2050   EVT VT = N->getValueType(0);
2051
2052   // fold (srem c1, c2) -> c1%c2
2053   if (N0C && N1C && !N1C->isNullValue())
2054     return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
2055   // If we know the sign bits of both operands are zero, strength reduce to a
2056   // urem instead.  Handles (X & 0x0FFFFFFF) %s 16 -> X&15
2057   if (!VT.isVector()) {
2058     if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
2059       return DAG.getNode(ISD::UREM, SDLoc(N), VT, N0, N1);
2060   }
2061
2062   // If X/C can be simplified by the division-by-constant logic, lower
2063   // X%C to the equivalent of X-X/C*C.
2064   if (N1C && !N1C->isNullValue()) {
2065     SDValue Div = DAG.getNode(ISD::SDIV, SDLoc(N), VT, N0, N1);
2066     AddToWorkList(Div.getNode());
2067     SDValue OptimizedDiv = combine(Div.getNode());
2068     if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
2069       SDValue Mul = DAG.getNode(ISD::MUL, SDLoc(N), VT,
2070                                 OptimizedDiv, N1);
2071       SDValue Sub = DAG.getNode(ISD::SUB, SDLoc(N), VT, N0, Mul);
2072       AddToWorkList(Mul.getNode());
2073       return Sub;
2074     }
2075   }
2076
2077   // undef % X -> 0
2078   if (N0.getOpcode() == ISD::UNDEF)
2079     return DAG.getConstant(0, VT);
2080   // X % undef -> undef
2081   if (N1.getOpcode() == ISD::UNDEF)
2082     return N1;
2083
2084   return SDValue();
2085 }
2086
2087 SDValue DAGCombiner::visitUREM(SDNode *N) {
2088   SDValue N0 = N->getOperand(0);
2089   SDValue N1 = N->getOperand(1);
2090   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2091   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2092   EVT VT = N->getValueType(0);
2093
2094   // fold (urem c1, c2) -> c1%c2
2095   if (N0C && N1C && !N1C->isNullValue())
2096     return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
2097   // fold (urem x, pow2) -> (and x, pow2-1)
2098   if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
2099     return DAG.getNode(ISD::AND, SDLoc(N), VT, N0,
2100                        DAG.getConstant(N1C->getAPIntValue()-1,VT));
2101   // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2102   if (N1.getOpcode() == ISD::SHL) {
2103     if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
2104       if (SHC->getAPIntValue().isPowerOf2()) {
2105         SDValue Add =
2106           DAG.getNode(ISD::ADD, SDLoc(N), VT, N1,
2107                  DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
2108                                  VT));
2109         AddToWorkList(Add.getNode());
2110         return DAG.getNode(ISD::AND, SDLoc(N), VT, N0, Add);
2111       }
2112     }
2113   }
2114
2115   // If X/C can be simplified by the division-by-constant logic, lower
2116   // X%C to the equivalent of X-X/C*C.
2117   if (N1C && !N1C->isNullValue()) {
2118     SDValue Div = DAG.getNode(ISD::UDIV, SDLoc(N), VT, N0, N1);
2119     AddToWorkList(Div.getNode());
2120     SDValue OptimizedDiv = combine(Div.getNode());
2121     if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
2122       SDValue Mul = DAG.getNode(ISD::MUL, SDLoc(N), VT,
2123                                 OptimizedDiv, N1);
2124       SDValue Sub = DAG.getNode(ISD::SUB, SDLoc(N), VT, N0, Mul);
2125       AddToWorkList(Mul.getNode());
2126       return Sub;
2127     }
2128   }
2129
2130   // undef % X -> 0
2131   if (N0.getOpcode() == ISD::UNDEF)
2132     return DAG.getConstant(0, VT);
2133   // X % undef -> undef
2134   if (N1.getOpcode() == ISD::UNDEF)
2135     return N1;
2136
2137   return SDValue();
2138 }
2139
2140 SDValue DAGCombiner::visitMULHS(SDNode *N) {
2141   SDValue N0 = N->getOperand(0);
2142   SDValue N1 = N->getOperand(1);
2143   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2144   EVT VT = N->getValueType(0);
2145   SDLoc DL(N);
2146
2147   // fold (mulhs x, 0) -> 0
2148   if (N1C && N1C->isNullValue())
2149     return N1;
2150   // fold (mulhs x, 1) -> (sra x, size(x)-1)
2151   if (N1C && N1C->getAPIntValue() == 1)
2152     return DAG.getNode(ISD::SRA, SDLoc(N), N0.getValueType(), N0,
2153                        DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
2154                                        getShiftAmountTy(N0.getValueType())));
2155   // fold (mulhs x, undef) -> 0
2156   if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
2157     return DAG.getConstant(0, VT);
2158
2159   // If the type twice as wide is legal, transform the mulhs to a wider multiply
2160   // plus a shift.
2161   if (VT.isSimple() && !VT.isVector()) {
2162     MVT Simple = VT.getSimpleVT();
2163     unsigned SimpleSize = Simple.getSizeInBits();
2164     EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2165     if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2166       N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2167       N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2168       N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2169       N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
2170             DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
2171       return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2172     }
2173   }
2174
2175   return SDValue();
2176 }
2177
2178 SDValue DAGCombiner::visitMULHU(SDNode *N) {
2179   SDValue N0 = N->getOperand(0);
2180   SDValue N1 = N->getOperand(1);
2181   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2182   EVT VT = N->getValueType(0);
2183   SDLoc DL(N);
2184
2185   // fold (mulhu x, 0) -> 0
2186   if (N1C && N1C->isNullValue())
2187     return N1;
2188   // fold (mulhu x, 1) -> 0
2189   if (N1C && N1C->getAPIntValue() == 1)
2190     return DAG.getConstant(0, N0.getValueType());
2191   // fold (mulhu x, undef) -> 0
2192   if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
2193     return DAG.getConstant(0, VT);
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       N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2203       N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2204       N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2205       N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
2206             DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
2207       return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2208     }
2209   }
2210
2211   return SDValue();
2212 }
2213
2214 /// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2215 /// compute two values. LoOp and HiOp give the opcodes for the two computations
2216 /// that are being performed. Return true if a simplification was made.
2217 ///
2218 SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
2219                                                 unsigned HiOp) {
2220   // If the high half is not needed, just compute the low half.
2221   bool HiExists = N->hasAnyUseOfValue(1);
2222   if (!HiExists &&
2223       (!LegalOperations ||
2224        TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
2225     SDValue Res = DAG.getNode(LoOp, SDLoc(N), N->getValueType(0),
2226                               N->op_begin(), N->getNumOperands());
2227     return CombineTo(N, Res, Res);
2228   }
2229
2230   // If the low half is not needed, just compute the high half.
2231   bool LoExists = N->hasAnyUseOfValue(0);
2232   if (!LoExists &&
2233       (!LegalOperations ||
2234        TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
2235     SDValue Res = DAG.getNode(HiOp, SDLoc(N), N->getValueType(1),
2236                               N->op_begin(), N->getNumOperands());
2237     return CombineTo(N, Res, Res);
2238   }
2239
2240   // If both halves are used, return as it is.
2241   if (LoExists && HiExists)
2242     return SDValue();
2243
2244   // If the two computed results can be simplified separately, separate them.
2245   if (LoExists) {
2246     SDValue Lo = DAG.getNode(LoOp, SDLoc(N), N->getValueType(0),
2247                              N->op_begin(), N->getNumOperands());
2248     AddToWorkList(Lo.getNode());
2249     SDValue LoOpt = combine(Lo.getNode());
2250     if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
2251         (!LegalOperations ||
2252          TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
2253       return CombineTo(N, LoOpt, LoOpt);
2254   }
2255
2256   if (HiExists) {
2257     SDValue Hi = DAG.getNode(HiOp, SDLoc(N), N->getValueType(1),
2258                              N->op_begin(), N->getNumOperands());
2259     AddToWorkList(Hi.getNode());
2260     SDValue HiOpt = combine(Hi.getNode());
2261     if (HiOpt.getNode() && HiOpt != Hi &&
2262         (!LegalOperations ||
2263          TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
2264       return CombineTo(N, HiOpt, HiOpt);
2265   }
2266
2267   return SDValue();
2268 }
2269
2270 SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2271   SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
2272   if (Res.getNode()) return Res;
2273
2274   EVT VT = N->getValueType(0);
2275   SDLoc DL(N);
2276
2277   // If the type twice as wide is legal, transform the mulhu to a wider multiply
2278   // plus a shift.
2279   if (VT.isSimple() && !VT.isVector()) {
2280     MVT Simple = VT.getSimpleVT();
2281     unsigned SimpleSize = Simple.getSizeInBits();
2282     EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2283     if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2284       SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2285       SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2286       Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2287       // Compute the high part as N1.
2288       Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
2289             DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
2290       Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2291       // Compute the low part as N0.
2292       Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2293       return CombineTo(N, Lo, Hi);
2294     }
2295   }
2296
2297   return SDValue();
2298 }
2299
2300 SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2301   SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
2302   if (Res.getNode()) return Res;
2303
2304   EVT VT = N->getValueType(0);
2305   SDLoc DL(N);
2306
2307   // If the type twice as wide is legal, transform the mulhu to a wider multiply
2308   // plus a shift.
2309   if (VT.isSimple() && !VT.isVector()) {
2310     MVT Simple = VT.getSimpleVT();
2311     unsigned SimpleSize = Simple.getSizeInBits();
2312     EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2313     if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2314       SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2315       SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2316       Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2317       // Compute the high part as N1.
2318       Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
2319             DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
2320       Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2321       // Compute the low part as N0.
2322       Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2323       return CombineTo(N, Lo, Hi);
2324     }
2325   }
2326
2327   return SDValue();
2328 }
2329
2330 SDValue DAGCombiner::visitSMULO(SDNode *N) {
2331   // (smulo x, 2) -> (saddo x, x)
2332   if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2333     if (C2->getAPIntValue() == 2)
2334       return DAG.getNode(ISD::SADDO, SDLoc(N), N->getVTList(),
2335                          N->getOperand(0), N->getOperand(0));
2336
2337   return SDValue();
2338 }
2339
2340 SDValue DAGCombiner::visitUMULO(SDNode *N) {
2341   // (umulo x, 2) -> (uaddo x, x)
2342   if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2343     if (C2->getAPIntValue() == 2)
2344       return DAG.getNode(ISD::UADDO, SDLoc(N), N->getVTList(),
2345                          N->getOperand(0), N->getOperand(0));
2346
2347   return SDValue();
2348 }
2349
2350 SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2351   SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
2352   if (Res.getNode()) return Res;
2353
2354   return SDValue();
2355 }
2356
2357 SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2358   SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
2359   if (Res.getNode()) return Res;
2360
2361   return SDValue();
2362 }
2363
2364 /// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2365 /// two operands of the same opcode, try to simplify it.
2366 SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2367   SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
2368   EVT VT = N0.getValueType();
2369   assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
2370
2371   // Bail early if none of these transforms apply.
2372   if (N0.getNode()->getNumOperands() == 0) return SDValue();
2373
2374   // For each of OP in AND/OR/XOR:
2375   // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2376   // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2377   // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
2378   // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
2379   //
2380   // do not sink logical op inside of a vector extend, since it may combine
2381   // into a vsetcc.
2382   EVT Op0VT = N0.getOperand(0).getValueType();
2383   if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
2384        N0.getOpcode() == ISD::SIGN_EXTEND ||
2385        // Avoid infinite looping with PromoteIntBinOp.
2386        (N0.getOpcode() == ISD::ANY_EXTEND &&
2387         (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
2388        (N0.getOpcode() == ISD::TRUNCATE &&
2389         (!TLI.isZExtFree(VT, Op0VT) ||
2390          !TLI.isTruncateFree(Op0VT, VT)) &&
2391         TLI.isTypeLegal(Op0VT))) &&
2392       !VT.isVector() &&
2393       Op0VT == N1.getOperand(0).getValueType() &&
2394       (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
2395     SDValue ORNode = DAG.getNode(N->getOpcode(), SDLoc(N0),
2396                                  N0.getOperand(0).getValueType(),
2397                                  N0.getOperand(0), N1.getOperand(0));
2398     AddToWorkList(ORNode.getNode());
2399     return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, ORNode);
2400   }
2401
2402   // For each of OP in SHL/SRL/SRA/AND...
2403   //   fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2404   //   fold (or  (OP x, z), (OP y, z)) -> (OP (or  x, y), z)
2405   //   fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
2406   if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
2407        N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
2408       N0.getOperand(1) == N1.getOperand(1)) {
2409     SDValue ORNode = DAG.getNode(N->getOpcode(), SDLoc(N0),
2410                                  N0.getOperand(0).getValueType(),
2411                                  N0.getOperand(0), N1.getOperand(0));
2412     AddToWorkList(ORNode.getNode());
2413     return DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
2414                        ORNode, N0.getOperand(1));
2415   }
2416
2417   // Simplify xor/and/or (bitcast(A), bitcast(B)) -> bitcast(op (A,B))
2418   // Only perform this optimization after type legalization and before
2419   // LegalizeVectorOprs. LegalizeVectorOprs promotes vector operations by
2420   // adding bitcasts. For example (xor v4i32) is promoted to (v2i64), and
2421   // we don't want to undo this promotion.
2422   // We also handle SCALAR_TO_VECTOR because xor/or/and operations are cheaper
2423   // on scalars.
2424   if ((N0.getOpcode() == ISD::BITCAST ||
2425        N0.getOpcode() == ISD::SCALAR_TO_VECTOR) &&
2426       Level == AfterLegalizeTypes) {
2427     SDValue In0 = N0.getOperand(0);
2428     SDValue In1 = N1.getOperand(0);
2429     EVT In0Ty = In0.getValueType();
2430     EVT In1Ty = In1.getValueType();
2431     SDLoc DL(N);
2432     // If both incoming values are integers, and the original types are the
2433     // same.
2434     if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) {
2435       SDValue Op = DAG.getNode(N->getOpcode(), DL, In0Ty, In0, In1);
2436       SDValue BC = DAG.getNode(N0.getOpcode(), DL, VT, Op);
2437       AddToWorkList(Op.getNode());
2438       return BC;
2439     }
2440   }
2441
2442   // Xor/and/or are indifferent to the swizzle operation (shuffle of one value).
2443   // Simplify xor/and/or (shuff(A), shuff(B)) -> shuff(op (A,B))
2444   // If both shuffles use the same mask, and both shuffle within a single
2445   // vector, then it is worthwhile to move the swizzle after the operation.
2446   // The type-legalizer generates this pattern when loading illegal
2447   // vector types from memory. In many cases this allows additional shuffle
2448   // optimizations.
2449   if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
2450       N0.getOperand(1).getOpcode() == ISD::UNDEF &&
2451       N1.getOperand(1).getOpcode() == ISD::UNDEF) {
2452     ShuffleVectorSDNode *SVN0 = cast<ShuffleVectorSDNode>(N0);
2453     ShuffleVectorSDNode *SVN1 = cast<ShuffleVectorSDNode>(N1);
2454
2455     assert(N0.getOperand(0).getValueType() == N1.getOperand(1).getValueType() &&
2456            "Inputs to shuffles are not the same type");
2457
2458     unsigned NumElts = VT.getVectorNumElements();
2459
2460     // Check that both shuffles use the same mask. The masks are known to be of
2461     // the same length because the result vector type is the same.
2462     bool SameMask = true;
2463     for (unsigned i = 0; i != NumElts; ++i) {
2464       int Idx0 = SVN0->getMaskElt(i);
2465       int Idx1 = SVN1->getMaskElt(i);
2466       if (Idx0 != Idx1) {
2467         SameMask = false;
2468         break;
2469       }
2470     }
2471
2472     if (SameMask) {
2473       SDValue Op = DAG.getNode(N->getOpcode(), SDLoc(N), VT,
2474                                N0.getOperand(0), N1.getOperand(0));
2475       AddToWorkList(Op.getNode());
2476       return DAG.getVectorShuffle(VT, SDLoc(N), Op,
2477                                   DAG.getUNDEF(VT), &SVN0->getMask()[0]);
2478     }
2479   }
2480
2481   return SDValue();
2482 }
2483
2484 SDValue DAGCombiner::visitAND(SDNode *N) {
2485   SDValue N0 = N->getOperand(0);
2486   SDValue N1 = N->getOperand(1);
2487   SDValue LL, LR, RL, RR, CC0, CC1;
2488   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2489   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
2490   EVT VT = N1.getValueType();
2491   unsigned BitWidth = VT.getScalarType().getSizeInBits();
2492
2493   // fold vector ops
2494   if (VT.isVector()) {
2495     SDValue FoldedVOp = SimplifyVBinOp(N);
2496     if (FoldedVOp.getNode()) return FoldedVOp;
2497
2498     // fold (and x, 0) -> 0, vector edition
2499     if (ISD::isBuildVectorAllZeros(N0.getNode()))
2500       return N0;
2501     if (ISD::isBuildVectorAllZeros(N1.getNode()))
2502       return N1;
2503
2504     // fold (and x, -1) -> x, vector edition
2505     if (ISD::isBuildVectorAllOnes(N0.getNode()))
2506       return N1;
2507     if (ISD::isBuildVectorAllOnes(N1.getNode()))
2508       return N0;
2509   }
2510
2511   // fold (and x, undef) -> 0
2512   if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
2513     return DAG.getConstant(0, VT);
2514   // fold (and c1, c2) -> c1&c2
2515   if (N0C && N1C)
2516     return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
2517   // canonicalize constant to RHS
2518   if (N0C && !N1C)
2519     return DAG.getNode(ISD::AND, SDLoc(N), VT, N1, N0);
2520   // fold (and x, -1) -> x
2521   if (N1C && N1C->isAllOnesValue())
2522     return N0;
2523   // if (and x, c) is known to be zero, return 0
2524   if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
2525                                    APInt::getAllOnesValue(BitWidth)))
2526     return DAG.getConstant(0, VT);
2527   // reassociate and
2528   SDValue RAND = ReassociateOps(ISD::AND, SDLoc(N), N0, N1);
2529   if (RAND.getNode() != 0)
2530     return RAND;
2531   // fold (and (or x, C), D) -> D if (C & D) == D
2532   if (N1C && N0.getOpcode() == ISD::OR)
2533     if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
2534       if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
2535         return N1;
2536   // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2537   if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
2538     SDValue N0Op0 = N0.getOperand(0);
2539     APInt Mask = ~N1C->getAPIntValue();
2540     Mask = Mask.trunc(N0Op0.getValueSizeInBits());
2541     if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
2542       SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N),
2543                                  N0.getValueType(), N0Op0);
2544
2545       // Replace uses of the AND with uses of the Zero extend node.
2546       CombineTo(N, Zext);
2547
2548       // We actually want to replace all uses of the any_extend with the
2549       // zero_extend, to avoid duplicating things.  This will later cause this
2550       // AND to be folded.
2551       CombineTo(N0.getNode(), Zext);
2552       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
2553     }
2554   }
2555   // similarly fold (and (X (load ([non_ext|any_ext|zero_ext] V))), c) ->
2556   // (X (load ([non_ext|zero_ext] V))) if 'and' only clears top bits which must
2557   // already be zero by virtue of the width of the base type of the load.
2558   //
2559   // the 'X' node here can either be nothing or an extract_vector_elt to catch
2560   // more cases.
2561   if ((N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
2562        N0.getOperand(0).getOpcode() == ISD::LOAD) ||
2563       N0.getOpcode() == ISD::LOAD) {
2564     LoadSDNode *Load = cast<LoadSDNode>( (N0.getOpcode() == ISD::LOAD) ?
2565                                          N0 : N0.getOperand(0) );
2566
2567     // Get the constant (if applicable) the zero'th operand is being ANDed with.
2568     // This can be a pure constant or a vector splat, in which case we treat the
2569     // vector as a scalar and use the splat value.
2570     APInt Constant = APInt::getNullValue(1);
2571     if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) {
2572       Constant = C->getAPIntValue();
2573     } else if (BuildVectorSDNode *Vector = dyn_cast<BuildVectorSDNode>(N1)) {
2574       APInt SplatValue, SplatUndef;
2575       unsigned SplatBitSize;
2576       bool HasAnyUndefs;
2577       bool IsSplat = Vector->isConstantSplat(SplatValue, SplatUndef,
2578                                              SplatBitSize, HasAnyUndefs);
2579       if (IsSplat) {
2580         // Undef bits can contribute to a possible optimisation if set, so
2581         // set them.
2582         SplatValue |= SplatUndef;
2583
2584         // The splat value may be something like "0x00FFFFFF", which means 0 for
2585         // the first vector value and FF for the rest, repeating. We need a mask
2586         // that will apply equally to all members of the vector, so AND all the
2587         // lanes of the constant together.
2588         EVT VT = Vector->getValueType(0);
2589         unsigned BitWidth = VT.getVectorElementType().getSizeInBits();
2590
2591         // If the splat value has been compressed to a bitlength lower
2592         // than the size of the vector lane, we need to re-expand it to
2593         // the lane size.
2594         if (BitWidth > SplatBitSize)
2595           for (SplatValue = SplatValue.zextOrTrunc(BitWidth);
2596                SplatBitSize < BitWidth;
2597                SplatBitSize = SplatBitSize * 2)
2598             SplatValue |= SplatValue.shl(SplatBitSize);
2599
2600         Constant = APInt::getAllOnesValue(BitWidth);
2601         for (unsigned i = 0, n = SplatBitSize/BitWidth; i < n; ++i)
2602           Constant &= SplatValue.lshr(i*BitWidth).zextOrTrunc(BitWidth);
2603       }
2604     }
2605
2606     // If we want to change an EXTLOAD to a ZEXTLOAD, ensure a ZEXTLOAD is
2607     // actually legal and isn't going to get expanded, else this is a false
2608     // optimisation.
2609     bool CanZextLoadProfitably = TLI.isLoadExtLegal(ISD::ZEXTLOAD,
2610                                                     Load->getMemoryVT());
2611
2612     // Resize the constant to the same size as the original memory access before
2613     // extension. If it is still the AllOnesValue then this AND is completely
2614     // unneeded.
2615     Constant =
2616       Constant.zextOrTrunc(Load->getMemoryVT().getScalarType().getSizeInBits());
2617
2618     bool B;
2619     switch (Load->getExtensionType()) {
2620     default: B = false; break;
2621     case ISD::EXTLOAD: B = CanZextLoadProfitably; break;
2622     case ISD::ZEXTLOAD:
2623     case ISD::NON_EXTLOAD: B = true; break;
2624     }
2625
2626     if (B && Constant.isAllOnesValue()) {
2627       // If the load type was an EXTLOAD, convert to ZEXTLOAD in order to
2628       // preserve semantics once we get rid of the AND.
2629       SDValue NewLoad(Load, 0);
2630       if (Load->getExtensionType() == ISD::EXTLOAD) {
2631         NewLoad = DAG.getLoad(Load->getAddressingMode(), ISD::ZEXTLOAD,
2632                               Load->getValueType(0), SDLoc(Load),
2633                               Load->getChain(), Load->getBasePtr(),
2634                               Load->getOffset(), Load->getMemoryVT(),
2635                               Load->getMemOperand());
2636         // Replace uses of the EXTLOAD with the new ZEXTLOAD.
2637         if (Load->getNumValues() == 3) {
2638           // PRE/POST_INC loads have 3 values.
2639           SDValue To[] = { NewLoad.getValue(0), NewLoad.getValue(1),
2640                            NewLoad.getValue(2) };
2641           CombineTo(Load, To, 3, true);
2642         } else {
2643           CombineTo(Load, NewLoad.getValue(0), NewLoad.getValue(1));
2644         }
2645       }
2646
2647       // Fold the AND away, taking care not to fold to the old load node if we
2648       // replaced it.
2649       CombineTo(N, (N0.getNode() == Load) ? NewLoad : N0);
2650
2651       return SDValue(N, 0); // Return N so it doesn't get rechecked!
2652     }
2653   }
2654   // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2655   if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2656     ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2657     ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
2658
2659     if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
2660         LL.getValueType().isInteger()) {
2661       // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
2662       if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
2663         SDValue ORNode = DAG.getNode(ISD::OR, SDLoc(N0),
2664                                      LR.getValueType(), LL, RL);
2665         AddToWorkList(ORNode.getNode());
2666         return DAG.getSetCC(SDLoc(N), VT, ORNode, LR, Op1);
2667       }
2668       // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
2669       if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
2670         SDValue ANDNode = DAG.getNode(ISD::AND, SDLoc(N0),
2671                                       LR.getValueType(), LL, RL);
2672         AddToWorkList(ANDNode.getNode());
2673         return DAG.getSetCC(SDLoc(N), VT, ANDNode, LR, Op1);
2674       }
2675       // fold (and (setgt X,  -1), (setgt Y,  -1)) -> (setgt (or X, Y), -1)
2676       if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
2677         SDValue ORNode = DAG.getNode(ISD::OR, SDLoc(N0),
2678                                      LR.getValueType(), LL, RL);
2679         AddToWorkList(ORNode.getNode());
2680         return DAG.getSetCC(SDLoc(N), VT, ORNode, LR, Op1);
2681       }
2682     }
2683     // Simplify (and (setne X, 0), (setne X, -1)) -> (setuge (add X, 1), 2)
2684     if (LL == RL && isa<ConstantSDNode>(LR) && isa<ConstantSDNode>(RR) &&
2685         Op0 == Op1 && LL.getValueType().isInteger() &&
2686       Op0 == ISD::SETNE && ((cast<ConstantSDNode>(LR)->isNullValue() &&
2687                                  cast<ConstantSDNode>(RR)->isAllOnesValue()) ||
2688                                 (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
2689                                  cast<ConstantSDNode>(RR)->isNullValue()))) {
2690       SDValue ADDNode = DAG.getNode(ISD::ADD, SDLoc(N0), LL.getValueType(),
2691                                     LL, DAG.getConstant(1, LL.getValueType()));
2692       AddToWorkList(ADDNode.getNode());
2693       return DAG.getSetCC(SDLoc(N), VT, ADDNode,
2694                           DAG.getConstant(2, LL.getValueType()), ISD::SETUGE);
2695     }
2696     // canonicalize equivalent to ll == rl
2697     if (LL == RR && LR == RL) {
2698       Op1 = ISD::getSetCCSwappedOperands(Op1);
2699       std::swap(RL, RR);
2700     }
2701     if (LL == RL && LR == RR) {
2702       bool isInteger = LL.getValueType().isInteger();
2703       ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
2704       if (Result != ISD::SETCC_INVALID &&
2705           (!LegalOperations ||
2706            (TLI.isCondCodeLegal(Result, LL.getSimpleValueType()) &&
2707             TLI.isOperationLegal(ISD::SETCC,
2708                             getSetCCResultType(N0.getSimpleValueType())))))
2709         return DAG.getSetCC(SDLoc(N), N0.getValueType(),
2710                             LL, LR, Result);
2711     }
2712   }
2713
2714   // Simplify: (and (op x...), (op y...))  -> (op (and x, y))
2715   if (N0.getOpcode() == N1.getOpcode()) {
2716     SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
2717     if (Tmp.getNode()) return Tmp;
2718   }
2719
2720   // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2721   // fold (and (sra)) -> (and (srl)) when possible.
2722   if (!VT.isVector() &&
2723       SimplifyDemandedBits(SDValue(N, 0)))
2724     return SDValue(N, 0);
2725
2726   // fold (zext_inreg (extload x)) -> (zextload x)
2727   if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
2728     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2729     EVT MemVT = LN0->getMemoryVT();
2730     // If we zero all the possible extended bits, then we can turn this into
2731     // a zextload if we are running before legalize or the operation is legal.
2732     unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
2733     if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
2734                            BitWidth - MemVT.getScalarType().getSizeInBits())) &&
2735         ((!LegalOperations && !LN0->isVolatile()) ||
2736          TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
2737       SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N0), VT,
2738                                        LN0->getChain(), LN0->getBasePtr(),
2739                                        LN0->getPointerInfo(), MemVT,
2740                                        LN0->isVolatile(), LN0->isNonTemporal(),
2741                                        LN0->getAlignment());
2742       AddToWorkList(N);
2743       CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
2744       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
2745     }
2746   }
2747   // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
2748   if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
2749       N0.hasOneUse()) {
2750     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
2751     EVT MemVT = LN0->getMemoryVT();
2752     // If we zero all the possible extended bits, then we can turn this into
2753     // a zextload if we are running before legalize or the operation is legal.
2754     unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
2755     if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
2756                            BitWidth - MemVT.getScalarType().getSizeInBits())) &&
2757         ((!LegalOperations && !LN0->isVolatile()) ||
2758          TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
2759       SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N0), VT,
2760                                        LN0->getChain(),
2761                                        LN0->getBasePtr(), LN0->getPointerInfo(),
2762                                        MemVT,
2763                                        LN0->isVolatile(), LN0->isNonTemporal(),
2764                                        LN0->getAlignment());
2765       AddToWorkList(N);
2766       CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
2767       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
2768     }
2769   }
2770
2771   // fold (and (load x), 255) -> (zextload x, i8)
2772   // fold (and (extload x, i16), 255) -> (zextload x, i8)
2773   // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2774   if (N1C && (N0.getOpcode() == ISD::LOAD ||
2775               (N0.getOpcode() == ISD::ANY_EXTEND &&
2776                N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2777     bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2778     LoadSDNode *LN0 = HasAnyExt
2779       ? cast<LoadSDNode>(N0.getOperand(0))
2780       : cast<LoadSDNode>(N0);
2781     if (LN0->getExtensionType() != ISD::SEXTLOAD &&
2782         LN0->isUnindexed() && N0.hasOneUse() && SDValue(LN0, 0).hasOneUse()) {
2783       uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
2784       if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2785         EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2786         EVT LoadedVT = LN0->getMemoryVT();
2787
2788         if (ExtVT == LoadedVT &&
2789             (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2790           EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2791
2792           SDValue NewLoad =
2793             DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), LoadResultTy,
2794                            LN0->getChain(), LN0->getBasePtr(),
2795                            LN0->getPointerInfo(),
2796                            ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2797                            LN0->getAlignment());
2798           AddToWorkList(N);
2799           CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2800           return SDValue(N, 0);   // Return N so it doesn't get rechecked!
2801         }
2802
2803         // Do not change the width of a volatile load.
2804         // Do not generate loads of non-round integer types since these can
2805         // be expensive (and would be wrong if the type is not byte sized).
2806         if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2807             (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2808           EVT PtrType = LN0->getOperand(1).getValueType();
2809
2810           unsigned Alignment = LN0->getAlignment();
2811           SDValue NewPtr = LN0->getBasePtr();
2812
2813           // For big endian targets, we need to add an offset to the pointer
2814           // to load the correct bytes.  For little endian systems, we merely
2815           // need to read fewer bytes from the same pointer.
2816           if (TLI.isBigEndian()) {
2817             unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2818             unsigned EVTStoreBytes = ExtVT.getStoreSize();
2819             unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
2820             NewPtr = DAG.getNode(ISD::ADD, SDLoc(LN0), PtrType,
2821                                  NewPtr, DAG.getConstant(PtrOff, PtrType));
2822             Alignment = MinAlign(Alignment, PtrOff);
2823           }
2824
2825           AddToWorkList(NewPtr.getNode());
2826
2827           EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2828           SDValue Load =
2829             DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), LoadResultTy,
2830                            LN0->getChain(), NewPtr,
2831                            LN0->getPointerInfo(),
2832                            ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2833                            Alignment);
2834           AddToWorkList(N);
2835           CombineTo(LN0, Load, Load.getValue(1));
2836           return SDValue(N, 0);   // Return N so it doesn't get rechecked!
2837         }
2838       }
2839     }
2840   }
2841
2842   if (N0.getOpcode() == ISD::ADD && N1.getOpcode() == ISD::SRL &&
2843       VT.getSizeInBits() <= 64) {
2844     if (ConstantSDNode *ADDI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
2845       APInt ADDC = ADDI->getAPIntValue();
2846       if (!TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2847         // Look for (and (add x, c1), (lshr y, c2)). If C1 wasn't a legal
2848         // immediate for an add, but it is legal if its top c2 bits are set,
2849         // transform the ADD so the immediate doesn't need to be materialized
2850         // in a register.
2851         if (ConstantSDNode *SRLI = dyn_cast<ConstantSDNode>(N1.getOperand(1))) {
2852           APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
2853                                              SRLI->getZExtValue());
2854           if (DAG.MaskedValueIsZero(N0.getOperand(1), Mask)) {
2855             ADDC |= Mask;
2856             if (TLI.isLegalAddImmediate(ADDC.getSExtValue())) {
2857               SDValue NewAdd =
2858                 DAG.getNode(ISD::ADD, SDLoc(N0), VT,
2859                             N0.getOperand(0), DAG.getConstant(ADDC, VT));
2860               CombineTo(N0.getNode(), NewAdd);
2861               return SDValue(N, 0); // Return N so it doesn't get rechecked!
2862             }
2863           }
2864         }
2865       }
2866     }
2867   }
2868
2869   // fold (and (or (srl N, 8), (shl N, 8)), 0xffff) -> (srl (bswap N), const)
2870   if (N1C && N1C->getAPIntValue() == 0xffff && N0.getOpcode() == ISD::OR) {
2871     SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
2872                                        N0.getOperand(1), false);
2873     if (BSwap.getNode())
2874       return BSwap;
2875   }
2876
2877   return SDValue();
2878 }
2879
2880 /// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2881 ///
2882 SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2883                                         bool DemandHighBits) {
2884   if (!LegalOperations)
2885     return SDValue();
2886
2887   EVT VT = N->getValueType(0);
2888   if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2889     return SDValue();
2890   if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2891     return SDValue();
2892
2893   // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2894   bool LookPassAnd0 = false;
2895   bool LookPassAnd1 = false;
2896   if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2897       std::swap(N0, N1);
2898   if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2899       std::swap(N0, N1);
2900   if (N0.getOpcode() == ISD::AND) {
2901     if (!N0.getNode()->hasOneUse())
2902       return SDValue();
2903     ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2904     if (!N01C || N01C->getZExtValue() != 0xFF00)
2905       return SDValue();
2906     N0 = N0.getOperand(0);
2907     LookPassAnd0 = true;
2908   }
2909
2910   if (N1.getOpcode() == ISD::AND) {
2911     if (!N1.getNode()->hasOneUse())
2912       return SDValue();
2913     ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2914     if (!N11C || N11C->getZExtValue() != 0xFF)
2915       return SDValue();
2916     N1 = N1.getOperand(0);
2917     LookPassAnd1 = true;
2918   }
2919
2920   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2921     std::swap(N0, N1);
2922   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2923     return SDValue();
2924   if (!N0.getNode()->hasOneUse() ||
2925       !N1.getNode()->hasOneUse())
2926     return SDValue();
2927
2928   ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2929   ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2930   if (!N01C || !N11C)
2931     return SDValue();
2932   if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2933     return SDValue();
2934
2935   // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2936   SDValue N00 = N0->getOperand(0);
2937   if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2938     if (!N00.getNode()->hasOneUse())
2939       return SDValue();
2940     ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2941     if (!N001C || N001C->getZExtValue() != 0xFF)
2942       return SDValue();
2943     N00 = N00.getOperand(0);
2944     LookPassAnd0 = true;
2945   }
2946
2947   SDValue N10 = N1->getOperand(0);
2948   if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2949     if (!N10.getNode()->hasOneUse())
2950       return SDValue();
2951     ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2952     if (!N101C || N101C->getZExtValue() != 0xFF00)
2953       return SDValue();
2954     N10 = N10.getOperand(0);
2955     LookPassAnd1 = true;
2956   }
2957
2958   if (N00 != N10)
2959     return SDValue();
2960
2961   // Make sure everything beyond the low halfword gets set to zero since the SRL
2962   // 16 will clear the top bits.
2963   unsigned OpSizeInBits = VT.getSizeInBits();
2964   if (DemandHighBits && OpSizeInBits > 16) {
2965     // If the left-shift isn't masked out then the only way this is a bswap is
2966     // if all bits beyond the low 8 are 0. In that case the entire pattern
2967     // reduces to a left shift anyway: leave it for other parts of the combiner.
2968     if (!LookPassAnd0)
2969       return SDValue();
2970
2971     // However, if the right shift isn't masked out then it might be because
2972     // it's not needed. See if we can spot that too.
2973     if (!LookPassAnd1 &&
2974         !DAG.MaskedValueIsZero(
2975             N10, APInt::getHighBitsSet(OpSizeInBits, OpSizeInBits - 16)))
2976       return SDValue();
2977   }
2978
2979   SDValue Res = DAG.getNode(ISD::BSWAP, SDLoc(N), VT, N00);
2980   if (OpSizeInBits > 16)
2981     Res = DAG.getNode(ISD::SRL, SDLoc(N), VT, Res,
2982                       DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2983   return Res;
2984 }
2985
2986 /// isBSwapHWordElement - Return true if the specified node is an element
2987 /// that makes up a 32-bit packed halfword byteswap. i.e.
2988 /// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2989 static bool isBSwapHWordElement(SDValue N, SmallVectorImpl<SDNode *> &Parts) {
2990   if (!N.getNode()->hasOneUse())
2991     return false;
2992
2993   unsigned Opc = N.getOpcode();
2994   if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2995     return false;
2996
2997   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2998   if (!N1C)
2999     return false;
3000
3001   unsigned Num;
3002   switch (N1C->getZExtValue()) {
3003   default:
3004     return false;
3005   case 0xFF:       Num = 0; break;
3006   case 0xFF00:     Num = 1; break;
3007   case 0xFF0000:   Num = 2; break;
3008   case 0xFF000000: Num = 3; break;
3009   }
3010
3011   // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
3012   SDValue N0 = N.getOperand(0);
3013   if (Opc == ISD::AND) {
3014     if (Num == 0 || Num == 2) {
3015       // (x >> 8) & 0xff
3016       // (x >> 8) & 0xff0000
3017       if (N0.getOpcode() != ISD::SRL)
3018         return false;
3019       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3020       if (!C || C->getZExtValue() != 8)
3021         return false;
3022     } else {
3023       // (x << 8) & 0xff00
3024       // (x << 8) & 0xff000000
3025       if (N0.getOpcode() != ISD::SHL)
3026         return false;
3027       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3028       if (!C || C->getZExtValue() != 8)
3029         return false;
3030     }
3031   } else if (Opc == ISD::SHL) {
3032     // (x & 0xff) << 8
3033     // (x & 0xff0000) << 8
3034     if (Num != 0 && Num != 2)
3035       return false;
3036     ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
3037     if (!C || C->getZExtValue() != 8)
3038       return false;
3039   } else { // Opc == ISD::SRL
3040     // (x & 0xff00) >> 8
3041     // (x & 0xff000000) >> 8
3042     if (Num != 1 && Num != 3)
3043       return false;
3044     ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
3045     if (!C || C->getZExtValue() != 8)
3046       return false;
3047   }
3048
3049   if (Parts[Num])
3050     return false;
3051
3052   Parts[Num] = N0.getOperand(0).getNode();
3053   return true;
3054 }
3055
3056 /// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
3057 /// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
3058 /// => (rotl (bswap x), 16)
3059 SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
3060   if (!LegalOperations)
3061     return SDValue();
3062
3063   EVT VT = N->getValueType(0);
3064   if (VT != MVT::i32)
3065     return SDValue();
3066   if (!TLI.isOperationLegal(ISD::BSWAP, VT))
3067     return SDValue();
3068
3069   SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
3070   // Look for either
3071   // (or (or (and), (and)), (or (and), (and)))
3072   // (or (or (or (and), (and)), (and)), (and))
3073   if (N0.getOpcode() != ISD::OR)
3074     return SDValue();
3075   SDValue N00 = N0.getOperand(0);
3076   SDValue N01 = N0.getOperand(1);
3077
3078   if (N1.getOpcode() == ISD::OR &&
3079       N00.getNumOperands() == 2 && N01.getNumOperands() == 2) {
3080     // (or (or (and), (and)), (or (and), (and)))
3081     SDValue N000 = N00.getOperand(0);
3082     if (!isBSwapHWordElement(N000, Parts))
3083       return SDValue();
3084
3085     SDValue N001 = N00.getOperand(1);
3086     if (!isBSwapHWordElement(N001, Parts))
3087       return SDValue();
3088     SDValue N010 = N01.getOperand(0);
3089     if (!isBSwapHWordElement(N010, Parts))
3090       return SDValue();
3091     SDValue N011 = N01.getOperand(1);
3092     if (!isBSwapHWordElement(N011, Parts))
3093       return SDValue();
3094   } else {
3095     // (or (or (or (and), (and)), (and)), (and))
3096     if (!isBSwapHWordElement(N1, Parts))
3097       return SDValue();
3098     if (!isBSwapHWordElement(N01, Parts))
3099       return SDValue();
3100     if (N00.getOpcode() != ISD::OR)
3101       return SDValue();
3102     SDValue N000 = N00.getOperand(0);
3103     if (!isBSwapHWordElement(N000, Parts))
3104       return SDValue();
3105     SDValue N001 = N00.getOperand(1);
3106     if (!isBSwapHWordElement(N001, Parts))
3107       return SDValue();
3108   }
3109
3110   // Make sure the parts are all coming from the same node.
3111   if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
3112     return SDValue();
3113
3114   SDValue BSwap = DAG.getNode(ISD::BSWAP, SDLoc(N), VT,
3115                               SDValue(Parts[0],0));
3116
3117   // Result of the bswap should be rotated by 16. If it's not legal, than
3118   // do  (x << 16) | (x >> 16).
3119   SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
3120   if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
3121     return DAG.getNode(ISD::ROTL, SDLoc(N), VT, BSwap, ShAmt);
3122   if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
3123     return DAG.getNode(ISD::ROTR, SDLoc(N), VT, BSwap, ShAmt);
3124   return DAG.getNode(ISD::OR, SDLoc(N), VT,
3125                      DAG.getNode(ISD::SHL, SDLoc(N), VT, BSwap, ShAmt),
3126                      DAG.getNode(ISD::SRL, SDLoc(N), VT, BSwap, ShAmt));
3127 }
3128
3129 SDValue DAGCombiner::visitOR(SDNode *N) {
3130   SDValue N0 = N->getOperand(0);
3131   SDValue N1 = N->getOperand(1);
3132   SDValue LL, LR, RL, RR, CC0, CC1;
3133   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3134   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3135   EVT VT = N1.getValueType();
3136
3137   // fold vector ops
3138   if (VT.isVector()) {
3139     SDValue FoldedVOp = SimplifyVBinOp(N);
3140     if (FoldedVOp.getNode()) return FoldedVOp;
3141
3142     // fold (or x, 0) -> x, vector edition
3143     if (ISD::isBuildVectorAllZeros(N0.getNode()))
3144       return N1;
3145     if (ISD::isBuildVectorAllZeros(N1.getNode()))
3146       return N0;
3147
3148     // fold (or x, -1) -> -1, vector edition
3149     if (ISD::isBuildVectorAllOnes(N0.getNode()))
3150       return N0;
3151     if (ISD::isBuildVectorAllOnes(N1.getNode()))
3152       return N1;
3153   }
3154
3155   // fold (or x, undef) -> -1
3156   if (!LegalOperations &&
3157       (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
3158     EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
3159     return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
3160   }
3161   // fold (or c1, c2) -> c1|c2
3162   if (N0C && N1C)
3163     return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
3164   // canonicalize constant to RHS
3165   if (N0C && !N1C)
3166     return DAG.getNode(ISD::OR, SDLoc(N), VT, N1, N0);
3167   // fold (or x, 0) -> x
3168   if (N1C && N1C->isNullValue())
3169     return N0;
3170   // fold (or x, -1) -> -1
3171   if (N1C && N1C->isAllOnesValue())
3172     return N1;
3173   // fold (or x, c) -> c iff (x & ~c) == 0
3174   if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
3175     return N1;
3176
3177   // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
3178   SDValue BSwap = MatchBSwapHWord(N, N0, N1);
3179   if (BSwap.getNode() != 0)
3180     return BSwap;
3181   BSwap = MatchBSwapHWordLow(N, N0, N1);
3182   if (BSwap.getNode() != 0)
3183     return BSwap;
3184
3185   // reassociate or
3186   SDValue ROR = ReassociateOps(ISD::OR, SDLoc(N), N0, N1);
3187   if (ROR.getNode() != 0)
3188     return ROR;
3189   // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
3190   // iff (c1 & c2) == 0.
3191   if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
3192              isa<ConstantSDNode>(N0.getOperand(1))) {
3193     ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
3194     if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
3195       return DAG.getNode(ISD::AND, SDLoc(N), VT,
3196                          DAG.getNode(ISD::OR, SDLoc(N0), VT,
3197                                      N0.getOperand(0), N1),
3198                          DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
3199   }
3200   // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
3201   if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
3202     ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
3203     ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
3204
3205     if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
3206         LL.getValueType().isInteger()) {
3207       // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
3208       // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
3209       if (cast<ConstantSDNode>(LR)->isNullValue() &&
3210           (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
3211         SDValue ORNode = DAG.getNode(ISD::OR, SDLoc(LR),
3212                                      LR.getValueType(), LL, RL);
3213         AddToWorkList(ORNode.getNode());
3214         return DAG.getSetCC(SDLoc(N), VT, ORNode, LR, Op1);
3215       }
3216       // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
3217       // fold (or (setgt X, -1), (setgt Y  -1)) -> (setgt (and X, Y), -1)
3218       if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
3219           (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
3220         SDValue ANDNode = DAG.getNode(ISD::AND, SDLoc(LR),
3221                                       LR.getValueType(), LL, RL);
3222         AddToWorkList(ANDNode.getNode());
3223         return DAG.getSetCC(SDLoc(N), VT, ANDNode, LR, Op1);
3224       }
3225     }
3226     // canonicalize equivalent to ll == rl
3227     if (LL == RR && LR == RL) {
3228       Op1 = ISD::getSetCCSwappedOperands(Op1);
3229       std::swap(RL, RR);
3230     }
3231     if (LL == RL && LR == RR) {
3232       bool isInteger = LL.getValueType().isInteger();
3233       ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
3234       if (Result != ISD::SETCC_INVALID &&
3235           (!LegalOperations ||
3236            (TLI.isCondCodeLegal(Result, LL.getSimpleValueType()) &&
3237             TLI.isOperationLegal(ISD::SETCC,
3238               getSetCCResultType(N0.getValueType())))))
3239         return DAG.getSetCC(SDLoc(N), N0.getValueType(),
3240                             LL, LR, Result);
3241     }
3242   }
3243
3244   // Simplify: (or (op x...), (op y...))  -> (op (or x, y))
3245   if (N0.getOpcode() == N1.getOpcode()) {
3246     SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
3247     if (Tmp.getNode()) return Tmp;
3248   }
3249
3250   // (or (and X, C1), (and Y, C2))  -> (and (or X, Y), C3) if possible.
3251   if (N0.getOpcode() == ISD::AND &&
3252       N1.getOpcode() == ISD::AND &&
3253       N0.getOperand(1).getOpcode() == ISD::Constant &&
3254       N1.getOperand(1).getOpcode() == ISD::Constant &&
3255       // Don't increase # computations.
3256       (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
3257     // We can only do this xform if we know that bits from X that are set in C2
3258     // but not in C1 are already zero.  Likewise for Y.
3259     const APInt &LHSMask =
3260       cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
3261     const APInt &RHSMask =
3262       cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
3263
3264     if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
3265         DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
3266       SDValue X = DAG.getNode(ISD::OR, SDLoc(N0), VT,
3267                               N0.getOperand(0), N1.getOperand(0));
3268       return DAG.getNode(ISD::AND, SDLoc(N), VT, X,
3269                          DAG.getConstant(LHSMask | RHSMask, VT));
3270     }
3271   }
3272
3273   // See if this is some rotate idiom.
3274   if (SDNode *Rot = MatchRotate(N0, N1, SDLoc(N)))
3275     return SDValue(Rot, 0);
3276
3277   // Simplify the operands using demanded-bits information.
3278   if (!VT.isVector() &&
3279       SimplifyDemandedBits(SDValue(N, 0)))
3280     return SDValue(N, 0);
3281
3282   return SDValue();
3283 }
3284
3285 /// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
3286 static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
3287   if (Op.getOpcode() == ISD::AND) {
3288     if (isa<ConstantSDNode>(Op.getOperand(1))) {
3289       Mask = Op.getOperand(1);
3290       Op = Op.getOperand(0);
3291     } else {
3292       return false;
3293     }
3294   }
3295
3296   if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
3297     Shift = Op;
3298     return true;
3299   }
3300
3301   return false;
3302 }
3303
3304 // MatchRotate - Handle an 'or' of two operands.  If this is one of the many
3305 // idioms for rotate, and if the target supports rotation instructions, generate
3306 // a rot[lr].
3307 SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, SDLoc DL) {
3308   // Must be a legal type.  Expanded 'n promoted things won't work with rotates.
3309   EVT VT = LHS.getValueType();
3310   if (!TLI.isTypeLegal(VT)) return 0;
3311
3312   // The target must have at least one rotate flavor.
3313   bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
3314   bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
3315   if (!HasROTL && !HasROTR) return 0;
3316
3317   // Match "(X shl/srl V1) & V2" where V2 may not be present.
3318   SDValue LHSShift;   // The shift.
3319   SDValue LHSMask;    // AND value if any.
3320   if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
3321     return 0; // Not part of a rotate.
3322
3323   SDValue RHSShift;   // The shift.
3324   SDValue RHSMask;    // AND value if any.
3325   if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
3326     return 0; // Not part of a rotate.
3327
3328   if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
3329     return 0;   // Not shifting the same value.
3330
3331   if (LHSShift.getOpcode() == RHSShift.getOpcode())
3332     return 0;   // Shifts must disagree.
3333
3334   // Canonicalize shl to left side in a shl/srl pair.
3335   if (RHSShift.getOpcode() == ISD::SHL) {
3336     std::swap(LHS, RHS);
3337     std::swap(LHSShift, RHSShift);
3338     std::swap(LHSMask , RHSMask );
3339   }
3340
3341   unsigned OpSizeInBits = VT.getSizeInBits();
3342   SDValue LHSShiftArg = LHSShift.getOperand(0);
3343   SDValue LHSShiftAmt = LHSShift.getOperand(1);
3344   SDValue RHSShiftArg = RHSShift.getOperand(0);
3345   SDValue RHSShiftAmt = RHSShift.getOperand(1);
3346
3347   // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3348   // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
3349   if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3350       RHSShiftAmt.getOpcode() == ISD::Constant) {
3351     uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3352     uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
3353     if ((LShVal + RShVal) != OpSizeInBits)
3354       return 0;
3355
3356     SDValue Rot = DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3357                               LHSShiftArg, HasROTL ? LHSShiftAmt : RHSShiftAmt);
3358
3359     // If there is an AND of either shifted operand, apply it to the result.
3360     if (LHSMask.getNode() || RHSMask.getNode()) {
3361       APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
3362
3363       if (LHSMask.getNode()) {
3364         APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3365         Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
3366       }
3367       if (RHSMask.getNode()) {
3368         APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3369         Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
3370       }
3371
3372       Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
3373     }
3374
3375     return Rot.getNode();
3376   }
3377
3378   // If there is a mask here, and we have a variable shift, we can't be sure
3379   // that we're masking out the right stuff.
3380   if (LHSMask.getNode() || RHSMask.getNode())
3381     return 0;
3382
3383   // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
3384   // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
3385   if (RHSShiftAmt.getOpcode() == ISD::SUB &&
3386       LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
3387     if (ConstantSDNode *SUBC =
3388           dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
3389       if (SUBC->getAPIntValue() == OpSizeInBits)
3390         return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT, LHSShiftArg,
3391                            HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
3392     }
3393   }
3394
3395   // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
3396   // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
3397   if (LHSShiftAmt.getOpcode() == ISD::SUB &&
3398       RHSShiftAmt == LHSShiftAmt.getOperand(1))
3399     if (ConstantSDNode *SUBC =
3400           dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0)))
3401       if (SUBC->getAPIntValue() == OpSizeInBits)
3402         return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT, LHSShiftArg,
3403                            HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
3404
3405   // Look for sign/zext/any-extended or truncate cases:
3406   if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3407        LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3408        LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3409        LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
3410       (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND ||
3411        RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND ||
3412        RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND ||
3413        RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
3414     SDValue LExtOp0 = LHSShiftAmt.getOperand(0);
3415     SDValue RExtOp0 = RHSShiftAmt.getOperand(0);
3416     if (RExtOp0.getOpcode() == ISD::SUB &&
3417         RExtOp0.getOperand(1) == LExtOp0) {
3418       // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
3419       //   (rotl x, y)
3420       // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
3421       //   (rotr x, (sub 32, y))
3422       if (ConstantSDNode *SUBC =
3423               dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
3424         if (SUBC->getAPIntValue() == OpSizeInBits) {
3425           return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3426                              LHSShiftArg,
3427                              HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
3428         } else if (LHSShiftArg.getOpcode() == ISD::ZERO_EXTEND ||
3429                  LHSShiftArg.getOpcode() == ISD::ANY_EXTEND) {
3430           // fold (or (shl (*ext x), (*ext y)),
3431           //          (srl (*ext x), (*ext (sub 32, y)))) ->
3432           //   (*ext (rotl x, y))
3433           // fold (or (shl (*ext x), (*ext y)),
3434           //          (srl (*ext x), (*ext (sub 32, y)))) ->
3435           //   (*ext (rotr x, (sub 32, y)))
3436           SDValue LArgExtOp0 = LHSShiftArg.getOperand(0);
3437           EVT LArgVT = LArgExtOp0.getValueType();
3438           if (LArgVT.getSizeInBits() == SUBC->getAPIntValue()) {
3439             SDValue V = DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, LArgVT,
3440                              LArgExtOp0,
3441                              HasROTL ? LHSShiftAmt : RHSShiftAmt);
3442             return DAG.getNode(LHSShiftArg.getOpcode(), DL, VT, V).getNode();
3443           }
3444         }
3445       }
3446     } else if (LExtOp0.getOpcode() == ISD::SUB &&
3447                RExtOp0 == LExtOp0.getOperand(1)) {
3448       // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
3449       //   (rotr x, y)
3450       // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
3451       //   (rotl x, (sub 32, y))
3452       if (ConstantSDNode *SUBC =
3453               dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
3454         if (SUBC->getAPIntValue() == OpSizeInBits) {
3455           return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3456                              LHSShiftArg,
3457                              HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
3458         } else if (RHSShiftArg.getOpcode() == ISD::ZERO_EXTEND ||
3459                  RHSShiftArg.getOpcode() == ISD::ANY_EXTEND) {
3460           // fold (or (shl (*ext x), (*ext (sub 32, y))),
3461           //          (srl (*ext x), (*ext y))) ->
3462           //   (*ext (rotl x, y))
3463           // fold (or (shl (*ext x), (*ext (sub 32, y))),
3464           //          (srl (*ext x), (*ext y))) ->
3465           //   (*ext (rotr x, (sub 32, y)))
3466           SDValue RArgExtOp0 = RHSShiftArg.getOperand(0);
3467           EVT RArgVT = RArgExtOp0.getValueType();
3468           if (RArgVT.getSizeInBits() == SUBC->getAPIntValue()) {
3469             SDValue V = DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, RArgVT,
3470                              RArgExtOp0,
3471                              HasROTR ? RHSShiftAmt : LHSShiftAmt);
3472             return DAG.getNode(RHSShiftArg.getOpcode(), DL, VT, V).getNode();
3473           }
3474         }
3475       }
3476     }
3477   }
3478
3479   return 0;
3480 }
3481
3482 SDValue DAGCombiner::visitXOR(SDNode *N) {
3483   SDValue N0 = N->getOperand(0);
3484   SDValue N1 = N->getOperand(1);
3485   SDValue LHS, RHS, CC;
3486   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3487   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3488   EVT VT = N0.getValueType();
3489
3490   // fold vector ops
3491   if (VT.isVector()) {
3492     SDValue FoldedVOp = SimplifyVBinOp(N);
3493     if (FoldedVOp.getNode()) return FoldedVOp;
3494
3495     // fold (xor x, 0) -> x, vector edition
3496     if (ISD::isBuildVectorAllZeros(N0.getNode()))
3497       return N1;
3498     if (ISD::isBuildVectorAllZeros(N1.getNode()))
3499       return N0;
3500   }
3501
3502   // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3503   if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3504     return DAG.getConstant(0, VT);
3505   // fold (xor x, undef) -> undef
3506   if (N0.getOpcode() == ISD::UNDEF)
3507     return N0;
3508   if (N1.getOpcode() == ISD::UNDEF)
3509     return N1;
3510   // fold (xor c1, c2) -> c1^c2
3511   if (N0C && N1C)
3512     return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
3513   // canonicalize constant to RHS
3514   if (N0C && !N1C)
3515     return DAG.getNode(ISD::XOR, SDLoc(N), VT, N1, N0);
3516   // fold (xor x, 0) -> x
3517   if (N1C && N1C->isNullValue())
3518     return N0;
3519   // reassociate xor
3520   SDValue RXOR = ReassociateOps(ISD::XOR, SDLoc(N), N0, N1);
3521   if (RXOR.getNode() != 0)
3522     return RXOR;
3523
3524   // fold !(x cc y) -> (x !cc y)
3525   if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
3526     bool isInt = LHS.getValueType().isInteger();
3527     ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3528                                                isInt);
3529
3530     if (!LegalOperations ||
3531         TLI.isCondCodeLegal(NotCC, LHS.getSimpleValueType())) {
3532       switch (N0.getOpcode()) {
3533       default:
3534         llvm_unreachable("Unhandled SetCC Equivalent!");
3535       case ISD::SETCC:
3536         return DAG.getSetCC(SDLoc(N), VT, LHS, RHS, NotCC);
3537       case ISD::SELECT_CC:
3538         return DAG.getSelectCC(SDLoc(N), LHS, RHS, N0.getOperand(2),
3539                                N0.getOperand(3), NotCC);
3540       }
3541     }
3542   }
3543
3544   // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
3545   if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
3546       N0.getNode()->hasOneUse() &&
3547       isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
3548     SDValue V = N0.getOperand(0);
3549     V = DAG.getNode(ISD::XOR, SDLoc(N0), V.getValueType(), V,
3550                     DAG.getConstant(1, V.getValueType()));
3551     AddToWorkList(V.getNode());
3552     return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, V);
3553   }
3554
3555   // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
3556   if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
3557       (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
3558     SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
3559     if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3560       unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
3561       LHS = DAG.getNode(ISD::XOR, SDLoc(LHS), VT, LHS, N1); // LHS = ~LHS
3562       RHS = DAG.getNode(ISD::XOR, SDLoc(RHS), VT, RHS, N1); // RHS = ~RHS
3563       AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
3564       return DAG.getNode(NewOpcode, SDLoc(N), VT, LHS, RHS);
3565     }
3566   }
3567   // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
3568   if (N1C && N1C->isAllOnesValue() &&
3569       (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
3570     SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
3571     if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3572       unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
3573       LHS = DAG.getNode(ISD::XOR, SDLoc(LHS), VT, LHS, N1); // LHS = ~LHS
3574       RHS = DAG.getNode(ISD::XOR, SDLoc(RHS), VT, RHS, N1); // RHS = ~RHS
3575       AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
3576       return DAG.getNode(NewOpcode, SDLoc(N), VT, LHS, RHS);
3577     }
3578   }
3579   // fold (xor (and x, y), y) -> (and (not x), y)
3580   if (N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
3581       N0->getOperand(1) == N1) {
3582     SDValue X = N0->getOperand(0);
3583     SDValue NotX = DAG.getNOT(SDLoc(X), X, VT);
3584     AddToWorkList(NotX.getNode());
3585     return DAG.getNode(ISD::AND, SDLoc(N), VT, NotX, N1);
3586   }
3587   // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
3588   if (N1C && N0.getOpcode() == ISD::XOR) {
3589     ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3590     ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3591     if (N00C)
3592       return DAG.getNode(ISD::XOR, SDLoc(N), VT, N0.getOperand(1),
3593                          DAG.getConstant(N1C->getAPIntValue() ^
3594                                          N00C->getAPIntValue(), VT));
3595     if (N01C)
3596       return DAG.getNode(ISD::XOR, SDLoc(N), VT, N0.getOperand(0),
3597                          DAG.getConstant(N1C->getAPIntValue() ^
3598                                          N01C->getAPIntValue(), VT));
3599   }
3600   // fold (xor x, x) -> 0
3601   if (N0 == N1)
3602     return tryFoldToZero(SDLoc(N), TLI, VT, DAG, LegalOperations, LegalTypes);
3603
3604   // Simplify: xor (op x...), (op y...)  -> (op (xor x, y))
3605   if (N0.getOpcode() == N1.getOpcode()) {
3606     SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
3607     if (Tmp.getNode()) return Tmp;
3608   }
3609
3610   // Simplify the expression using non-local knowledge.
3611   if (!VT.isVector() &&
3612       SimplifyDemandedBits(SDValue(N, 0)))
3613     return SDValue(N, 0);
3614
3615   return SDValue();
3616 }
3617
3618 /// visitShiftByConstant - Handle transforms common to the three shifts, when
3619 /// the shift amount is a constant.
3620 SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
3621   SDNode *LHS = N->getOperand(0).getNode();
3622   if (!LHS->hasOneUse()) return SDValue();
3623
3624   // We want to pull some binops through shifts, so that we have (and (shift))
3625   // instead of (shift (and)), likewise for add, or, xor, etc.  This sort of
3626   // thing happens with address calculations, so it's important to canonicalize
3627   // it.
3628   bool HighBitSet = false;  // Can we transform this if the high bit is set?
3629
3630   switch (LHS->getOpcode()) {
3631   default: return SDValue();
3632   case ISD::OR:
3633   case ISD::XOR:
3634     HighBitSet = false; // We can only transform sra if the high bit is clear.
3635     break;
3636   case ISD::AND:
3637     HighBitSet = true;  // We can only transform sra if the high bit is set.
3638     break;
3639   case ISD::ADD:
3640     if (N->getOpcode() != ISD::SHL)
3641       return SDValue(); // only shl(add) not sr[al](add).
3642     HighBitSet = false; // We can only transform sra if the high bit is clear.
3643     break;
3644   }
3645
3646   // We require the RHS of the binop to be a constant as well.
3647   ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
3648   if (!BinOpCst) return SDValue();
3649
3650   // FIXME: disable this unless the input to the binop is a shift by a constant.
3651   // If it is not a shift, it pessimizes some common cases like:
3652   //
3653   //    void foo(int *X, int i) { X[i & 1235] = 1; }
3654   //    int bar(int *X, int i) { return X[i & 255]; }
3655   SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
3656   if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
3657        BinOpLHSVal->getOpcode() != ISD::SRA &&
3658        BinOpLHSVal->getOpcode() != ISD::SRL) ||
3659       !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
3660     return SDValue();
3661
3662   EVT VT = N->getValueType(0);
3663
3664   // If this is a signed shift right, and the high bit is modified by the
3665   // logical operation, do not perform the transformation. The highBitSet
3666   // boolean indicates the value of the high bit of the constant which would
3667   // cause it to be modified for this operation.
3668   if (N->getOpcode() == ISD::SRA) {
3669     bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3670     if (BinOpRHSSignSet != HighBitSet)
3671       return SDValue();
3672   }
3673
3674   // Fold the constants, shifting the binop RHS by the shift amount.
3675   SDValue NewRHS = DAG.getNode(N->getOpcode(), SDLoc(LHS->getOperand(1)),
3676                                N->getValueType(0),
3677                                LHS->getOperand(1), N->getOperand(1));
3678
3679   // Create the new shift.
3680   SDValue NewShift = DAG.getNode(N->getOpcode(),
3681                                  SDLoc(LHS->getOperand(0)),
3682                                  VT, LHS->getOperand(0), N->getOperand(1));
3683
3684   // Create the new binop.
3685   return DAG.getNode(LHS->getOpcode(), SDLoc(N), VT, NewShift, NewRHS);
3686 }
3687
3688 SDValue DAGCombiner::visitSHL(SDNode *N) {
3689   SDValue N0 = N->getOperand(0);
3690   SDValue N1 = N->getOperand(1);
3691   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3692   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3693   EVT VT = N0.getValueType();
3694   unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
3695
3696   // fold (shl c1, c2) -> c1<<c2
3697   if (N0C && N1C)
3698     return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
3699   // fold (shl 0, x) -> 0
3700   if (N0C && N0C->isNullValue())
3701     return N0;
3702   // fold (shl x, c >= size(x)) -> undef
3703   if (N1C && N1C->getZExtValue() >= OpSizeInBits)
3704     return DAG.getUNDEF(VT);
3705   // fold (shl x, 0) -> x
3706   if (N1C && N1C->isNullValue())
3707     return N0;
3708   // fold (shl undef, x) -> 0
3709   if (N0.getOpcode() == ISD::UNDEF)
3710     return DAG.getConstant(0, VT);
3711   // if (shl x, c) is known to be zero, return 0
3712   if (DAG.MaskedValueIsZero(SDValue(N, 0),
3713                             APInt::getAllOnesValue(OpSizeInBits)))
3714     return DAG.getConstant(0, VT);
3715   // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
3716   if (N1.getOpcode() == ISD::TRUNCATE &&
3717       N1.getOperand(0).getOpcode() == ISD::AND &&
3718       N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
3719     SDValue N101 = N1.getOperand(0).getOperand(1);
3720     if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
3721       EVT TruncVT = N1.getValueType();
3722       SDValue N100 = N1.getOperand(0).getOperand(0);
3723       APInt TruncC = N101C->getAPIntValue();
3724       TruncC = TruncC.trunc(TruncVT.getSizeInBits());
3725       return DAG.getNode(ISD::SHL, SDLoc(N), VT, N0,
3726                          DAG.getNode(ISD::AND, SDLoc(N), TruncVT,
3727                                      DAG.getNode(ISD::TRUNCATE,
3728                                                  SDLoc(N),
3729                                                  TruncVT, N100),
3730                                      DAG.getConstant(TruncC, TruncVT)));
3731     }
3732   }
3733
3734   if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3735     return SDValue(N, 0);
3736
3737   // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
3738   if (N1C && N0.getOpcode() == ISD::SHL &&
3739       N0.getOperand(1).getOpcode() == ISD::Constant) {
3740     uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3741     uint64_t c2 = N1C->getZExtValue();
3742     if (c1 + c2 >= OpSizeInBits)
3743       return DAG.getConstant(0, VT);
3744     return DAG.getNode(ISD::SHL, SDLoc(N), VT, N0.getOperand(0),
3745                        DAG.getConstant(c1 + c2, N1.getValueType()));
3746   }
3747
3748   // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3749   // For this to be valid, the second form must not preserve any of the bits
3750   // that are shifted out by the inner shift in the first form.  This means
3751   // the outer shift size must be >= the number of bits added by the ext.
3752   // As a corollary, we don't care what kind of ext it is.
3753   if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3754               N0.getOpcode() == ISD::ANY_EXTEND ||
3755               N0.getOpcode() == ISD::SIGN_EXTEND) &&
3756       N0.getOperand(0).getOpcode() == ISD::SHL &&
3757       isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
3758     uint64_t c1 =
3759       cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3760     uint64_t c2 = N1C->getZExtValue();
3761     EVT InnerShiftVT = N0.getOperand(0).getValueType();
3762     uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3763     if (c2 >= OpSizeInBits - InnerShiftSize) {
3764       if (c1 + c2 >= OpSizeInBits)
3765         return DAG.getConstant(0, VT);
3766       return DAG.getNode(ISD::SHL, SDLoc(N0), VT,
3767                          DAG.getNode(N0.getOpcode(), SDLoc(N0), VT,
3768                                      N0.getOperand(0)->getOperand(0)),
3769                          DAG.getConstant(c1 + c2, N1.getValueType()));
3770     }
3771   }
3772
3773   // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3774   //                               (and (srl x, (sub c1, c2), MASK)
3775   // Only fold this if the inner shift has no other uses -- if it does, folding
3776   // this will increase the total number of instructions.
3777   if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
3778       N0.getOperand(1).getOpcode() == ISD::Constant) {
3779     uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3780     if (c1 < VT.getSizeInBits()) {
3781       uint64_t c2 = N1C->getZExtValue();
3782       APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3783                                          VT.getSizeInBits() - c1);
3784       SDValue Shift;
3785       if (c2 > c1) {
3786         Mask = Mask.shl(c2-c1);
3787         Shift = DAG.getNode(ISD::SHL, SDLoc(N), VT, N0.getOperand(0),
3788                             DAG.getConstant(c2-c1, N1.getValueType()));
3789       } else {
3790         Mask = Mask.lshr(c1-c2);
3791         Shift = DAG.getNode(ISD::SRL, SDLoc(N), VT, N0.getOperand(0),
3792                             DAG.getConstant(c1-c2, N1.getValueType()));
3793       }
3794       return DAG.getNode(ISD::AND, SDLoc(N0), VT, Shift,
3795                          DAG.getConstant(Mask, VT));
3796     }
3797   }
3798   // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
3799   if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3800     SDValue HiBitsMask =
3801       DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3802                                             VT.getSizeInBits() -
3803                                               N1C->getZExtValue()),
3804                       VT);
3805     return DAG.getNode(ISD::AND, SDLoc(N), VT, N0.getOperand(0),
3806                        HiBitsMask);
3807   }
3808
3809   if (N1C) {
3810     SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3811     if (NewSHL.getNode())
3812       return NewSHL;
3813   }
3814
3815   return SDValue();
3816 }
3817
3818 SDValue DAGCombiner::visitSRA(SDNode *N) {
3819   SDValue N0 = N->getOperand(0);
3820   SDValue N1 = N->getOperand(1);
3821   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3822   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3823   EVT VT = N0.getValueType();
3824   unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
3825
3826   // fold (sra c1, c2) -> (sra c1, c2)
3827   if (N0C && N1C)
3828     return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
3829   // fold (sra 0, x) -> 0
3830   if (N0C && N0C->isNullValue())
3831     return N0;
3832   // fold (sra -1, x) -> -1
3833   if (N0C && N0C->isAllOnesValue())
3834     return N0;
3835   // fold (sra x, (setge c, size(x))) -> undef
3836   if (N1C && N1C->getZExtValue() >= OpSizeInBits)
3837     return DAG.getUNDEF(VT);
3838   // fold (sra x, 0) -> x
3839   if (N1C && N1C->isNullValue())
3840     return N0;
3841   // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3842   // sext_inreg.
3843   if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
3844     unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
3845     EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3846     if (VT.isVector())
3847       ExtVT = EVT::getVectorVT(*DAG.getContext(),
3848                                ExtVT, VT.getVectorNumElements());
3849     if ((!LegalOperations ||
3850          TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
3851       return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT,
3852                          N0.getOperand(0), DAG.getValueType(ExtVT));
3853   }
3854
3855   // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
3856   if (N1C && N0.getOpcode() == ISD::SRA) {
3857     if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
3858       unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
3859       if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
3860       return DAG.getNode(ISD::SRA, SDLoc(N), VT, N0.getOperand(0),
3861                          DAG.getConstant(Sum, N1C->getValueType(0)));
3862     }
3863   }
3864
3865   // fold (sra (shl X, m), (sub result_size, n))
3866   // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
3867   // result_size - n != m.
3868   // If truncate is free for the target sext(shl) is likely to result in better
3869   // code.
3870   if (N0.getOpcode() == ISD::SHL) {
3871     // Get the two constanst of the shifts, CN0 = m, CN = n.
3872     const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3873     if (N01C && N1C) {
3874       // Determine what the truncate's result bitsize and type would be.
3875       EVT TruncVT =
3876         EVT::getIntegerVT(*DAG.getContext(),
3877                           OpSizeInBits - N1C->getZExtValue());
3878       // Determine the residual right-shift amount.
3879       signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
3880
3881       // If the shift is not a no-op (in which case this should be just a sign
3882       // extend already), the truncated to type is legal, sign_extend is legal
3883       // on that type, and the truncate to that type is both legal and free,
3884       // perform the transform.
3885       if ((ShiftAmt > 0) &&
3886           TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3887           TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
3888           TLI.isTruncateFree(VT, TruncVT)) {
3889
3890           SDValue Amt = DAG.getConstant(ShiftAmt,
3891               getShiftAmountTy(N0.getOperand(0).getValueType()));
3892           SDValue Shift = DAG.getNode(ISD::SRL, SDLoc(N0), VT,
3893                                       N0.getOperand(0), Amt);
3894           SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), TruncVT,
3895                                       Shift);
3896           return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N),
3897                              N->getValueType(0), Trunc);
3898       }
3899     }
3900   }
3901
3902   // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
3903   if (N1.getOpcode() == ISD::TRUNCATE &&
3904       N1.getOperand(0).getOpcode() == ISD::AND &&
3905       N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
3906     SDValue N101 = N1.getOperand(0).getOperand(1);
3907     if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
3908       EVT TruncVT = N1.getValueType();
3909       SDValue N100 = N1.getOperand(0).getOperand(0);
3910       APInt TruncC = N101C->getAPIntValue();
3911       TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
3912       return DAG.getNode(ISD::SRA, SDLoc(N), VT, N0,
3913                          DAG.getNode(ISD::AND, SDLoc(N),
3914                                      TruncVT,
3915                                      DAG.getNode(ISD::TRUNCATE,
3916                                                  SDLoc(N),
3917                                                  TruncVT, N100),
3918                                      DAG.getConstant(TruncC, TruncVT)));
3919     }
3920   }
3921
3922   // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3923   //      if c1 is equal to the number of bits the trunc removes
3924   if (N0.getOpcode() == ISD::TRUNCATE &&
3925       (N0.getOperand(0).getOpcode() == ISD::SRL ||
3926        N0.getOperand(0).getOpcode() == ISD::SRA) &&
3927       N0.getOperand(0).hasOneUse() &&
3928       N0.getOperand(0).getOperand(1).hasOneUse() &&
3929       N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3930     EVT LargeVT = N0.getOperand(0).getValueType();
3931     ConstantSDNode *LargeShiftAmt =
3932       cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3933
3934     if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3935         LargeShiftAmt->getZExtValue()) {
3936       SDValue Amt =
3937         DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
3938               getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
3939       SDValue SRA = DAG.getNode(ISD::SRA, SDLoc(N), LargeVT,
3940                                 N0.getOperand(0).getOperand(0), Amt);
3941       return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, SRA);
3942     }
3943   }
3944
3945   // Simplify, based on bits shifted out of the LHS.
3946   if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3947     return SDValue(N, 0);
3948
3949
3950   // If the sign bit is known to be zero, switch this to a SRL.
3951   if (DAG.SignBitIsZero(N0))
3952     return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0, N1);
3953
3954   if (N1C) {
3955     SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3956     if (NewSRA.getNode())
3957       return NewSRA;
3958   }
3959
3960   return SDValue();
3961 }
3962
3963 SDValue DAGCombiner::visitSRL(SDNode *N) {
3964   SDValue N0 = N->getOperand(0);
3965   SDValue N1 = N->getOperand(1);
3966   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3967   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3968   EVT VT = N0.getValueType();
3969   unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
3970
3971   // fold (srl c1, c2) -> c1 >>u c2
3972   if (N0C && N1C)
3973     return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
3974   // fold (srl 0, x) -> 0
3975   if (N0C && N0C->isNullValue())
3976     return N0;
3977   // fold (srl x, c >= size(x)) -> undef
3978   if (N1C && N1C->getZExtValue() >= OpSizeInBits)
3979     return DAG.getUNDEF(VT);
3980   // fold (srl x, 0) -> x
3981   if (N1C && N1C->isNullValue())
3982     return N0;
3983   // if (srl x, c) is known to be zero, return 0
3984   if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
3985                                    APInt::getAllOnesValue(OpSizeInBits)))
3986     return DAG.getConstant(0, VT);
3987
3988   // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
3989   if (N1C && N0.getOpcode() == ISD::SRL &&
3990       N0.getOperand(1).getOpcode() == ISD::Constant) {
3991     uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3992     uint64_t c2 = N1C->getZExtValue();
3993     if (c1 + c2 >= OpSizeInBits)
3994       return DAG.getConstant(0, VT);
3995     return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0.getOperand(0),
3996                        DAG.getConstant(c1 + c2, N1.getValueType()));
3997   }
3998
3999   // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
4000   if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
4001       N0.getOperand(0).getOpcode() == ISD::SRL &&
4002       isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
4003     uint64_t c1 =
4004       cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
4005     uint64_t c2 = N1C->getZExtValue();
4006     EVT InnerShiftVT = N0.getOperand(0).getValueType();
4007     EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
4008     uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
4009     // This is only valid if the OpSizeInBits + c1 = size of inner shift.
4010     if (c1 + OpSizeInBits == InnerShiftSize) {
4011       if (c1 + c2 >= InnerShiftSize)
4012         return DAG.getConstant(0, VT);
4013       return DAG.getNode(ISD::TRUNCATE, SDLoc(N0), VT,
4014                          DAG.getNode(ISD::SRL, SDLoc(N0), InnerShiftVT,
4015                                      N0.getOperand(0)->getOperand(0),
4016                                      DAG.getConstant(c1 + c2, ShiftCountVT)));
4017     }
4018   }
4019
4020   // fold (srl (shl x, c), c) -> (and x, cst2)
4021   if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
4022       N0.getValueSizeInBits() <= 64) {
4023     uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
4024     return DAG.getNode(ISD::AND, SDLoc(N), VT, N0.getOperand(0),
4025                        DAG.getConstant(~0ULL >> ShAmt, VT));
4026   }
4027
4028   // fold (srl (anyextend x), c) -> (and (anyextend (srl x, c)), mask)
4029   if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
4030     // Shifting in all undef bits?
4031     EVT SmallVT = N0.getOperand(0).getValueType();
4032     if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
4033       return DAG.getUNDEF(VT);
4034
4035     if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
4036       uint64_t ShiftAmt = N1C->getZExtValue();
4037       SDValue SmallShift = DAG.getNode(ISD::SRL, SDLoc(N0), SmallVT,
4038                                        N0.getOperand(0),
4039                           DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
4040       AddToWorkList(SmallShift.getNode());
4041       APInt Mask = APInt::getAllOnesValue(VT.getSizeInBits()).lshr(ShiftAmt);
4042       return DAG.getNode(ISD::AND, SDLoc(N), VT,
4043                          DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, SmallShift),
4044                          DAG.getConstant(Mask, VT));
4045     }
4046   }
4047
4048   // fold (srl (sra X, Y), 31) -> (srl X, 31).  This srl only looks at the sign
4049   // bit, which is unmodified by sra.
4050   if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
4051     if (N0.getOpcode() == ISD::SRA)
4052       return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0.getOperand(0), N1);
4053   }
4054
4055   // fold (srl (ctlz x), "5") -> x  iff x has one bit set (the low bit).
4056   if (N1C && N0.getOpcode() == ISD::CTLZ &&
4057       N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
4058     APInt KnownZero, KnownOne;
4059     DAG.ComputeMaskedBits(N0.getOperand(0), KnownZero, KnownOne);
4060
4061     // If any of the input bits are KnownOne, then the input couldn't be all
4062     // zeros, thus the result of the srl will always be zero.
4063     if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
4064
4065     // If all of the bits input the to ctlz node are known to be zero, then
4066     // the result of the ctlz is "32" and the result of the shift is one.
4067     APInt UnknownBits = ~KnownZero;
4068     if (UnknownBits == 0) return DAG.getConstant(1, VT);
4069
4070     // Otherwise, check to see if there is exactly one bit input to the ctlz.
4071     if ((UnknownBits & (UnknownBits - 1)) == 0) {
4072       // Okay, we know that only that the single bit specified by UnknownBits
4073       // could be set on input to the CTLZ node. If this bit is set, the SRL
4074       // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
4075       // to an SRL/XOR pair, which is likely to simplify more.
4076       unsigned ShAmt = UnknownBits.countTrailingZeros();
4077       SDValue Op = N0.getOperand(0);
4078
4079       if (ShAmt) {
4080         Op = DAG.getNode(ISD::SRL, SDLoc(N0), VT, Op,
4081                   DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
4082         AddToWorkList(Op.getNode());
4083       }
4084
4085       return DAG.getNode(ISD::XOR, SDLoc(N), VT,
4086                          Op, DAG.getConstant(1, VT));
4087     }
4088   }
4089
4090   // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
4091   if (N1.getOpcode() == ISD::TRUNCATE &&
4092       N1.getOperand(0).getOpcode() == ISD::AND &&
4093       N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
4094     SDValue N101 = N1.getOperand(0).getOperand(1);
4095     if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
4096       EVT TruncVT = N1.getValueType();
4097       SDValue N100 = N1.getOperand(0).getOperand(0);
4098       APInt TruncC = N101C->getAPIntValue();
4099       TruncC = TruncC.trunc(TruncVT.getSizeInBits());
4100       return DAG.getNode(ISD::SRL, SDLoc(N), VT, N0,
4101                          DAG.getNode(ISD::AND, SDLoc(N),
4102                                      TruncVT,
4103                                      DAG.getNode(ISD::TRUNCATE,
4104                                                  SDLoc(N),
4105                                                  TruncVT, N100),
4106                                      DAG.getConstant(TruncC, TruncVT)));
4107     }
4108   }
4109
4110   // fold operands of srl based on knowledge that the low bits are not
4111   // demanded.
4112   if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
4113     return SDValue(N, 0);
4114
4115   if (N1C) {
4116     SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
4117     if (NewSRL.getNode())
4118       return NewSRL;
4119   }
4120
4121   // Attempt to convert a srl of a load into a narrower zero-extending load.
4122   SDValue NarrowLoad = ReduceLoadWidth(N);
4123   if (NarrowLoad.getNode())
4124     return NarrowLoad;
4125
4126   // Here is a common situation. We want to optimize:
4127   //
4128   //   %a = ...
4129   //   %b = and i32 %a, 2
4130   //   %c = srl i32 %b, 1
4131   //   brcond i32 %c ...
4132   //
4133   // into
4134   //
4135   //   %a = ...
4136   //   %b = and %a, 2
4137   //   %c = setcc eq %b, 0
4138   //   brcond %c ...
4139   //
4140   // However when after the source operand of SRL is optimized into AND, the SRL
4141   // itself may not be optimized further. Look for it and add the BRCOND into
4142   // the worklist.
4143   if (N->hasOneUse()) {
4144     SDNode *Use = *N->use_begin();
4145     if (Use->getOpcode() == ISD::BRCOND)
4146       AddToWorkList(Use);
4147     else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
4148       // Also look pass the truncate.
4149       Use = *Use->use_begin();
4150       if (Use->getOpcode() == ISD::BRCOND)
4151         AddToWorkList(Use);
4152     }
4153   }
4154
4155   return SDValue();
4156 }
4157
4158 SDValue DAGCombiner::visitCTLZ(SDNode *N) {
4159   SDValue N0 = N->getOperand(0);
4160   EVT VT = N->getValueType(0);
4161
4162   // fold (ctlz c1) -> c2
4163   if (isa<ConstantSDNode>(N0))
4164     return DAG.getNode(ISD::CTLZ, SDLoc(N), VT, N0);
4165   return SDValue();
4166 }
4167
4168 SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
4169   SDValue N0 = N->getOperand(0);
4170   EVT VT = N->getValueType(0);
4171
4172   // fold (ctlz_zero_undef c1) -> c2
4173   if (isa<ConstantSDNode>(N0))
4174     return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, SDLoc(N), VT, N0);
4175   return SDValue();
4176 }
4177
4178 SDValue DAGCombiner::visitCTTZ(SDNode *N) {
4179   SDValue N0 = N->getOperand(0);
4180   EVT VT = N->getValueType(0);
4181
4182   // fold (cttz c1) -> c2
4183   if (isa<ConstantSDNode>(N0))
4184     return DAG.getNode(ISD::CTTZ, SDLoc(N), VT, N0);
4185   return SDValue();
4186 }
4187
4188 SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
4189   SDValue N0 = N->getOperand(0);
4190   EVT VT = N->getValueType(0);
4191
4192   // fold (cttz_zero_undef c1) -> c2
4193   if (isa<ConstantSDNode>(N0))
4194     return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, SDLoc(N), VT, N0);
4195   return SDValue();
4196 }
4197
4198 SDValue DAGCombiner::visitCTPOP(SDNode *N) {
4199   SDValue N0 = N->getOperand(0);
4200   EVT VT = N->getValueType(0);
4201
4202   // fold (ctpop c1) -> c2
4203   if (isa<ConstantSDNode>(N0))
4204     return DAG.getNode(ISD::CTPOP, SDLoc(N), VT, N0);
4205   return SDValue();
4206 }
4207
4208 SDValue DAGCombiner::visitSELECT(SDNode *N) {
4209   SDValue N0 = N->getOperand(0);
4210   SDValue N1 = N->getOperand(1);
4211   SDValue N2 = N->getOperand(2);
4212   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
4213   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
4214   ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
4215   EVT VT = N->getValueType(0);
4216   EVT VT0 = N0.getValueType();
4217
4218   // fold (select C, X, X) -> X
4219   if (N1 == N2)
4220     return N1;
4221   // fold (select true, X, Y) -> X
4222   if (N0C && !N0C->isNullValue())
4223     return N1;
4224   // fold (select false, X, Y) -> Y
4225   if (N0C && N0C->isNullValue())
4226     return N2;
4227   // fold (select C, 1, X) -> (or C, X)
4228   if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
4229     return DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N2);
4230   // fold (select C, 0, 1) -> (xor C, 1)
4231   if (VT.isInteger() &&
4232       (VT0 == MVT::i1 ||
4233        (VT0.isInteger() &&
4234         TLI.getBooleanContents(false) ==
4235         TargetLowering::ZeroOrOneBooleanContent)) &&
4236       N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
4237     SDValue XORNode;
4238     if (VT == VT0)
4239       return DAG.getNode(ISD::XOR, SDLoc(N), VT0,
4240                          N0, DAG.getConstant(1, VT0));
4241     XORNode = DAG.getNode(ISD::XOR, SDLoc(N0), VT0,
4242                           N0, DAG.getConstant(1, VT0));
4243     AddToWorkList(XORNode.getNode());
4244     if (VT.bitsGT(VT0))
4245       return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, XORNode);
4246     return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, XORNode);
4247   }
4248   // fold (select C, 0, X) -> (and (not C), X)
4249   if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
4250     SDValue NOTNode = DAG.getNOT(SDLoc(N0), N0, VT);
4251     AddToWorkList(NOTNode.getNode());
4252     return DAG.getNode(ISD::AND, SDLoc(N), VT, NOTNode, N2);
4253   }
4254   // fold (select C, X, 1) -> (or (not C), X)
4255   if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
4256     SDValue NOTNode = DAG.getNOT(SDLoc(N0), N0, VT);
4257     AddToWorkList(NOTNode.getNode());
4258     return DAG.getNode(ISD::OR, SDLoc(N), VT, NOTNode, N1);
4259   }
4260   // fold (select C, X, 0) -> (and C, X)
4261   if (VT == MVT::i1 && N2C && N2C->isNullValue())
4262     return DAG.getNode(ISD::AND, SDLoc(N), VT, N0, N1);
4263   // fold (select X, X, Y) -> (or X, Y)
4264   // fold (select X, 1, Y) -> (or X, Y)
4265   if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
4266     return DAG.getNode(ISD::OR, SDLoc(N), VT, N0, N2);
4267   // fold (select X, Y, X) -> (and X, Y)
4268   // fold (select X, Y, 0) -> (and X, Y)
4269   if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
4270     return DAG.getNode(ISD::AND, SDLoc(N), VT, N0, N1);
4271
4272   // If we can fold this based on the true/false value, do so.
4273   if (SimplifySelectOps(N, N1, N2))
4274     return SDValue(N, 0);  // Don't revisit N.
4275
4276   // fold selects based on a setcc into other things, such as min/max/abs
4277   if (N0.getOpcode() == ISD::SETCC) {
4278     // FIXME:
4279     // Check against MVT::Other for SELECT_CC, which is a workaround for targets
4280     // having to say they don't support SELECT_CC on every type the DAG knows
4281     // about, since there is no way to mark an opcode illegal at all value types
4282     if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
4283         TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
4284       return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT,
4285                          N0.getOperand(0), N0.getOperand(1),
4286                          N1, N2, N0.getOperand(2));
4287     return SimplifySelect(SDLoc(N), N0, N1, N2);
4288   }
4289
4290   return SDValue();
4291 }
4292
4293 SDValue DAGCombiner::visitVSELECT(SDNode *N) {
4294   SDValue N0 = N->getOperand(0);
4295   SDValue N1 = N->getOperand(1);
4296   SDValue N2 = N->getOperand(2);
4297   SDLoc DL(N);
4298
4299   // Canonicalize integer abs.
4300   // vselect (setg[te] X,  0),  X, -X ->
4301   // vselect (setgt    X, -1),  X, -X ->
4302   // vselect (setl[te] X,  0), -X,  X ->
4303   // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
4304   if (N0.getOpcode() == ISD::SETCC) {
4305     SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
4306     ISD::CondCode CC = cast<CondCodeSDNode>(N0.getOperand(2))->get();
4307     bool isAbs = false;
4308     bool RHSIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
4309
4310     if (((RHSIsAllZeros && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
4311          (ISD::isBuildVectorAllOnes(RHS.getNode()) && CC == ISD::SETGT)) &&
4312         N1 == LHS && N2.getOpcode() == ISD::SUB && N1 == N2.getOperand(1))
4313       isAbs = ISD::isBuildVectorAllZeros(N2.getOperand(0).getNode());
4314     else if ((RHSIsAllZeros && (CC == ISD::SETLT || CC == ISD::SETLE)) &&
4315              N2 == LHS && N1.getOpcode() == ISD::SUB && N2 == N1.getOperand(1))
4316       isAbs = ISD::isBuildVectorAllZeros(N1.getOperand(0).getNode());
4317
4318     if (isAbs) {
4319       EVT VT = LHS.getValueType();
4320       SDValue Shift = DAG.getNode(
4321           ISD::SRA, DL, VT, LHS,
4322           DAG.getConstant(VT.getScalarType().getSizeInBits() - 1, VT));
4323       SDValue Add = DAG.getNode(ISD::ADD, DL, VT, LHS, Shift);
4324       AddToWorkList(Shift.getNode());
4325       AddToWorkList(Add.getNode());
4326       return DAG.getNode(ISD::XOR, DL, VT, Add, Shift);
4327     }
4328   }
4329
4330   return SDValue();
4331 }
4332
4333 SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
4334   SDValue N0 = N->getOperand(0);
4335   SDValue N1 = N->getOperand(1);
4336   SDValue N2 = N->getOperand(2);
4337   SDValue N3 = N->getOperand(3);
4338   SDValue N4 = N->getOperand(4);
4339   ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
4340
4341   // fold select_cc lhs, rhs, x, x, cc -> x
4342   if (N2 == N3)
4343     return N2;
4344
4345   // Determine if the condition we're dealing with is constant
4346   SDValue SCC = SimplifySetCC(getSetCCResultType(N0.getValueType()),
4347                               N0, N1, CC, SDLoc(N), false);
4348   if (SCC.getNode()) {
4349     AddToWorkList(SCC.getNode());
4350
4351     if (ConstantSDNode *SCCC = dyn_cast<ConstantSDNode>(SCC.getNode())) {
4352       if (!SCCC->isNullValue())
4353         return N2;    // cond always true -> true val
4354       else
4355         return N3;    // cond always false -> false val
4356     }
4357
4358     // Fold to a simpler select_cc
4359     if (SCC.getOpcode() == ISD::SETCC)
4360       return DAG.getNode(ISD::SELECT_CC, SDLoc(N), N2.getValueType(),
4361                          SCC.getOperand(0), SCC.getOperand(1), N2, N3,
4362                          SCC.getOperand(2));
4363   }
4364
4365   // If we can fold this based on the true/false value, do so.
4366   if (SimplifySelectOps(N, N2, N3))
4367     return SDValue(N, 0);  // Don't revisit N.
4368
4369   // fold select_cc into other things, such as min/max/abs
4370   return SimplifySelectCC(SDLoc(N), N0, N1, N2, N3, CC);
4371 }
4372
4373 SDValue DAGCombiner::visitSETCC(SDNode *N) {
4374   return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
4375                        cast<CondCodeSDNode>(N->getOperand(2))->get(),
4376                        SDLoc(N));
4377 }
4378
4379 // ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
4380 // "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
4381 // transformation. Returns true if extension are possible and the above
4382 // mentioned transformation is profitable.
4383 static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
4384                                     unsigned ExtOpc,
4385                                     SmallVectorImpl<SDNode *> &ExtendNodes,
4386                                     const TargetLowering &TLI) {
4387   bool HasCopyToRegUses = false;
4388   bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
4389   for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
4390                             UE = N0.getNode()->use_end();
4391        UI != UE; ++UI) {
4392     SDNode *User = *UI;
4393     if (User == N)
4394       continue;
4395     if (UI.getUse().getResNo() != N0.getResNo())
4396       continue;
4397     // FIXME: Only extend SETCC N, N and SETCC N, c for now.
4398     if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
4399       ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
4400       if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
4401         // Sign bits will be lost after a zext.
4402         return false;
4403       bool Add = false;
4404       for (unsigned i = 0; i != 2; ++i) {
4405         SDValue UseOp = User->getOperand(i);
4406         if (UseOp == N0)
4407           continue;
4408         if (!isa<ConstantSDNode>(UseOp))
4409           return false;
4410         Add = true;
4411       }
4412       if (Add)
4413         ExtendNodes.push_back(User);
4414       continue;
4415     }
4416     // If truncates aren't free and there are users we can't
4417     // extend, it isn't worthwhile.
4418     if (!isTruncFree)
4419       return false;
4420     // Remember if this value is live-out.
4421     if (User->getOpcode() == ISD::CopyToReg)
4422       HasCopyToRegUses = true;
4423   }
4424
4425   if (HasCopyToRegUses) {
4426     bool BothLiveOut = false;
4427     for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4428          UI != UE; ++UI) {
4429       SDUse &Use = UI.getUse();
4430       if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4431         BothLiveOut = true;
4432         break;
4433       }
4434     }
4435     if (BothLiveOut)
4436       // Both unextended and extended values are live out. There had better be
4437       // a good reason for the transformation.
4438       return ExtendNodes.size();
4439   }
4440   return true;
4441 }
4442
4443 void DAGCombiner::ExtendSetCCUses(const SmallVectorImpl<SDNode *> &SetCCs,
4444                                   SDValue Trunc, SDValue ExtLoad, SDLoc DL,
4445                                   ISD::NodeType ExtType) {
4446   // Extend SetCC uses if necessary.
4447   for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4448     SDNode *SetCC = SetCCs[i];
4449     SmallVector<SDValue, 4> Ops;
4450
4451     for (unsigned j = 0; j != 2; ++j) {
4452       SDValue SOp = SetCC->getOperand(j);
4453       if (SOp == Trunc)
4454         Ops.push_back(ExtLoad);
4455       else
4456         Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4457     }
4458
4459     Ops.push_back(SetCC->getOperand(2));
4460     CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4461                                  &Ops[0], Ops.size()));
4462   }
4463 }
4464
4465 SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4466   SDValue N0 = N->getOperand(0);
4467   EVT VT = N->getValueType(0);
4468
4469   // fold (sext c1) -> c1
4470   if (isa<ConstantSDNode>(N0))
4471     return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, N0);
4472
4473   // fold (sext (sext x)) -> (sext x)
4474   // fold (sext (aext x)) -> (sext x)
4475   if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
4476     return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT,
4477                        N0.getOperand(0));
4478
4479   if (N0.getOpcode() == ISD::TRUNCATE) {
4480     // fold (sext (truncate (load x))) -> (sext (smaller load x))
4481     // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
4482     SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4483     if (NarrowLoad.getNode()) {
4484       SDNode* oye = N0.getNode()->getOperand(0).getNode();
4485       if (NarrowLoad.getNode() != N0.getNode()) {
4486         CombineTo(N0.getNode(), NarrowLoad);
4487         // CombineTo deleted the truncate, if needed, but not what's under it.
4488         AddToWorkList(oye);
4489       }
4490       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4491     }
4492
4493     // See if the value being truncated is already sign extended.  If so, just
4494     // eliminate the trunc/sext pair.
4495     SDValue Op = N0.getOperand(0);
4496     unsigned OpBits   = Op.getValueType().getScalarType().getSizeInBits();
4497     unsigned MidBits  = N0.getValueType().getScalarType().getSizeInBits();
4498     unsigned DestBits = VT.getScalarType().getSizeInBits();
4499     unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
4500
4501     if (OpBits == DestBits) {
4502       // Op is i32, Mid is i8, and Dest is i32.  If Op has more than 24 sign
4503       // bits, it is already ready.
4504       if (NumSignBits > DestBits-MidBits)
4505         return Op;
4506     } else if (OpBits < DestBits) {
4507       // Op is i32, Mid is i8, and Dest is i64.  If Op has more than 24 sign
4508       // bits, just sext from i32.
4509       if (NumSignBits > OpBits-MidBits)
4510         return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, Op);
4511     } else {
4512       // Op is i64, Mid is i8, and Dest is i32.  If Op has more than 56 sign
4513       // bits, just truncate to i32.
4514       if (NumSignBits > OpBits-MidBits)
4515         return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op);
4516     }
4517
4518     // fold (sext (truncate x)) -> (sextinreg x).
4519     if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4520                                                  N0.getValueType())) {
4521       if (OpBits < DestBits)
4522         Op = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N0), VT, Op);
4523       else if (OpBits > DestBits)
4524         Op = DAG.getNode(ISD::TRUNCATE, SDLoc(N0), VT, Op);
4525       return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, Op,
4526                          DAG.getValueType(N0.getValueType()));
4527     }
4528   }
4529
4530   // fold (sext (load x)) -> (sext (truncate (sextload x)))
4531   // None of the supported targets knows how to perform load and sign extend
4532   // on vectors in one instruction.  We only perform this transformation on
4533   // scalars.
4534   if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
4535       ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
4536        TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
4537     bool DoXform = true;
4538     SmallVector<SDNode*, 4> SetCCs;
4539     if (!N0.hasOneUse())
4540       DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4541     if (DoXform) {
4542       LoadSDNode *LN0 = cast<LoadSDNode>(N0);
4543       SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
4544                                        LN0->getChain(),
4545                                        LN0->getBasePtr(), LN0->getPointerInfo(),
4546                                        N0.getValueType(),
4547                                        LN0->isVolatile(), LN0->isNonTemporal(),
4548                                        LN0->getAlignment());
4549       CombineTo(N, ExtLoad);
4550       SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
4551                                   N0.getValueType(), ExtLoad);
4552       CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
4553       ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
4554                       ISD::SIGN_EXTEND);
4555       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4556     }
4557   }
4558
4559   // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4560   // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
4561   if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4562       ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
4563     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
4564     EVT MemVT = LN0->getMemoryVT();
4565     if ((!LegalOperations && !LN0->isVolatile()) ||
4566         TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
4567       SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
4568                                        LN0->getChain(),
4569                                        LN0->getBasePtr(), LN0->getPointerInfo(),
4570                                        MemVT,
4571                                        LN0->isVolatile(), LN0->isNonTemporal(),
4572                                        LN0->getAlignment());
4573       CombineTo(N, ExtLoad);
4574       CombineTo(N0.getNode(),
4575                 DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
4576                             N0.getValueType(), ExtLoad),
4577                 ExtLoad.getValue(1));
4578       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4579     }
4580   }
4581
4582   // fold (sext (and/or/xor (load x), cst)) ->
4583   //      (and/or/xor (sextload x), (sext cst))
4584   if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4585        N0.getOpcode() == ISD::XOR) &&
4586       isa<LoadSDNode>(N0.getOperand(0)) &&
4587       N0.getOperand(1).getOpcode() == ISD::Constant &&
4588       TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4589       (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4590     LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4591     if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4592       bool DoXform = true;
4593       SmallVector<SDNode*, 4> SetCCs;
4594       if (!N0.hasOneUse())
4595         DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4596                                           SetCCs, TLI);
4597       if (DoXform) {
4598         SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(LN0), VT,
4599                                          LN0->getChain(), LN0->getBasePtr(),
4600                                          LN0->getPointerInfo(),
4601                                          LN0->getMemoryVT(),
4602                                          LN0->isVolatile(),
4603                                          LN0->isNonTemporal(),
4604                                          LN0->getAlignment());
4605         APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4606         Mask = Mask.sext(VT.getSizeInBits());
4607         SDValue And = DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
4608                                   ExtLoad, DAG.getConstant(Mask, VT));
4609         SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4610                                     SDLoc(N0.getOperand(0)),
4611                                     N0.getOperand(0).getValueType(), ExtLoad);
4612         CombineTo(N, And);
4613         CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4614         ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
4615                         ISD::SIGN_EXTEND);
4616         return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4617       }
4618     }
4619   }
4620
4621   if (N0.getOpcode() == ISD::SETCC) {
4622     // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
4623     // Only do this before legalize for now.
4624     if (VT.isVector() && !LegalOperations &&
4625         TLI.getBooleanContents(true) ==
4626           TargetLowering::ZeroOrNegativeOneBooleanContent) {
4627       EVT N0VT = N0.getOperand(0).getValueType();
4628       // On some architectures (such as SSE/NEON/etc) the SETCC result type is
4629       // of the same size as the compared operands. Only optimize sext(setcc())
4630       // if this is the case.
4631       EVT SVT = getSetCCResultType(N0VT);
4632
4633       // We know that the # elements of the results is the same as the
4634       // # elements of the compare (and the # elements of the compare result
4635       // for that matter).  Check to see that they are the same size.  If so,
4636       // we know that the element size of the sext'd result matches the
4637       // element size of the compare operands.
4638       if (VT.getSizeInBits() == SVT.getSizeInBits())
4639         return DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0),
4640                              N0.getOperand(1),
4641                              cast<CondCodeSDNode>(N0.getOperand(2))->get());
4642
4643       // If the desired elements are smaller or larger than the source
4644       // elements we can use a matching integer vector type and then
4645       // truncate/sign extend
4646       EVT MatchingVectorType = N0VT.changeVectorElementTypeToInteger();
4647       if (SVT == MatchingVectorType) {
4648         SDValue VsetCC = DAG.getSetCC(SDLoc(N), MatchingVectorType,
4649                                N0.getOperand(0), N0.getOperand(1),
4650                                cast<CondCodeSDNode>(N0.getOperand(2))->get());
4651         return DAG.getSExtOrTrunc(VsetCC, SDLoc(N), VT);
4652       }
4653     }
4654
4655     // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
4656     unsigned ElementWidth = VT.getScalarType().getSizeInBits();
4657     SDValue NegOne =
4658       DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
4659     SDValue SCC =
4660       SimplifySelectCC(SDLoc(N), N0.getOperand(0), N0.getOperand(1),
4661                        NegOne, DAG.getConstant(0, VT),
4662                        cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
4663     if (SCC.getNode()) return SCC;
4664     if (!VT.isVector() &&
4665         (!LegalOperations ||
4666          TLI.isOperationLegal(ISD::SETCC, getSetCCResultType(VT)))) {
4667       return DAG.getSelect(SDLoc(N), VT,
4668                            DAG.getSetCC(SDLoc(N),
4669                                         getSetCCResultType(VT),
4670                                         N0.getOperand(0), N0.getOperand(1),
4671                                         cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4672                            NegOne, DAG.getConstant(0, VT));
4673     }
4674   }
4675
4676   // fold (sext x) -> (zext x) if the sign bit is known zero.
4677   if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
4678       DAG.SignBitIsZero(N0))
4679     return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, N0);
4680
4681   return SDValue();
4682 }
4683
4684 // isTruncateOf - If N is a truncate of some other value, return true, record
4685 // the value being truncated in Op and which of Op's bits are zero in KnownZero.
4686 // This function computes KnownZero to avoid a duplicated call to
4687 // ComputeMaskedBits in the caller.
4688 static bool isTruncateOf(SelectionDAG &DAG, SDValue N, SDValue &Op,
4689                          APInt &KnownZero) {
4690   APInt KnownOne;
4691   if (N->getOpcode() == ISD::TRUNCATE) {
4692     Op = N->getOperand(0);
4693     DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4694     return true;
4695   }
4696
4697   if (N->getOpcode() != ISD::SETCC || N->getValueType(0) != MVT::i1 ||
4698       cast<CondCodeSDNode>(N->getOperand(2))->get() != ISD::SETNE)
4699     return false;
4700
4701   SDValue Op0 = N->getOperand(0);
4702   SDValue Op1 = N->getOperand(1);
4703   assert(Op0.getValueType() == Op1.getValueType());
4704
4705   ConstantSDNode *COp0 = dyn_cast<ConstantSDNode>(Op0);
4706   ConstantSDNode *COp1 = dyn_cast<ConstantSDNode>(Op1);
4707   if (COp0 && COp0->isNullValue())
4708     Op = Op1;
4709   else if (COp1 && COp1->isNullValue())
4710     Op = Op0;
4711   else
4712     return false;
4713
4714   DAG.ComputeMaskedBits(Op, KnownZero, KnownOne);
4715
4716   if (!(KnownZero | APInt(Op.getValueSizeInBits(), 1)).isAllOnesValue())
4717     return false;
4718
4719   return true;
4720 }
4721
4722 SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4723   SDValue N0 = N->getOperand(0);
4724   EVT VT = N->getValueType(0);
4725
4726   // fold (zext c1) -> c1
4727   if (isa<ConstantSDNode>(N0))
4728     return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, N0);
4729   // fold (zext (zext x)) -> (zext x)
4730   // fold (zext (aext x)) -> (zext x)
4731   if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
4732     return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT,
4733                        N0.getOperand(0));
4734
4735   // fold (zext (truncate x)) -> (zext x) or
4736   //      (zext (truncate x)) -> (truncate x)
4737   // This is valid when the truncated bits of x are already zero.
4738   // FIXME: We should extend this to work for vectors too.
4739   SDValue Op;
4740   APInt KnownZero;
4741   if (!VT.isVector() && isTruncateOf(DAG, N0, Op, KnownZero)) {
4742     APInt TruncatedBits =
4743       (Op.getValueSizeInBits() == N0.getValueSizeInBits()) ?
4744       APInt(Op.getValueSizeInBits(), 0) :
4745       APInt::getBitsSet(Op.getValueSizeInBits(),
4746                         N0.getValueSizeInBits(),
4747                         std::min(Op.getValueSizeInBits(),
4748                                  VT.getSizeInBits()));
4749     if (TruncatedBits == (KnownZero & TruncatedBits)) {
4750       if (VT.bitsGT(Op.getValueType()))
4751         return DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N), VT, Op);
4752       if (VT.bitsLT(Op.getValueType()))
4753         return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op);
4754
4755       return Op;
4756     }
4757   }
4758
4759   // fold (zext (truncate (load x))) -> (zext (smaller load x))
4760   // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
4761   if (N0.getOpcode() == ISD::TRUNCATE) {
4762     SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4763     if (NarrowLoad.getNode()) {
4764       SDNode* oye = N0.getNode()->getOperand(0).getNode();
4765       if (NarrowLoad.getNode() != N0.getNode()) {
4766         CombineTo(N0.getNode(), NarrowLoad);
4767         // CombineTo deleted the truncate, if needed, but not what's under it.
4768         AddToWorkList(oye);
4769       }
4770       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4771     }
4772   }
4773
4774   // fold (zext (truncate x)) -> (and x, mask)
4775   if (N0.getOpcode() == ISD::TRUNCATE &&
4776       (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
4777
4778     // fold (zext (truncate (load x))) -> (zext (smaller load x))
4779     // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4780     SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4781     if (NarrowLoad.getNode()) {
4782       SDNode* oye = N0.getNode()->getOperand(0).getNode();
4783       if (NarrowLoad.getNode() != N0.getNode()) {
4784         CombineTo(N0.getNode(), NarrowLoad);
4785         // CombineTo deleted the truncate, if needed, but not what's under it.
4786         AddToWorkList(oye);
4787       }
4788       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4789     }
4790
4791     SDValue Op = N0.getOperand(0);
4792     if (Op.getValueType().bitsLT(VT)) {
4793       Op = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, Op);
4794       AddToWorkList(Op.getNode());
4795     } else if (Op.getValueType().bitsGT(VT)) {
4796       Op = DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Op);
4797       AddToWorkList(Op.getNode());
4798     }
4799     return DAG.getZeroExtendInReg(Op, SDLoc(N),
4800                                   N0.getValueType().getScalarType());
4801   }
4802
4803   // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4804   // if either of the casts is not free.
4805   if (N0.getOpcode() == ISD::AND &&
4806       N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
4807       N0.getOperand(1).getOpcode() == ISD::Constant &&
4808       (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4809                            N0.getValueType()) ||
4810        !TLI.isZExtFree(N0.getValueType(), VT))) {
4811     SDValue X = N0.getOperand(0).getOperand(0);
4812     if (X.getValueType().bitsLT(VT)) {
4813       X = DAG.getNode(ISD::ANY_EXTEND, SDLoc(X), VT, X);
4814     } else if (X.getValueType().bitsGT(VT)) {
4815       X = DAG.getNode(ISD::TRUNCATE, SDLoc(X), VT, X);
4816     }
4817     APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4818     Mask = Mask.zext(VT.getSizeInBits());
4819     return DAG.getNode(ISD::AND, SDLoc(N), VT,
4820                        X, DAG.getConstant(Mask, VT));
4821   }
4822
4823   // fold (zext (load x)) -> (zext (truncate (zextload x)))
4824   // None of the supported targets knows how to perform load and vector_zext
4825   // on vectors in one instruction.  We only perform this transformation on
4826   // scalars.
4827   if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
4828       ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
4829        TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
4830     bool DoXform = true;
4831     SmallVector<SDNode*, 4> SetCCs;
4832     if (!N0.hasOneUse())
4833       DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4834     if (DoXform) {
4835       LoadSDNode *LN0 = cast<LoadSDNode>(N0);
4836       SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N), VT,
4837                                        LN0->getChain(),
4838                                        LN0->getBasePtr(), LN0->getPointerInfo(),
4839                                        N0.getValueType(),
4840                                        LN0->isVolatile(), LN0->isNonTemporal(),
4841                                        LN0->getAlignment());
4842       CombineTo(N, ExtLoad);
4843       SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
4844                                   N0.getValueType(), ExtLoad);
4845       CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
4846
4847       ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
4848                       ISD::ZERO_EXTEND);
4849       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4850     }
4851   }
4852
4853   // fold (zext (and/or/xor (load x), cst)) ->
4854   //      (and/or/xor (zextload x), (zext cst))
4855   if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4856        N0.getOpcode() == ISD::XOR) &&
4857       isa<LoadSDNode>(N0.getOperand(0)) &&
4858       N0.getOperand(1).getOpcode() == ISD::Constant &&
4859       TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4860       (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4861     LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4862     if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4863       bool DoXform = true;
4864       SmallVector<SDNode*, 4> SetCCs;
4865       if (!N0.hasOneUse())
4866         DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4867                                           SetCCs, TLI);
4868       if (DoXform) {
4869         SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(LN0), VT,
4870                                          LN0->getChain(), LN0->getBasePtr(),
4871                                          LN0->getPointerInfo(),
4872                                          LN0->getMemoryVT(),
4873                                          LN0->isVolatile(),
4874                                          LN0->isNonTemporal(),
4875                                          LN0->getAlignment());
4876         APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4877         Mask = Mask.zext(VT.getSizeInBits());
4878         SDValue And = DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
4879                                   ExtLoad, DAG.getConstant(Mask, VT));
4880         SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4881                                     SDLoc(N0.getOperand(0)),
4882                                     N0.getOperand(0).getValueType(), ExtLoad);
4883         CombineTo(N, And);
4884         CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4885         ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
4886                         ISD::ZERO_EXTEND);
4887         return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4888       }
4889     }
4890   }
4891
4892   // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4893   // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
4894   if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4895       ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
4896     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
4897     EVT MemVT = LN0->getMemoryVT();
4898     if ((!LegalOperations && !LN0->isVolatile()) ||
4899         TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
4900       SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(N), VT,
4901                                        LN0->getChain(),
4902                                        LN0->getBasePtr(), LN0->getPointerInfo(),
4903                                        MemVT,
4904                                        LN0->isVolatile(), LN0->isNonTemporal(),
4905                                        LN0->getAlignment());
4906       CombineTo(N, ExtLoad);
4907       CombineTo(N0.getNode(),
4908                 DAG.getNode(ISD::TRUNCATE, SDLoc(N0), N0.getValueType(),
4909                             ExtLoad),
4910                 ExtLoad.getValue(1));
4911       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
4912     }
4913   }
4914
4915   if (N0.getOpcode() == ISD::SETCC) {
4916     if (!LegalOperations && VT.isVector()) {
4917       // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4918       // Only do this before legalize for now.
4919       EVT N0VT = N0.getOperand(0).getValueType();
4920       EVT EltVT = VT.getVectorElementType();
4921       SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4922                                     DAG.getConstant(1, EltVT));
4923       if (VT.getSizeInBits() == N0VT.getSizeInBits())
4924         // We know that the # elements of the results is the same as the
4925         // # elements of the compare (and the # elements of the compare result
4926         // for that matter).  Check to see that they are the same size.  If so,
4927         // we know that the element size of the sext'd result matches the
4928         // element size of the compare operands.
4929         return DAG.getNode(ISD::AND, SDLoc(N), VT,
4930                            DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0),
4931                                          N0.getOperand(1),
4932                                  cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4933                            DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT,
4934                                        &OneOps[0], OneOps.size()));
4935
4936       // If the desired elements are smaller or larger than the source
4937       // elements we can use a matching integer vector type and then
4938       // truncate/sign extend
4939       EVT MatchingElementType =
4940         EVT::getIntegerVT(*DAG.getContext(),
4941                           N0VT.getScalarType().getSizeInBits());
4942       EVT MatchingVectorType =
4943         EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4944                          N0VT.getVectorNumElements());
4945       SDValue VsetCC =
4946         DAG.getSetCC(SDLoc(N), MatchingVectorType, N0.getOperand(0),
4947                       N0.getOperand(1),
4948                       cast<CondCodeSDNode>(N0.getOperand(2))->get());
4949       return DAG.getNode(ISD::AND, SDLoc(N), VT,
4950                          DAG.getSExtOrTrunc(VsetCC, SDLoc(N), VT),
4951                          DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT,
4952                                      &OneOps[0], OneOps.size()));
4953     }
4954
4955     // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
4956     SDValue SCC =
4957       SimplifySelectCC(SDLoc(N), N0.getOperand(0), N0.getOperand(1),
4958                        DAG.getConstant(1, VT), DAG.getConstant(0, VT),
4959                        cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
4960     if (SCC.getNode()) return SCC;
4961   }
4962
4963   // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
4964   if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
4965       isa<ConstantSDNode>(N0.getOperand(1)) &&
4966       N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4967       N0.hasOneUse()) {
4968     SDValue ShAmt = N0.getOperand(1);
4969     unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
4970     if (N0.getOpcode() == ISD::SHL) {
4971       SDValue InnerZExt = N0.getOperand(0);
4972       // If the original shl may be shifting out bits, do not perform this
4973       // transformation.
4974       unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4975         InnerZExt.getOperand(0).getValueType().getSizeInBits();
4976       if (ShAmtVal > KnownZeroBits)
4977         return SDValue();
4978     }
4979
4980     SDLoc DL(N);
4981
4982     // Ensure that the shift amount is wide enough for the shifted value.
4983     if (VT.getSizeInBits() >= 256)
4984       ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
4985
4986     return DAG.getNode(N0.getOpcode(), DL, VT,
4987                        DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4988                        ShAmt);
4989   }
4990
4991   return SDValue();
4992 }
4993
4994 SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4995   SDValue N0 = N->getOperand(0);
4996   EVT VT = N->getValueType(0);
4997
4998   // fold (aext c1) -> c1
4999   if (isa<ConstantSDNode>(N0))
5000     return DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, N0);
5001   // fold (aext (aext x)) -> (aext x)
5002   // fold (aext (zext x)) -> (zext x)
5003   // fold (aext (sext x)) -> (sext x)
5004   if (N0.getOpcode() == ISD::ANY_EXTEND  ||
5005       N0.getOpcode() == ISD::ZERO_EXTEND ||
5006       N0.getOpcode() == ISD::SIGN_EXTEND)
5007     return DAG.getNode(N0.getOpcode(), SDLoc(N), VT, N0.getOperand(0));
5008
5009   // fold (aext (truncate (load x))) -> (aext (smaller load x))
5010   // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
5011   if (N0.getOpcode() == ISD::TRUNCATE) {
5012     SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
5013     if (NarrowLoad.getNode()) {
5014       SDNode* oye = N0.getNode()->getOperand(0).getNode();
5015       if (NarrowLoad.getNode() != N0.getNode()) {
5016         CombineTo(N0.getNode(), NarrowLoad);
5017         // CombineTo deleted the truncate, if needed, but not what's under it.
5018         AddToWorkList(oye);
5019       }
5020       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
5021     }
5022   }
5023
5024   // fold (aext (truncate x))
5025   if (N0.getOpcode() == ISD::TRUNCATE) {
5026     SDValue TruncOp = N0.getOperand(0);
5027     if (TruncOp.getValueType() == VT)
5028       return TruncOp; // x iff x size == zext size.
5029     if (TruncOp.getValueType().bitsGT(VT))
5030       return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, TruncOp);
5031     return DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, TruncOp);
5032   }
5033
5034   // Fold (aext (and (trunc x), cst)) -> (and x, cst)
5035   // if the trunc is not free.
5036   if (N0.getOpcode() == ISD::AND &&
5037       N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
5038       N0.getOperand(1).getOpcode() == ISD::Constant &&
5039       !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
5040                           N0.getValueType())) {
5041     SDValue X = N0.getOperand(0).getOperand(0);
5042     if (X.getValueType().bitsLT(VT)) {
5043       X = DAG.getNode(ISD::ANY_EXTEND, SDLoc(N), VT, X);
5044     } else if (X.getValueType().bitsGT(VT)) {
5045       X = DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, X);
5046     }
5047     APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
5048     Mask = Mask.zext(VT.getSizeInBits());
5049     return DAG.getNode(ISD::AND, SDLoc(N), VT,
5050                        X, DAG.getConstant(Mask, VT));
5051   }
5052
5053   // fold (aext (load x)) -> (aext (truncate (extload x)))
5054   // None of the supported targets knows how to perform load and any_ext
5055   // on vectors in one instruction.  We only perform this transformation on
5056   // scalars.
5057   if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
5058       ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
5059        TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
5060     bool DoXform = true;
5061     SmallVector<SDNode*, 4> SetCCs;
5062     if (!N0.hasOneUse())
5063       DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
5064     if (DoXform) {
5065       LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5066       SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, SDLoc(N), VT,
5067                                        LN0->getChain(),
5068                                        LN0->getBasePtr(), LN0->getPointerInfo(),
5069                                        N0.getValueType(),
5070                                        LN0->isVolatile(), LN0->isNonTemporal(),
5071                                        LN0->getAlignment());
5072       CombineTo(N, ExtLoad);
5073       SDValue Trunc = DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
5074                                   N0.getValueType(), ExtLoad);
5075       CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
5076       ExtendSetCCUses(SetCCs, Trunc, ExtLoad, SDLoc(N),
5077                       ISD::ANY_EXTEND);
5078       return SDValue(N, 0);   // Return N so it doesn't get rechecked!
5079     }
5080   }
5081
5082   // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
5083   // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
5084   // fold (aext ( extload x)) -> (aext (truncate (extload  x)))
5085   if (N0.getOpcode() == ISD::LOAD &&
5086       !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
5087       N0.hasOneUse()) {
5088     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5089     EVT MemVT = LN0->getMemoryVT();
5090     SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), SDLoc(N),
5091                                      VT, LN0->getChain(), LN0->getBasePtr(),
5092                                      LN0->getPointerInfo(), MemVT,
5093                                      LN0->isVolatile(), LN0->isNonTemporal(),
5094                                      LN0->getAlignment());
5095     CombineTo(N, ExtLoad);
5096     CombineTo(N0.getNode(),
5097               DAG.getNode(ISD::TRUNCATE, SDLoc(N0),
5098                           N0.getValueType(), ExtLoad),
5099               ExtLoad.getValue(1));
5100     return SDValue(N, 0);   // Return N so it doesn't get rechecked!
5101   }
5102
5103   if (N0.getOpcode() == ISD::SETCC) {
5104     // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
5105     // Only do this before legalize for now.
5106     if (VT.isVector() && !LegalOperations) {
5107       EVT N0VT = N0.getOperand(0).getValueType();
5108         // We know that the # elements of the results is the same as the
5109         // # elements of the compare (and the # elements of the compare result
5110         // for that matter).  Check to see that they are the same size.  If so,
5111         // we know that the element size of the sext'd result matches the
5112         // element size of the compare operands.
5113       if (VT.getSizeInBits() == N0VT.getSizeInBits())
5114         return DAG.getSetCC(SDLoc(N), VT, N0.getOperand(0),
5115                              N0.getOperand(1),
5116                              cast<CondCodeSDNode>(N0.getOperand(2))->get());
5117       // If the desired elements are smaller or larger than the source
5118       // elements we can use a matching integer vector type and then
5119       // truncate/sign extend
5120       else {
5121         EVT MatchingElementType =
5122           EVT::getIntegerVT(*DAG.getContext(),
5123                             N0VT.getScalarType().getSizeInBits());
5124         EVT MatchingVectorType =
5125           EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
5126                            N0VT.getVectorNumElements());
5127         SDValue VsetCC =
5128           DAG.getSetCC(SDLoc(N), MatchingVectorType, N0.getOperand(0),
5129                         N0.getOperand(1),
5130                         cast<CondCodeSDNode>(N0.getOperand(2))->get());
5131         return DAG.getSExtOrTrunc(VsetCC, SDLoc(N), VT);
5132       }
5133     }
5134
5135     // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
5136     SDValue SCC =
5137       SimplifySelectCC(SDLoc(N), N0.getOperand(0), N0.getOperand(1),
5138                        DAG.getConstant(1, VT), DAG.getConstant(0, VT),
5139                        cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
5140     if (SCC.getNode())
5141       return SCC;
5142   }
5143
5144   return SDValue();
5145 }
5146
5147 /// GetDemandedBits - See if the specified operand can be simplified with the
5148 /// knowledge that only the bits specified by Mask are used.  If so, return the
5149 /// simpler operand, otherwise return a null SDValue.
5150 SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
5151   switch (V.getOpcode()) {
5152   default: break;
5153   case ISD::Constant: {
5154     const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
5155     assert(CV != 0 && "Const value should be ConstSDNode.");
5156     const APInt &CVal = CV->getAPIntValue();
5157     APInt NewVal = CVal & Mask;
5158     if (NewVal != CVal)
5159       return DAG.getConstant(NewVal, V.getValueType());
5160     break;
5161   }
5162   case ISD::OR:
5163   case ISD::XOR:
5164     // If the LHS or RHS don't contribute bits to the or, drop them.
5165     if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
5166       return V.getOperand(1);
5167     if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
5168       return V.getOperand(0);
5169     break;
5170   case ISD::SRL:
5171     // Only look at single-use SRLs.
5172     if (!V.getNode()->hasOneUse())
5173       break;
5174     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
5175       // See if we can recursively simplify the LHS.
5176       unsigned Amt = RHSC->getZExtValue();
5177
5178       // Watch out for shift count overflow though.
5179       if (Amt >= Mask.getBitWidth()) break;
5180       APInt NewMask = Mask << Amt;
5181       SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
5182       if (SimplifyLHS.getNode())
5183         return DAG.getNode(ISD::SRL, SDLoc(V), V.getValueType(),
5184                            SimplifyLHS, V.getOperand(1));
5185     }
5186   }
5187   return SDValue();
5188 }
5189
5190 /// ReduceLoadWidth - If the result of a wider load is shifted to right of N
5191 /// bits and then truncated to a narrower type and where N is a multiple
5192 /// of number of bits of the narrower type, transform it to a narrower load
5193 /// from address + N / num of bits of new type. If the result is to be
5194 /// extended, also fold the extension to form a extending load.
5195 SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
5196   unsigned Opc = N->getOpcode();
5197
5198   ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
5199   SDValue N0 = N->getOperand(0);
5200   EVT VT = N->getValueType(0);
5201   EVT ExtVT = VT;
5202
5203   // This transformation isn't valid for vector loads.
5204   if (VT.isVector())
5205     return SDValue();
5206
5207   // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
5208   // extended to VT.
5209   if (Opc == ISD::SIGN_EXTEND_INREG) {
5210     ExtType = ISD::SEXTLOAD;
5211     ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
5212   } else if (Opc == ISD::SRL) {
5213     // Another special-case: SRL is basically zero-extending a narrower value.
5214     ExtType = ISD::ZEXTLOAD;
5215     N0 = SDValue(N, 0);
5216     ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
5217     if (!N01) return SDValue();
5218     ExtVT = EVT::getIntegerVT(*DAG.getContext(),
5219                               VT.getSizeInBits() - N01->getZExtValue());
5220   }
5221   if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
5222     return SDValue();
5223
5224   unsigned EVTBits = ExtVT.getSizeInBits();
5225
5226   // Do not generate loads of non-round integer types since these can
5227   // be expensive (and would be wrong if the type is not byte sized).
5228   if (!ExtVT.isRound())
5229     return SDValue();
5230
5231   unsigned ShAmt = 0;
5232   if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
5233     if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
5234       ShAmt = N01->getZExtValue();
5235       // Is the shift amount a multiple of size of VT?
5236       if ((ShAmt & (EVTBits-1)) == 0) {
5237         N0 = N0.getOperand(0);
5238         // Is the load width a multiple of size of VT?
5239         if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
5240           return SDValue();
5241       }
5242
5243       // At this point, we must have a load or else we can't do the transform.
5244       if (!isa<LoadSDNode>(N0)) return SDValue();
5245
5246       // Because a SRL must be assumed to *need* to zero-extend the high bits
5247       // (as opposed to anyext the high bits), we can't combine the zextload
5248       // lowering of SRL and an sextload.
5249       if (cast<LoadSDNode>(N0)->getExtensionType() == ISD::SEXTLOAD)
5250         return SDValue();
5251
5252       // If the shift amount is larger than the input type then we're not
5253       // accessing any of the loaded bytes.  If the load was a zextload/extload
5254       // then the result of the shift+trunc is zero/undef (handled elsewhere).
5255       if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
5256         return SDValue();
5257     }
5258   }
5259
5260   // If the load is shifted left (and the result isn't shifted back right),
5261   // we can fold the truncate through the shift.
5262   unsigned ShLeftAmt = 0;
5263   if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
5264       ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
5265     if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
5266       ShLeftAmt = N01->getZExtValue();
5267       N0 = N0.getOperand(0);
5268     }
5269   }
5270
5271   // If we haven't found a load, we can't narrow it.  Don't transform one with
5272   // multiple uses, this would require adding a new load.
5273   if (!isa<LoadSDNode>(N0) || !N0.hasOneUse())
5274     return SDValue();
5275
5276   // Don't change the width of a volatile load.
5277   LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5278   if (LN0->isVolatile())
5279     return SDValue();
5280
5281   // Verify that we are actually reducing a load width here.
5282   if (LN0->getMemoryVT().getSizeInBits() < EVTBits)
5283     return SDValue();
5284
5285   // For the transform to be legal, the load must produce only two values
5286   // (the value loaded and the chain).  Don't transform a pre-increment
5287   // load, for example, which produces an extra value.  Otherwise the
5288   // transformation is not equivalent, and the downstream logic to replace
5289   // uses gets things wrong.
5290   if (LN0->getNumValues() > 2)
5291     return SDValue();
5292
5293   // If the load that we're shrinking is an extload and we're not just
5294   // discarding the extension we can't simply shrink the load. Bail.
5295   // TODO: It would be possible to merge the extensions in some cases.
5296   if (LN0->getExtensionType() != ISD::NON_EXTLOAD &&
5297       LN0->getMemoryVT().getSizeInBits() < ExtVT.getSizeInBits() + ShAmt)
5298     return SDValue();
5299
5300   EVT PtrType = N0.getOperand(1).getValueType();
5301
5302   if (PtrType == MVT::Untyped || PtrType.isExtended())
5303     // It's not possible to generate a constant of extended or untyped type.
5304     return SDValue();
5305
5306   // For big endian targets, we need to adjust the offset to the pointer to
5307   // load the correct bytes.
5308   if (TLI.isBigEndian()) {
5309     unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
5310     unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
5311     ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
5312   }
5313
5314   uint64_t PtrOff = ShAmt / 8;
5315   unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
5316   SDValue NewPtr = DAG.getNode(ISD::ADD, SDLoc(LN0),
5317                                PtrType, LN0->getBasePtr(),
5318                                DAG.getConstant(PtrOff, PtrType));
5319   AddToWorkList(NewPtr.getNode());
5320
5321   SDValue Load;
5322   if (ExtType == ISD::NON_EXTLOAD)
5323     Load =  DAG.getLoad(VT, SDLoc(N0), LN0->getChain(), NewPtr,
5324                         LN0->getPointerInfo().getWithOffset(PtrOff),
5325                         LN0->isVolatile(), LN0->isNonTemporal(),
5326                         LN0->isInvariant(), NewAlign);
5327   else
5328     Load = DAG.getExtLoad(ExtType, SDLoc(N0), VT, LN0->getChain(),NewPtr,
5329                           LN0->getPointerInfo().getWithOffset(PtrOff),
5330                           ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
5331                           NewAlign);
5332
5333   // Replace the old load's chain with the new load's chain.
5334   WorkListRemover DeadNodes(*this);
5335   DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1));
5336
5337   // Shift the result left, if we've swallowed a left shift.
5338   SDValue Result = Load;
5339   if (ShLeftAmt != 0) {
5340     EVT ShImmTy = getShiftAmountTy(Result.getValueType());
5341     if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
5342       ShImmTy = VT;
5343     // If the shift amount is as large as the result size (but, presumably,
5344     // no larger than the source) then the useful bits of the result are
5345     // zero; we can't simply return the shortened shift, because the result
5346     // of that operation is undefined.
5347     if (ShLeftAmt >= VT.getSizeInBits())
5348       Result = DAG.getConstant(0, VT);
5349     else
5350       Result = DAG.getNode(ISD::SHL, SDLoc(N0), VT,
5351                           Result, DAG.getConstant(ShLeftAmt, ShImmTy));
5352   }
5353
5354   // Return the new loaded value.
5355   return Result;
5356 }
5357
5358 SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
5359   SDValue N0 = N->getOperand(0);
5360   SDValue N1 = N->getOperand(1);
5361   EVT VT = N->getValueType(0);
5362   EVT EVT = cast<VTSDNode>(N1)->getVT();
5363   unsigned VTBits = VT.getScalarType().getSizeInBits();
5364   unsigned EVTBits = EVT.getScalarType().getSizeInBits();
5365
5366   // fold (sext_in_reg c1) -> c1
5367   if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
5368     return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT, N0, N1);
5369
5370   // If the input is already sign extended, just drop the extension.
5371   if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
5372     return N0;
5373
5374   // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
5375   if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
5376       EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT()))
5377     return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT,
5378                        N0.getOperand(0), N1);
5379
5380   // fold (sext_in_reg (sext x)) -> (sext x)
5381   // fold (sext_in_reg (aext x)) -> (sext x)
5382   // if x is small enough.
5383   if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
5384     SDValue N00 = N0.getOperand(0);
5385     if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
5386         (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
5387       return DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, N00, N1);
5388   }
5389
5390   // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
5391   if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
5392     return DAG.getZeroExtendInReg(N0, SDLoc(N), EVT);
5393
5394   // fold operands of sext_in_reg based on knowledge that the top bits are not
5395   // demanded.
5396   if (SimplifyDemandedBits(SDValue(N, 0)))
5397     return SDValue(N, 0);
5398
5399   // fold (sext_in_reg (load x)) -> (smaller sextload x)
5400   // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
5401   SDValue NarrowLoad = ReduceLoadWidth(N);
5402   if (NarrowLoad.getNode())
5403     return NarrowLoad;
5404
5405   // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
5406   // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
5407   // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
5408   if (N0.getOpcode() == ISD::SRL) {
5409     if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
5410       if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
5411         // We can turn this into an SRA iff the input to the SRL is already sign
5412         // extended enough.
5413         unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
5414         if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
5415           return DAG.getNode(ISD::SRA, SDLoc(N), VT,
5416                              N0.getOperand(0), N0.getOperand(1));
5417       }
5418   }
5419
5420   // fold (sext_inreg (extload x)) -> (sextload x)
5421   if (ISD::isEXTLoad(N0.getNode()) &&
5422       ISD::isUNINDEXEDLoad(N0.getNode()) &&
5423       EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
5424       ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
5425        TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
5426     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5427     SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
5428                                      LN0->getChain(),
5429                                      LN0->getBasePtr(), LN0->getPointerInfo(),
5430                                      EVT,
5431                                      LN0->isVolatile(), LN0->isNonTemporal(),
5432                                      LN0->getAlignment());
5433     CombineTo(N, ExtLoad);
5434     CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
5435     AddToWorkList(ExtLoad.getNode());
5436     return SDValue(N, 0);   // Return N so it doesn't get rechecked!
5437   }
5438   // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
5439   if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
5440       N0.hasOneUse() &&
5441       EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
5442       ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
5443        TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
5444     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5445     SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, SDLoc(N), VT,
5446                                      LN0->getChain(),
5447                                      LN0->getBasePtr(), LN0->getPointerInfo(),
5448                                      EVT,
5449                                      LN0->isVolatile(), LN0->isNonTemporal(),
5450                                      LN0->getAlignment());
5451     CombineTo(N, ExtLoad);
5452     CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
5453     return SDValue(N, 0);   // Return N so it doesn't get rechecked!
5454   }
5455
5456   // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
5457   if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
5458     SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
5459                                        N0.getOperand(1), false);
5460     if (BSwap.getNode() != 0)
5461       return DAG.getNode(ISD::SIGN_EXTEND_INREG, SDLoc(N), VT,
5462                          BSwap, N1);
5463   }
5464
5465   return SDValue();
5466 }
5467
5468 SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
5469   SDValue N0 = N->getOperand(0);
5470   EVT VT = N->getValueType(0);
5471   bool isLE = TLI.isLittleEndian();
5472
5473   // noop truncate
5474   if (N0.getValueType() == N->getValueType(0))
5475     return N0;
5476   // fold (truncate c1) -> c1
5477   if (isa<ConstantSDNode>(N0))
5478     return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0);
5479   // fold (truncate (truncate x)) -> (truncate x)
5480   if (N0.getOpcode() == ISD::TRUNCATE)
5481     return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0.getOperand(0));
5482   // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
5483   if (N0.getOpcode() == ISD::ZERO_EXTEND ||
5484       N0.getOpcode() == ISD::SIGN_EXTEND ||
5485       N0.getOpcode() == ISD::ANY_EXTEND) {
5486     if (N0.getOperand(0).getValueType().bitsLT(VT))
5487       // if the source is smaller than the dest, we still need an extend
5488       return DAG.getNode(N0.getOpcode(), SDLoc(N), VT,
5489                          N0.getOperand(0));
5490     if (N0.getOperand(0).getValueType().bitsGT(VT))
5491       // if the source is larger than the dest, than we just need the truncate
5492       return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, N0.getOperand(0));
5493     // if the source and dest are the same type, we can drop both the extend
5494     // and the truncate.
5495     return N0.getOperand(0);
5496   }
5497
5498   // Fold extract-and-trunc into a narrow extract. For example:
5499   //   i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5500   //   i32 y = TRUNCATE(i64 x)
5501   //        -- becomes --
5502   //   v16i8 b = BITCAST (v2i64 val)
5503   //   i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5504   //
5505   // Note: We only run this optimization after type legalization (which often
5506   // creates this pattern) and before operation legalization after which
5507   // we need to be more careful about the vector instructions that we generate.
5508   if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5509       LegalTypes && !LegalOperations && N0->hasOneUse()) {
5510
5511     EVT VecTy = N0.getOperand(0).getValueType();
5512     EVT ExTy = N0.getValueType();
5513     EVT TrTy = N->getValueType(0);
5514
5515     unsigned NumElem = VecTy.getVectorNumElements();
5516     unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5517
5518     EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5519     assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5520
5521     SDValue EltNo = N0->getOperand(1);
5522     if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5523       int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5524       EVT IndexTy = TLI.getVectorIdxTy();
5525       int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5526
5527       SDValue V = DAG.getNode(ISD::BITCAST, SDLoc(N),
5528                               NVT, N0.getOperand(0));
5529
5530       return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
5531                          SDLoc(N), TrTy, V,
5532                          DAG.getConstant(Index, IndexTy));
5533     }
5534   }
5535
5536   // Fold a series of buildvector, bitcast, and truncate if possible.
5537   // For example fold
5538   //   (2xi32 trunc (bitcast ((4xi32)buildvector x, x, y, y) 2xi64)) to
5539   //   (2xi32 (buildvector x, y)).
5540   if (Level == AfterLegalizeVectorOps && VT.isVector() &&
5541       N0.getOpcode() == ISD::BITCAST && N0.hasOneUse() &&
5542       N0.getOperand(0).getOpcode() == ISD::BUILD_VECTOR &&
5543       N0.getOperand(0).hasOneUse()) {
5544
5545     SDValue BuildVect = N0.getOperand(0);
5546     EVT BuildVectEltTy = BuildVect.getValueType().getVectorElementType();
5547     EVT TruncVecEltTy = VT.getVectorElementType();
5548
5549     // Check that the element types match.
5550     if (BuildVectEltTy == TruncVecEltTy) {
5551       // Now we only need to compute the offset of the truncated elements.
5552       unsigned BuildVecNumElts =  BuildVect.getNumOperands();
5553       unsigned TruncVecNumElts = VT.getVectorNumElements();
5554       unsigned TruncEltOffset = BuildVecNumElts / TruncVecNumElts;
5555
5556       assert((BuildVecNumElts % TruncVecNumElts) == 0 &&
5557              "Invalid number of elements");
5558
5559       SmallVector<SDValue, 8> Opnds;
5560       for (unsigned i = 0, e = BuildVecNumElts; i != e; i += TruncEltOffset)
5561         Opnds.push_back(BuildVect.getOperand(i));
5562
5563       return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N), VT, &Opnds[0],
5564                          Opnds.size());
5565     }
5566   }
5567
5568   // See if we can simplify the input to this truncate through knowledge that
5569   // only the low bits are being used.
5570   // For example "trunc (or (shl x, 8), y)" // -> trunc y
5571   // Currently we only perform this optimization on scalars because vectors
5572   // may have different active low bits.
5573   if (!VT.isVector()) {
5574     SDValue Shorter =
5575       GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5576                                                VT.getSizeInBits()));
5577     if (Shorter.getNode())
5578       return DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, Shorter);
5579   }
5580   // fold (truncate (load x)) -> (smaller load x)
5581   // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
5582   if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5583     SDValue Reduced = ReduceLoadWidth(N);
5584     if (Reduced.getNode())
5585       return Reduced;
5586   }
5587   // fold (trunc (concat ... x ...)) -> (concat ..., (trunc x), ...)),
5588   // where ... are all 'undef'.
5589   if (N0.getOpcode() == ISD::CONCAT_VECTORS && !LegalTypes) {
5590     SmallVector<EVT, 8> VTs;
5591     SDValue V;
5592     unsigned Idx = 0;
5593     unsigned NumDefs = 0;
5594
5595     for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
5596       SDValue X = N0.getOperand(i);
5597       if (X.getOpcode() != ISD::UNDEF) {
5598         V = X;
5599         Idx = i;
5600         NumDefs++;
5601       }
5602       // Stop if more than one members are non-undef.
5603       if (NumDefs > 1)
5604         break;
5605       VTs.push_back(EVT::getVectorVT(*DAG.getContext(),
5606                                      VT.getVectorElementType(),
5607                                      X.getValueType().getVectorNumElements()));
5608     }
5609
5610     if (NumDefs == 0)
5611       return DAG.getUNDEF(VT);
5612
5613     if (NumDefs == 1) {
5614       assert(V.getNode() && "The single defined operand is empty!");
5615       SmallVector<SDValue, 8> Opnds;
5616       for (unsigned i = 0, e = VTs.size(); i != e; ++i) {
5617         if (i != Idx) {
5618           Opnds.push_back(DAG.getUNDEF(VTs[i]));
5619           continue;
5620         }
5621         SDValue NV = DAG.getNode(ISD::TRUNCATE, SDLoc(V), VTs[i], V);
5622         AddToWorkList(NV.getNode());
5623         Opnds.push_back(NV);
5624       }
5625       return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT,
5626                          &Opnds[0], Opnds.size());
5627     }
5628   }
5629
5630   // Simplify the operands using demanded-bits information.
5631   if (!VT.isVector() &&
5632       SimplifyDemandedBits(SDValue(N, 0)))
5633     return SDValue(N, 0);
5634
5635   return SDValue();
5636 }
5637
5638 static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
5639   SDValue Elt = N->getOperand(i);
5640   if (Elt.getOpcode() != ISD::MERGE_VALUES)
5641     return Elt.getNode();
5642   return Elt.getOperand(Elt.getResNo()).getNode();
5643 }
5644
5645 /// CombineConsecutiveLoads - build_pair (load, load) -> load
5646 /// if load locations are consecutive.
5647 SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
5648   assert(N->getOpcode() == ISD::BUILD_PAIR);
5649
5650   LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5651   LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
5652   if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5653       LD1->getPointerInfo().getAddrSpace() !=
5654          LD2->getPointerInfo().getAddrSpace())
5655     return SDValue();
5656   EVT LD1VT = LD1->getValueType(0);
5657
5658   if (ISD::isNON_EXTLoad(LD2) &&
5659       LD2->hasOneUse() &&
5660       // If both are volatile this would reduce the number of volatile loads.
5661       // If one is volatile it might be ok, but play conservative and bail out.
5662       !LD1->isVolatile() &&
5663       !LD2->isVolatile() &&
5664       DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
5665     unsigned Align = LD1->getAlignment();
5666     unsigned NewAlign = TLI.getDataLayout()->
5667       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
5668
5669     if (NewAlign <= Align &&
5670         (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
5671       return DAG.getLoad(VT, SDLoc(N), LD1->getChain(),
5672                          LD1->getBasePtr(), LD1->getPointerInfo(),
5673                          false, false, false, Align);
5674   }
5675
5676   return SDValue();
5677 }
5678
5679 SDValue DAGCombiner::visitBITCAST(SDNode *N) {
5680   SDValue N0 = N->getOperand(0);
5681   EVT VT = N->getValueType(0);
5682
5683   // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5684   // Only do this before legalize, since afterward the target may be depending
5685   // on the bitconvert.
5686   // First check to see if this is all constant.
5687   if (!LegalTypes &&
5688       N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
5689       VT.isVector()) {
5690     bool isSimple = true;
5691     for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5692       if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5693           N0.getOperand(i).getOpcode() != ISD::Constant &&
5694           N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
5695         isSimple = false;
5696         break;
5697       }
5698
5699     EVT DestEltVT = N->getValueType(0).getVectorElementType();
5700     assert(!DestEltVT.isVector() &&
5701            "Element type of vector ValueType must not be vector!");
5702     if (isSimple)
5703       return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
5704   }
5705
5706   // If the input is a constant, let getNode fold it.
5707   if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
5708     SDValue Res = DAG.getNode(ISD::BITCAST, SDLoc(N), VT, N0);
5709     if (Res.getNode() != N) {
5710       if (!LegalOperations ||
5711           TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5712         return Res;
5713
5714       // Folding it resulted in an illegal node, and it's too late to
5715       // do that. Clean up the old node and forego the transformation.
5716       // Ideally this won't happen very often, because instcombine
5717       // and the earlier dagcombine runs (where illegal nodes are
5718       // permitted) should have folded most of them already.
5719       DAG.DeleteNode(Res.getNode());
5720     }
5721   }
5722
5723   // (conv (conv x, t1), t2) -> (conv x, t2)
5724   if (N0.getOpcode() == ISD::BITCAST)
5725     return DAG.getNode(ISD::BITCAST, SDLoc(N), VT,
5726                        N0.getOperand(0));
5727
5728   // fold (conv (load x)) -> (load (conv*)x)
5729   // If the resultant load doesn't need a higher alignment than the original!
5730   if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
5731       // Do not change the width of a volatile load.
5732       !cast<LoadSDNode>(N0)->isVolatile() &&
5733       (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
5734     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
5735     unsigned Align = TLI.getDataLayout()->
5736       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
5737     unsigned OrigAlign = LN0->getAlignment();
5738
5739     if (Align <= OrigAlign) {
5740       SDValue Load = DAG.getLoad(VT, SDLoc(N), LN0->getChain(),
5741                                  LN0->getBasePtr(), LN0->getPointerInfo(),
5742                                  LN0->isVolatile(), LN0->isNonTemporal(),
5743                                  LN0->isInvariant(), OrigAlign);
5744       AddToWorkList(N);
5745       CombineTo(N0.getNode(),
5746                 DAG.getNode(ISD::BITCAST, SDLoc(N0),
5747                             N0.getValueType(), Load),
5748                 Load.getValue(1));
5749       return Load;
5750     }
5751   }
5752
5753   // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5754   // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
5755   // This often reduces constant pool loads.
5756   if (((N0.getOpcode() == ISD::FNEG && !TLI.isFNegFree(N0.getValueType())) ||
5757        (N0.getOpcode() == ISD::FABS && !TLI.isFAbsFree(N0.getValueType()))) &&
5758       N0.getNode()->hasOneUse() && VT.isInteger() &&
5759       !VT.isVector() && !N0.getValueType().isVector()) {
5760     SDValue NewConv = DAG.getNode(ISD::BITCAST, SDLoc(N0), VT,
5761                                   N0.getOperand(0));
5762     AddToWorkList(NewConv.getNode());
5763
5764     APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
5765     if (N0.getOpcode() == ISD::FNEG)
5766       return DAG.getNode(ISD::XOR, SDLoc(N), VT,
5767                          NewConv, DAG.getConstant(SignBit, VT));
5768     assert(N0.getOpcode() == ISD::FABS);
5769     return DAG.getNode(ISD::AND, SDLoc(N), VT,
5770                        NewConv, DAG.getConstant(~SignBit, VT));
5771   }
5772
5773   // fold (bitconvert (fcopysign cst, x)) ->
5774   //         (or (and (bitconvert x), sign), (and cst, (not sign)))
5775   // Note that we don't handle (copysign x, cst) because this can always be
5776   // folded to an fneg or fabs.
5777   if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
5778       isa<ConstantFPSDNode>(N0.getOperand(0)) &&
5779       VT.isInteger() && !VT.isVector()) {
5780     unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
5781     EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
5782     if (isTypeLegal(IntXVT)) {
5783       SDValue X = DAG.getNode(ISD::BITCAST, SDLoc(N0),
5784                               IntXVT, N0.getOperand(1));
5785       AddToWorkList(X.getNode());
5786
5787       // If X has a different width than the result/lhs, sext it or truncate it.
5788       unsigned VTWidth = VT.getSizeInBits();
5789       if (OrigXWidth < VTWidth) {
5790         X = DAG.getNode(ISD::SIGN_EXTEND, SDLoc(N), VT, X);
5791         AddToWorkList(X.getNode());
5792       } else if (OrigXWidth > VTWidth) {
5793         // To get the sign bit in the right place, we have to shift it right
5794         // before truncating.
5795         X = DAG.getNode(ISD::SRL, SDLoc(X),
5796                         X.getValueType(), X,
5797                         DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5798         AddToWorkList(X.getNode());
5799         X = DAG.getNode(ISD::TRUNCATE, SDLoc(X), VT, X);
5800         AddToWorkList(X.getNode());
5801       }
5802
5803       APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
5804       X = DAG.getNode(ISD::AND, SDLoc(X), VT,
5805                       X, DAG.getConstant(SignBit, VT));
5806       AddToWorkList(X.getNode());
5807
5808       SDValue Cst = DAG.getNode(ISD::BITCAST, SDLoc(N0),
5809                                 VT, N0.getOperand(0));
5810       Cst = DAG.getNode(ISD::AND, SDLoc(Cst), VT,
5811                         Cst, DAG.getConstant(~SignBit, VT));
5812       AddToWorkList(Cst.getNode());
5813
5814       return DAG.getNode(ISD::OR, SDLoc(N), VT, X, Cst);
5815     }
5816   }
5817
5818   // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
5819   if (N0.getOpcode() == ISD::BUILD_PAIR) {
5820     SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5821     if (CombineLD.getNode())
5822       return CombineLD;
5823   }
5824
5825   return SDValue();
5826 }
5827
5828 SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
5829   EVT VT = N->getValueType(0);
5830   return CombineConsecutiveLoads(N, VT);
5831 }
5832
5833 /// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
5834 /// node with Constant, ConstantFP or Undef operands.  DstEltVT indicates the
5835 /// destination element value type.
5836 SDValue DAGCombiner::
5837 ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
5838   EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
5839
5840   // If this is already the right type, we're done.
5841   if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
5842
5843   unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5844   unsigned DstBitSize = DstEltVT.getSizeInBits();
5845
5846   // If this is a conversion of N elements of one type to N elements of another
5847   // type, convert each element.  This handles FP<->INT cases.
5848   if (SrcBitSize == DstBitSize) {
5849     EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5850                               BV->getValueType(0).getVectorNumElements());
5851
5852     // Due to the FP element handling below calling this routine recursively,
5853     // we can end up with a scalar-to-vector node here.
5854     if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
5855       return DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(BV), VT,
5856                          DAG.getNode(ISD::BITCAST, SDLoc(BV),
5857                                      DstEltVT, BV->getOperand(0)));
5858
5859     SmallVector<SDValue, 8> Ops;
5860     for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
5861       SDValue Op = BV->getOperand(i);
5862       // If the vector element type is not legal, the BUILD_VECTOR operands
5863       // are promoted and implicitly truncated.  Make that explicit here.
5864       if (Op.getValueType() != SrcEltVT)
5865         Op = DAG.getNode(ISD::TRUNCATE, SDLoc(BV), SrcEltVT, Op);
5866       Ops.push_back(DAG.getNode(ISD::BITCAST, SDLoc(BV),
5867                                 DstEltVT, Op));
5868       AddToWorkList(Ops.back().getNode());
5869     }
5870     return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(BV), VT,
5871                        &Ops[0], Ops.size());
5872   }
5873
5874   // Otherwise, we're growing or shrinking the elements.  To avoid having to
5875   // handle annoying details of growing/shrinking FP values, we convert them to
5876   // int first.
5877   if (SrcEltVT.isFloatingPoint()) {
5878     // Convert the input float vector to a int vector where the elements are the
5879     // same sizes.
5880     assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
5881     EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
5882     BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
5883     SrcEltVT = IntVT;
5884   }
5885
5886   // Now we know the input is an integer vector.  If the output is a FP type,
5887   // convert to integer first, then to FP of the right size.
5888   if (DstEltVT.isFloatingPoint()) {
5889     assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
5890     EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
5891     SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
5892
5893     // Next, convert to FP elements of the same size.
5894     return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
5895   }
5896
5897   // Okay, we know the src/dst types are both integers of differing types.
5898   // Handling growing first.
5899   assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
5900   if (SrcBitSize < DstBitSize) {
5901     unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
5902
5903     SmallVector<SDValue, 8> Ops;
5904     for (unsigned i = 0, e = BV->getNumOperands(); i != e;
5905          i += NumInputsPerOutput) {
5906       bool isLE = TLI.isLittleEndian();
5907       APInt NewBits = APInt(DstBitSize, 0);
5908       bool EltIsUndef = true;
5909       for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5910         // Shift the previously computed bits over.
5911         NewBits <<= SrcBitSize;
5912         SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
5913         if (Op.getOpcode() == ISD::UNDEF) continue;
5914         EltIsUndef = false;
5915
5916         NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
5917                    zextOrTrunc(SrcBitSize).zext(DstBitSize);
5918       }
5919
5920       if (EltIsUndef)
5921         Ops.push_back(DAG.getUNDEF(DstEltVT));
5922       else
5923         Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5924     }
5925
5926     EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
5927     return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(BV), VT,
5928                        &Ops[0], Ops.size());
5929   }
5930
5931   // Finally, this must be the case where we are shrinking elements: each input
5932   // turns into multiple outputs.
5933   bool isS2V = ISD::isScalarToVector(BV);
5934   unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
5935   EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5936                             NumOutputsPerInput*BV->getNumOperands());
5937   SmallVector<SDValue, 8> Ops;
5938
5939   for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
5940     if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5941       for (unsigned j = 0; j != NumOutputsPerInput; ++j)
5942         Ops.push_back(DAG.getUNDEF(DstEltVT));
5943       continue;
5944     }
5945
5946     APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5947                   getAPIntValue().zextOrTrunc(SrcBitSize);
5948
5949     for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
5950       APInt ThisVal = OpVal.trunc(DstBitSize);
5951       Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
5952       if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
5953         // Simply turn this into a SCALAR_TO_VECTOR of the new type.
5954         return DAG.getNode(ISD::SCALAR_TO_VECTOR, SDLoc(BV), VT,
5955                            Ops[0]);
5956       OpVal = OpVal.lshr(DstBitSize);
5957     }
5958
5959     // For big endian targets, swap the order of the pieces of each element.
5960     if (TLI.isBigEndian())
5961       std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5962   }
5963
5964   return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(BV), VT,
5965                      &Ops[0], Ops.size());
5966 }
5967
5968 SDValue DAGCombiner::visitFADD(SDNode *N) {
5969   SDValue N0 = N->getOperand(0);
5970   SDValue N1 = N->getOperand(1);
5971   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5972   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
5973   EVT VT = N->getValueType(0);
5974
5975   // fold vector ops
5976   if (VT.isVector()) {
5977     SDValue FoldedVOp = SimplifyVBinOp(N);
5978     if (FoldedVOp.getNode()) return FoldedVOp;
5979   }
5980
5981   // fold (fadd c1, c2) -> c1 + c2
5982   if (N0CFP && N1CFP)
5983     return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0, N1);
5984   // canonicalize constant to RHS
5985   if (N0CFP && !N1CFP)
5986     return DAG.getNode(ISD::FADD, SDLoc(N), VT, N1, N0);
5987   // fold (fadd A, 0) -> A
5988   if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5989       N1CFP->getValueAPF().isZero())
5990     return N0;
5991   // fold (fadd A, (fneg B)) -> (fsub A, B)
5992   if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
5993     isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
5994     return DAG.getNode(ISD::FSUB, SDLoc(N), VT, N0,
5995                        GetNegatedExpression(N1, DAG, LegalOperations));
5996   // fold (fadd (fneg A), B) -> (fsub B, A)
5997   if ((!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FSUB, VT)) &&
5998     isNegatibleForFree(N0, LegalOperations, TLI, &DAG.getTarget().Options) == 2)
5999     return DAG.getNode(ISD::FSUB, SDLoc(N), VT, N1,
6000                        GetNegatedExpression(N0, DAG, LegalOperations));
6001
6002   // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
6003   if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6004       N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
6005       isa<ConstantFPSDNode>(N0.getOperand(1)))
6006     return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0.getOperand(0),
6007                        DAG.getNode(ISD::FADD, SDLoc(N), VT,
6008                                    N0.getOperand(1), N1));
6009
6010   // No FP constant should be created after legalization as Instruction
6011   // Selection pass has hard time in dealing with FP constant.
6012   //
6013   // We don't need test this condition for transformation like following, as
6014   // the DAG being transformed implies it is legal to take FP constant as
6015   // operand.
6016   //
6017   //  (fadd (fmul c, x), x) -> (fmul c+1, x)
6018   //
6019   bool AllowNewFpConst = (Level < AfterLegalizeDAG);
6020
6021   // If allow, fold (fadd (fneg x), x) -> 0.0
6022   if (AllowNewFpConst && DAG.getTarget().Options.UnsafeFPMath &&
6023       N0.getOpcode() == ISD::FNEG && N0.getOperand(0) == N1)
6024     return DAG.getConstantFP(0.0, VT);
6025
6026     // If allow, fold (fadd x, (fneg x)) -> 0.0
6027   if (AllowNewFpConst && DAG.getTarget().Options.UnsafeFPMath &&
6028       N1.getOpcode() == ISD::FNEG && N1.getOperand(0) == N0)
6029     return DAG.getConstantFP(0.0, VT);
6030
6031   // In unsafe math mode, we can fold chains of FADD's of the same value
6032   // into multiplications.  This transform is not safe in general because
6033   // we are reducing the number of rounding steps.
6034   if (DAG.getTarget().Options.UnsafeFPMath &&
6035       TLI.isOperationLegalOrCustom(ISD::FMUL, VT) &&
6036       !N0CFP && !N1CFP) {
6037     if (N0.getOpcode() == ISD::FMUL) {
6038       ConstantFPSDNode *CFP00 = dyn_cast<ConstantFPSDNode>(N0.getOperand(0));
6039       ConstantFPSDNode *CFP01 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
6040
6041       // (fadd (fmul c, x), x) -> (fmul x, c+1)
6042       if (CFP00 && !CFP01 && N0.getOperand(1) == N1) {
6043         SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
6044                                      SDValue(CFP00, 0),
6045                                      DAG.getConstantFP(1.0, VT));
6046         return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
6047                            N1, NewCFP);
6048       }
6049
6050       // (fadd (fmul x, c), x) -> (fmul x, c+1)
6051       if (CFP01 && !CFP00 && N0.getOperand(0) == N1) {
6052         SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
6053                                      SDValue(CFP01, 0),
6054                                      DAG.getConstantFP(1.0, VT));
6055         return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
6056                            N1, NewCFP);
6057       }
6058
6059       // (fadd (fmul c, x), (fadd x, x)) -> (fmul x, c+2)
6060       if (CFP00 && !CFP01 && N1.getOpcode() == ISD::FADD &&
6061           N1.getOperand(0) == N1.getOperand(1) &&
6062           N0.getOperand(1) == N1.getOperand(0)) {
6063         SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
6064                                      SDValue(CFP00, 0),
6065                                      DAG.getConstantFP(2.0, VT));
6066         return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
6067                            N0.getOperand(1), NewCFP);
6068       }
6069
6070       // (fadd (fmul x, c), (fadd x, x)) -> (fmul x, c+2)
6071       if (CFP01 && !CFP00 && N1.getOpcode() == ISD::FADD &&
6072           N1.getOperand(0) == N1.getOperand(1) &&
6073           N0.getOperand(0) == N1.getOperand(0)) {
6074         SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
6075                                      SDValue(CFP01, 0),
6076                                      DAG.getConstantFP(2.0, VT));
6077         return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
6078                            N0.getOperand(0), NewCFP);
6079       }
6080     }
6081
6082     if (N1.getOpcode() == ISD::FMUL) {
6083       ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0));
6084       ConstantFPSDNode *CFP11 = dyn_cast<ConstantFPSDNode>(N1.getOperand(1));
6085
6086       // (fadd x, (fmul c, x)) -> (fmul x, c+1)
6087       if (CFP10 && !CFP11 && N1.getOperand(1) == N0) {
6088         SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
6089                                      SDValue(CFP10, 0),
6090                                      DAG.getConstantFP(1.0, VT));
6091         return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
6092                            N0, NewCFP);
6093       }
6094
6095       // (fadd x, (fmul x, c)) -> (fmul x, c+1)
6096       if (CFP11 && !CFP10 && N1.getOperand(0) == N0) {
6097         SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
6098                                      SDValue(CFP11, 0),
6099                                      DAG.getConstantFP(1.0, VT));
6100         return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
6101                            N0, NewCFP);
6102       }
6103
6104
6105       // (fadd (fadd x, x), (fmul c, x)) -> (fmul x, c+2)
6106       if (CFP10 && !CFP11 && N0.getOpcode() == ISD::FADD &&
6107           N0.getOperand(0) == N0.getOperand(1) &&
6108           N1.getOperand(1) == N0.getOperand(0)) {
6109         SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
6110                                      SDValue(CFP10, 0),
6111                                      DAG.getConstantFP(2.0, VT));
6112         return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
6113                            N1.getOperand(1), NewCFP);
6114       }
6115
6116       // (fadd (fadd x, x), (fmul x, c)) -> (fmul x, c+2)
6117       if (CFP11 && !CFP10 && N0.getOpcode() == ISD::FADD &&
6118           N0.getOperand(0) == N0.getOperand(1) &&
6119           N1.getOperand(0) == N0.getOperand(0)) {
6120         SDValue NewCFP = DAG.getNode(ISD::FADD, SDLoc(N), VT,
6121                                      SDValue(CFP11, 0),
6122                                      DAG.getConstantFP(2.0, VT));
6123         return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
6124                            N1.getOperand(0), NewCFP);
6125       }
6126     }
6127
6128     if (N0.getOpcode() == ISD::FADD && AllowNewFpConst) {
6129       ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N0.getOperand(0));
6130       // (fadd (fadd x, x), x) -> (fmul x, 3.0)
6131       if (!CFP && N0.getOperand(0) == N0.getOperand(1) &&
6132           (N0.getOperand(0) == N1))
6133         return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
6134                            N1, DAG.getConstantFP(3.0, VT));
6135     }
6136
6137     if (N1.getOpcode() == ISD::FADD && AllowNewFpConst) {
6138       ConstantFPSDNode *CFP10 = dyn_cast<ConstantFPSDNode>(N1.getOperand(0));
6139       // (fadd x, (fadd x, x)) -> (fmul x, 3.0)
6140       if (!CFP10 && N1.getOperand(0) == N1.getOperand(1) &&
6141           N1.getOperand(0) == N0)
6142         return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
6143                            N0, DAG.getConstantFP(3.0, VT));
6144     }
6145
6146     // (fadd (fadd x, x), (fadd x, x)) -> (fmul x, 4.0)
6147     if (AllowNewFpConst &&
6148         N0.getOpcode() == ISD::FADD && N1.getOpcode() == ISD::FADD &&
6149         N0.getOperand(0) == N0.getOperand(1) &&
6150         N1.getOperand(0) == N1.getOperand(1) &&
6151         N0.getOperand(0) == N1.getOperand(0))
6152       return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
6153                          N0.getOperand(0),
6154                          DAG.getConstantFP(4.0, VT));
6155   }
6156
6157   // FADD -> FMA combines:
6158   if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
6159        DAG.getTarget().Options.UnsafeFPMath) &&
6160       DAG.getTarget().getTargetLowering()->isFMAFasterThanFMulAndFAdd(VT) &&
6161       (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FMA, VT))) {
6162
6163     // fold (fadd (fmul x, y), z) -> (fma x, y, z)
6164     if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse())
6165       return DAG.getNode(ISD::FMA, SDLoc(N), VT,
6166                          N0.getOperand(0), N0.getOperand(1), N1);
6167
6168     // fold (fadd x, (fmul y, z)) -> (fma y, z, x)
6169     // Note: Commutes FADD operands.
6170     if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse())
6171       return DAG.getNode(ISD::FMA, SDLoc(N), VT,
6172                          N1.getOperand(0), N1.getOperand(1), N0);
6173   }
6174
6175   return SDValue();
6176 }
6177
6178 SDValue DAGCombiner::visitFSUB(SDNode *N) {
6179   SDValue N0 = N->getOperand(0);
6180   SDValue N1 = N->getOperand(1);
6181   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6182   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
6183   EVT VT = N->getValueType(0);
6184   SDLoc dl(N);
6185
6186   // fold vector ops
6187   if (VT.isVector()) {
6188     SDValue FoldedVOp = SimplifyVBinOp(N);
6189     if (FoldedVOp.getNode()) return FoldedVOp;
6190   }
6191
6192   // fold (fsub c1, c2) -> c1-c2
6193   if (N0CFP && N1CFP)
6194     return DAG.getNode(ISD::FSUB, SDLoc(N), VT, N0, N1);
6195   // fold (fsub A, 0) -> A
6196   if (DAG.getTarget().Options.UnsafeFPMath &&
6197       N1CFP && N1CFP->getValueAPF().isZero())
6198     return N0;
6199   // fold (fsub 0, B) -> -B
6200   if (DAG.getTarget().Options.UnsafeFPMath &&
6201       N0CFP && N0CFP->getValueAPF().isZero()) {
6202     if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
6203       return GetNegatedExpression(N1, DAG, LegalOperations);
6204     if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
6205       return DAG.getNode(ISD::FNEG, dl, VT, N1);
6206   }
6207   // fold (fsub A, (fneg B)) -> (fadd A, B)
6208   if (isNegatibleForFree(N1, LegalOperations, TLI, &DAG.getTarget().Options))
6209     return DAG.getNode(ISD::FADD, dl, VT, N0,
6210                        GetNegatedExpression(N1, DAG, LegalOperations));
6211
6212   // If 'unsafe math' is enabled, fold
6213   //    (fsub x, x) -> 0.0 &
6214   //    (fsub x, (fadd x, y)) -> (fneg y) &
6215   //    (fsub x, (fadd y, x)) -> (fneg y)
6216   if (DAG.getTarget().Options.UnsafeFPMath) {
6217     if (N0 == N1)
6218       return DAG.getConstantFP(0.0f, VT);
6219
6220     if (N1.getOpcode() == ISD::FADD) {
6221       SDValue N10 = N1->getOperand(0);
6222       SDValue N11 = N1->getOperand(1);
6223
6224       if (N10 == N0 && isNegatibleForFree(N11, LegalOperations, TLI,
6225                                           &DAG.getTarget().Options))
6226         return GetNegatedExpression(N11, DAG, LegalOperations);
6227
6228       if (N11 == N0 && isNegatibleForFree(N10, LegalOperations, TLI,
6229                                           &DAG.getTarget().Options))
6230         return GetNegatedExpression(N10, DAG, LegalOperations);
6231     }
6232   }
6233
6234   // FSUB -> FMA combines:
6235   if ((DAG.getTarget().Options.AllowFPOpFusion == FPOpFusion::Fast ||
6236        DAG.getTarget().Options.UnsafeFPMath) &&
6237       DAG.getTarget().getTargetLowering()->isFMAFasterThanFMulAndFAdd(VT) &&
6238       (!LegalOperations || TLI.isOperationLegalOrCustom(ISD::FMA, VT))) {
6239
6240     // fold (fsub (fmul x, y), z) -> (fma x, y, (fneg z))
6241     if (N0.getOpcode() == ISD::FMUL && N0->hasOneUse())
6242       return DAG.getNode(ISD::FMA, dl, VT,
6243                          N0.getOperand(0), N0.getOperand(1),
6244                          DAG.getNode(ISD::FNEG, dl, VT, N1));
6245
6246     // fold (fsub x, (fmul y, z)) -> (fma (fneg y), z, x)
6247     // Note: Commutes FSUB operands.
6248     if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse())
6249       return DAG.getNode(ISD::FMA, dl, VT,
6250                          DAG.getNode(ISD::FNEG, dl, VT,
6251                          N1.getOperand(0)),
6252                          N1.getOperand(1), N0);
6253
6254     // fold (fsub (fneg (fmul, x, y)), z) -> (fma (fneg x), y, (fneg z))
6255     if (N0.getOpcode() == ISD::FNEG &&
6256         N0.getOperand(0).getOpcode() == ISD::FMUL &&
6257         N0->hasOneUse() && N0.getOperand(0).hasOneUse()) {
6258       SDValue N00 = N0.getOperand(0).getOperand(0);
6259       SDValue N01 = N0.getOperand(0).getOperand(1);
6260       return DAG.getNode(ISD::FMA, dl, VT,
6261                          DAG.getNode(ISD::FNEG, dl, VT, N00), N01,
6262                          DAG.getNode(ISD::FNEG, dl, VT, N1));
6263     }
6264   }
6265
6266   return SDValue();
6267 }
6268
6269 SDValue DAGCombiner::visitFMUL(SDNode *N) {
6270   SDValue N0 = N->getOperand(0);
6271   SDValue N1 = N->getOperand(1);
6272   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6273   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
6274   EVT VT = N->getValueType(0);
6275   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6276
6277   // fold vector ops
6278   if (VT.isVector()) {
6279     SDValue FoldedVOp = SimplifyVBinOp(N);
6280     if (FoldedVOp.getNode()) return FoldedVOp;
6281   }
6282
6283   // fold (fmul c1, c2) -> c1*c2
6284   if (N0CFP && N1CFP)
6285     return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N0, N1);
6286   // canonicalize constant to RHS
6287   if (N0CFP && !N1CFP)
6288     return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N1, N0);
6289   // fold (fmul A, 0) -> 0
6290   if (DAG.getTarget().Options.UnsafeFPMath &&
6291       N1CFP && N1CFP->getValueAPF().isZero())
6292     return N1;
6293   // fold (fmul A, 0) -> 0, vector edition.
6294   if (DAG.getTarget().Options.UnsafeFPMath &&
6295       ISD::isBuildVectorAllZeros(N1.getNode()))
6296     return N1;
6297   // fold (fmul A, 1.0) -> A
6298   if (N1CFP && N1CFP->isExactlyValue(1.0))
6299     return N0;
6300   // fold (fmul X, 2.0) -> (fadd X, X)
6301   if (N1CFP && N1CFP->isExactlyValue(+2.0))
6302     return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0, N0);
6303   // fold (fmul X, -1.0) -> (fneg X)
6304   if (N1CFP && N1CFP->isExactlyValue(-1.0))
6305     if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
6306       return DAG.getNode(ISD::FNEG, SDLoc(N), VT, N0);
6307
6308   // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
6309   if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
6310                                        &DAG.getTarget().Options)) {
6311     if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
6312                                          &DAG.getTarget().Options)) {
6313       // Both can be negated for free, check to see if at least one is cheaper
6314       // negated.
6315       if (LHSNeg == 2 || RHSNeg == 2)
6316         return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
6317                            GetNegatedExpression(N0, DAG, LegalOperations),
6318                            GetNegatedExpression(N1, DAG, LegalOperations));
6319     }
6320   }
6321
6322   // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
6323   if (DAG.getTarget().Options.UnsafeFPMath &&
6324       N1CFP && N0.getOpcode() == ISD::FMUL &&
6325       N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
6326     return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N0.getOperand(0),
6327                        DAG.getNode(ISD::FMUL, SDLoc(N), VT,
6328                                    N0.getOperand(1), N1));
6329
6330   return SDValue();
6331 }
6332
6333 SDValue DAGCombiner::visitFMA(SDNode *N) {
6334   SDValue N0 = N->getOperand(0);
6335   SDValue N1 = N->getOperand(1);
6336   SDValue N2 = N->getOperand(2);
6337   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6338   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
6339   EVT VT = N->getValueType(0);
6340   SDLoc dl(N);
6341
6342   if (DAG.getTarget().Options.UnsafeFPMath) {
6343     if (N0CFP && N0CFP->isZero())
6344       return N2;
6345     if (N1CFP && N1CFP->isZero())
6346       return N2;
6347   }
6348   if (N0CFP && N0CFP->isExactlyValue(1.0))
6349     return DAG.getNode(ISD::FADD, SDLoc(N), VT, N1, N2);
6350   if (N1CFP && N1CFP->isExactlyValue(1.0))
6351     return DAG.getNode(ISD::FADD, SDLoc(N), VT, N0, N2);
6352
6353   // Canonicalize (fma c, x, y) -> (fma x, c, y)
6354   if (N0CFP && !N1CFP)
6355     return DAG.getNode(ISD::FMA, SDLoc(N), VT, N1, N0, N2);
6356
6357   // (fma x, c1, (fmul x, c2)) -> (fmul x, c1+c2)
6358   if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6359       N2.getOpcode() == ISD::FMUL &&
6360       N0 == N2.getOperand(0) &&
6361       N2.getOperand(1).getOpcode() == ISD::ConstantFP) {
6362     return DAG.getNode(ISD::FMUL, dl, VT, N0,
6363                        DAG.getNode(ISD::FADD, dl, VT, N1, N2.getOperand(1)));
6364   }
6365
6366
6367   // (fma (fmul x, c1), c2, y) -> (fma x, c1*c2, y)
6368   if (DAG.getTarget().Options.UnsafeFPMath &&
6369       N0.getOpcode() == ISD::FMUL && N1CFP &&
6370       N0.getOperand(1).getOpcode() == ISD::ConstantFP) {
6371     return DAG.getNode(ISD::FMA, dl, VT,
6372                        N0.getOperand(0),
6373                        DAG.getNode(ISD::FMUL, dl, VT, N1, N0.getOperand(1)),
6374                        N2);
6375   }
6376
6377   // (fma x, 1, y) -> (fadd x, y)
6378   // (fma x, -1, y) -> (fadd (fneg x), y)
6379   if (N1CFP) {
6380     if (N1CFP->isExactlyValue(1.0))
6381       return DAG.getNode(ISD::FADD, dl, VT, N0, N2);
6382
6383     if (N1CFP->isExactlyValue(-1.0) &&
6384         (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))) {
6385       SDValue RHSNeg = DAG.getNode(ISD::FNEG, dl, VT, N0);
6386       AddToWorkList(RHSNeg.getNode());
6387       return DAG.getNode(ISD::FADD, dl, VT, N2, RHSNeg);
6388     }
6389   }
6390
6391   // (fma x, c, x) -> (fmul x, (c+1))
6392   if (DAG.getTarget().Options.UnsafeFPMath && N1CFP && N0 == N2)
6393     return DAG.getNode(ISD::FMUL, dl, VT, N0,
6394                        DAG.getNode(ISD::FADD, dl, VT,
6395                                    N1, DAG.getConstantFP(1.0, VT)));
6396
6397   // (fma x, c, (fneg x)) -> (fmul x, (c-1))
6398   if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
6399       N2.getOpcode() == ISD::FNEG && N2.getOperand(0) == N0)
6400     return DAG.getNode(ISD::FMUL, dl, VT, N0,
6401                        DAG.getNode(ISD::FADD, dl, VT,
6402                                    N1, DAG.getConstantFP(-1.0, VT)));
6403
6404
6405   return SDValue();
6406 }
6407
6408 SDValue DAGCombiner::visitFDIV(SDNode *N) {
6409   SDValue N0 = N->getOperand(0);
6410   SDValue N1 = N->getOperand(1);
6411   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6412   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
6413   EVT VT = N->getValueType(0);
6414   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
6415
6416   // fold vector ops
6417   if (VT.isVector()) {
6418     SDValue FoldedVOp = SimplifyVBinOp(N);
6419     if (FoldedVOp.getNode()) return FoldedVOp;
6420   }
6421
6422   // fold (fdiv c1, c2) -> c1/c2
6423   if (N0CFP && N1CFP)
6424     return DAG.getNode(ISD::FDIV, SDLoc(N), VT, N0, N1);
6425
6426   // fold (fdiv X, c2) -> fmul X, 1/c2 if losing precision is acceptable.
6427   if (N1CFP && DAG.getTarget().Options.UnsafeFPMath) {
6428     // Compute the reciprocal 1.0 / c2.
6429     APFloat N1APF = N1CFP->getValueAPF();
6430     APFloat Recip(N1APF.getSemantics(), 1); // 1.0
6431     APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven);
6432     // Only do the transform if the reciprocal is a legal fp immediate that
6433     // isn't too nasty (eg NaN, denormal, ...).
6434     if ((st == APFloat::opOK || st == APFloat::opInexact) && // Not too nasty
6435         (!LegalOperations ||
6436          // FIXME: custom lowering of ConstantFP might fail (see e.g. ARM
6437          // backend)... we should handle this gracefully after Legalize.
6438          // TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT) ||
6439          TLI.isOperationLegal(llvm::ISD::ConstantFP, VT) ||
6440          TLI.isFPImmLegal(Recip, VT)))
6441       return DAG.getNode(ISD::FMUL, SDLoc(N), VT, N0,
6442                          DAG.getConstantFP(Recip, VT));
6443   }
6444
6445   // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
6446   if (char LHSNeg = isNegatibleForFree(N0, LegalOperations, TLI,
6447                                        &DAG.getTarget().Options)) {
6448     if (char RHSNeg = isNegatibleForFree(N1, LegalOperations, TLI,
6449                                          &DAG.getTarget().Options)) {
6450       // Both can be negated for free, check to see if at least one is cheaper
6451       // negated.
6452       if (LHSNeg == 2 || RHSNeg == 2)
6453         return DAG.getNode(ISD::FDIV, SDLoc(N), VT,
6454                            GetNegatedExpression(N0, DAG, LegalOperations),
6455                            GetNegatedExpression(N1, DAG, LegalOperations));
6456     }
6457   }
6458
6459   return SDValue();
6460 }
6461
6462 SDValue DAGCombiner::visitFREM(SDNode *N) {
6463   SDValue N0 = N->getOperand(0);
6464   SDValue N1 = N->getOperand(1);
6465   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6466   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
6467   EVT VT = N->getValueType(0);
6468
6469   // fold (frem c1, c2) -> fmod(c1,c2)
6470   if (N0CFP && N1CFP)
6471     return DAG.getNode(ISD::FREM, SDLoc(N), VT, N0, N1);
6472
6473   return SDValue();
6474 }
6475
6476 SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
6477   SDValue N0 = N->getOperand(0);
6478   SDValue N1 = N->getOperand(1);
6479   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6480   ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
6481   EVT VT = N->getValueType(0);
6482
6483   if (N0CFP && N1CFP)  // Constant fold
6484     return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT, N0, N1);
6485
6486   if (N1CFP) {
6487     const APFloat& V = N1CFP->getValueAPF();
6488     // copysign(x, c1) -> fabs(x)       iff ispos(c1)
6489     // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
6490     if (!V.isNegative()) {
6491       if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
6492         return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0);
6493     } else {
6494       if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
6495         return DAG.getNode(ISD::FNEG, SDLoc(N), VT,
6496                            DAG.getNode(ISD::FABS, SDLoc(N0), VT, N0));
6497     }
6498   }
6499
6500   // copysign(fabs(x), y) -> copysign(x, y)
6501   // copysign(fneg(x), y) -> copysign(x, y)
6502   // copysign(copysign(x,z), y) -> copysign(x, y)
6503   if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
6504       N0.getOpcode() == ISD::FCOPYSIGN)
6505     return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
6506                        N0.getOperand(0), N1);
6507
6508   // copysign(x, abs(y)) -> abs(x)
6509   if (N1.getOpcode() == ISD::FABS)
6510     return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0);
6511
6512   // copysign(x, copysign(y,z)) -> copysign(x, z)
6513   if (N1.getOpcode() == ISD::FCOPYSIGN)
6514     return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
6515                        N0, N1.getOperand(1));
6516
6517   // copysign(x, fp_extend(y)) -> copysign(x, y)
6518   // copysign(x, fp_round(y)) -> copysign(x, y)
6519   if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
6520     return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
6521                        N0, N1.getOperand(0));
6522
6523   return SDValue();
6524 }
6525
6526 SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
6527   SDValue N0 = N->getOperand(0);
6528   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
6529   EVT VT = N->getValueType(0);
6530   EVT OpVT = N0.getValueType();
6531
6532   // fold (sint_to_fp c1) -> c1fp
6533   if (N0C &&
6534       // ...but only if the target supports immediate floating-point values
6535       (!LegalOperations ||
6536        TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
6537     return DAG.getNode(ISD::SINT_TO_FP, SDLoc(N), VT, N0);
6538
6539   // If the input is a legal type, and SINT_TO_FP is not legal on this target,
6540   // but UINT_TO_FP is legal on this target, try to convert.
6541   if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
6542       TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
6543     // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
6544     if (DAG.SignBitIsZero(N0))
6545       return DAG.getNode(ISD::UINT_TO_FP, SDLoc(N), VT, N0);
6546   }
6547
6548   // The next optimizations are desireable only if SELECT_CC can be lowered.
6549   // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6550   // having to say they don't support SELECT_CC on every type the DAG knows
6551   // about, since there is no way to mark an opcode illegal at all value types
6552   // (See also visitSELECT)
6553   if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6554     // fold (sint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
6555     if (N0.getOpcode() == ISD::SETCC && N0.getValueType() == MVT::i1 &&
6556         !VT.isVector() &&
6557         (!LegalOperations ||
6558          TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6559       SDValue Ops[] =
6560         { N0.getOperand(0), N0.getOperand(1),
6561           DAG.getConstantFP(-1.0, VT) , DAG.getConstantFP(0.0, VT),
6562           N0.getOperand(2) };
6563       return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT, Ops, 5);
6564     }
6565
6566     // fold (sint_to_fp (zext (setcc x, y, cc))) ->
6567     //      (select_cc x, y, 1.0, 0.0,, cc)
6568     if (N0.getOpcode() == ISD::ZERO_EXTEND &&
6569         N0.getOperand(0).getOpcode() == ISD::SETCC &&!VT.isVector() &&
6570         (!LegalOperations ||
6571          TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6572       SDValue Ops[] =
6573         { N0.getOperand(0).getOperand(0), N0.getOperand(0).getOperand(1),
6574           DAG.getConstantFP(1.0, VT) , DAG.getConstantFP(0.0, VT),
6575           N0.getOperand(0).getOperand(2) };
6576       return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT, Ops, 5);
6577     }
6578   }
6579
6580   return SDValue();
6581 }
6582
6583 SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
6584   SDValue N0 = N->getOperand(0);
6585   ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
6586   EVT VT = N->getValueType(0);
6587   EVT OpVT = N0.getValueType();
6588
6589   // fold (uint_to_fp c1) -> c1fp
6590   if (N0C &&
6591       // ...but only if the target supports immediate floating-point values
6592       (!LegalOperations ||
6593        TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
6594     return DAG.getNode(ISD::UINT_TO_FP, SDLoc(N), VT, N0);
6595
6596   // If the input is a legal type, and UINT_TO_FP is not legal on this target,
6597   // but SINT_TO_FP is legal on this target, try to convert.
6598   if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
6599       TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
6600     // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
6601     if (DAG.SignBitIsZero(N0))
6602       return DAG.getNode(ISD::SINT_TO_FP, SDLoc(N), VT, N0);
6603   }
6604
6605   // The next optimizations are desireable only if SELECT_CC can be lowered.
6606   // Check against MVT::Other for SELECT_CC, which is a workaround for targets
6607   // having to say they don't support SELECT_CC on every type the DAG knows
6608   // about, since there is no way to mark an opcode illegal at all value types
6609   // (See also visitSELECT)
6610   if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other)) {
6611     // fold (uint_to_fp (setcc x, y, cc)) -> (select_cc x, y, -1.0, 0.0,, cc)
6612
6613     if (N0.getOpcode() == ISD::SETCC && !VT.isVector() &&
6614         (!LegalOperations ||
6615          TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT))) {
6616       SDValue Ops[] =
6617         { N0.getOperand(0), N0.getOperand(1),
6618           DAG.getConstantFP(1.0, VT),  DAG.getConstantFP(0.0, VT),
6619           N0.getOperand(2) };
6620       return DAG.getNode(ISD::SELECT_CC, SDLoc(N), VT, Ops, 5);
6621     }
6622   }
6623
6624   return SDValue();
6625 }
6626
6627 SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
6628   SDValue N0 = N->getOperand(0);
6629   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6630   EVT VT = N->getValueType(0);
6631
6632   // fold (fp_to_sint c1fp) -> c1
6633   if (N0CFP)
6634     return DAG.getNode(ISD::FP_TO_SINT, SDLoc(N), VT, N0);
6635
6636   return SDValue();
6637 }
6638
6639 SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
6640   SDValue N0 = N->getOperand(0);
6641   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6642   EVT VT = N->getValueType(0);
6643
6644   // fold (fp_to_uint c1fp) -> c1
6645   if (N0CFP)
6646     return DAG.getNode(ISD::FP_TO_UINT, SDLoc(N), VT, N0);
6647
6648   return SDValue();
6649 }
6650
6651 SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
6652   SDValue N0 = N->getOperand(0);
6653   SDValue N1 = N->getOperand(1);
6654   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6655   EVT VT = N->getValueType(0);
6656
6657   // fold (fp_round c1fp) -> c1fp
6658   if (N0CFP)
6659     return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT, N0, N1);
6660
6661   // fold (fp_round (fp_extend x)) -> x
6662   if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
6663     return N0.getOperand(0);
6664
6665   // fold (fp_round (fp_round x)) -> (fp_round x)
6666   if (N0.getOpcode() == ISD::FP_ROUND) {
6667     // This is a value preserving truncation if both round's are.
6668     bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
6669                    N0.getNode()->getConstantOperandVal(1) == 1;
6670     return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT, N0.getOperand(0),
6671                        DAG.getIntPtrConstant(IsTrunc));
6672   }
6673
6674   // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
6675   if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
6676     SDValue Tmp = DAG.getNode(ISD::FP_ROUND, SDLoc(N0), VT,
6677                               N0.getOperand(0), N1);
6678     AddToWorkList(Tmp.getNode());
6679     return DAG.getNode(ISD::FCOPYSIGN, SDLoc(N), VT,
6680                        Tmp, N0.getOperand(1));
6681   }
6682
6683   return SDValue();
6684 }
6685
6686 SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
6687   SDValue N0 = N->getOperand(0);
6688   EVT VT = N->getValueType(0);
6689   EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
6690   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6691
6692   // fold (fp_round_inreg c1fp) -> c1fp
6693   if (N0CFP && isTypeLegal(EVT)) {
6694     SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
6695     return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, Round);
6696   }
6697
6698   return SDValue();
6699 }
6700
6701 SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
6702   SDValue N0 = N->getOperand(0);
6703   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6704   EVT VT = N->getValueType(0);
6705
6706   // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
6707   if (N->hasOneUse() &&
6708       N->use_begin()->getOpcode() == ISD::FP_ROUND)
6709     return SDValue();
6710
6711   // fold (fp_extend c1fp) -> c1fp
6712   if (N0CFP)
6713     return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, N0);
6714
6715   // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
6716   // value of X.
6717   if (N0.getOpcode() == ISD::FP_ROUND
6718       && N0.getNode()->getConstantOperandVal(1) == 1) {
6719     SDValue In = N0.getOperand(0);
6720     if (In.getValueType() == VT) return In;
6721     if (VT.bitsLT(In.getValueType()))
6722       return DAG.getNode(ISD::FP_ROUND, SDLoc(N), VT,
6723                          In, N0.getOperand(1));
6724     return DAG.getNode(ISD::FP_EXTEND, SDLoc(N), VT, In);
6725   }
6726
6727   // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
6728   if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
6729       ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
6730        TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
6731     LoadSDNode *LN0 = cast<LoadSDNode>(N0);
6732     SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, SDLoc(N), VT,
6733                                      LN0->getChain(),
6734                                      LN0->getBasePtr(), LN0->getPointerInfo(),
6735                                      N0.getValueType(),
6736                                      LN0->isVolatile(), LN0->isNonTemporal(),
6737                                      LN0->getAlignment());
6738     CombineTo(N, ExtLoad);
6739     CombineTo(N0.getNode(),
6740               DAG.getNode(ISD::FP_ROUND, SDLoc(N0),
6741                           N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
6742               ExtLoad.getValue(1));
6743     return SDValue(N, 0);   // Return N so it doesn't get rechecked!
6744   }
6745
6746   return SDValue();
6747 }
6748
6749 SDValue DAGCombiner::visitFNEG(SDNode *N) {
6750   SDValue N0 = N->getOperand(0);
6751   EVT VT = N->getValueType(0);
6752
6753   if (VT.isVector()) {
6754     SDValue FoldedVOp = SimplifyVUnaryOp(N);
6755     if (FoldedVOp.getNode()) return FoldedVOp;
6756   }
6757
6758   if (isNegatibleForFree(N0, LegalOperations, DAG.getTargetLoweringInfo(),
6759                          &DAG.getTarget().Options))
6760     return GetNegatedExpression(N0, DAG, LegalOperations);
6761
6762   // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
6763   // constant pool values.
6764   if (!TLI.isFNegFree(VT) && N0.getOpcode() == ISD::BITCAST &&
6765       !VT.isVector() &&
6766       N0.getNode()->hasOneUse() &&
6767       N0.getOperand(0).getValueType().isInteger()) {
6768     SDValue Int = N0.getOperand(0);
6769     EVT IntVT = Int.getValueType();
6770     if (IntVT.isInteger() && !IntVT.isVector()) {
6771       Int = DAG.getNode(ISD::XOR, SDLoc(N0), IntVT, Int,
6772               DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
6773       AddToWorkList(Int.getNode());
6774       return DAG.getNode(ISD::BITCAST, SDLoc(N),
6775                          VT, Int);
6776     }
6777   }
6778
6779   // (fneg (fmul c, x)) -> (fmul -c, x)
6780   if (N0.getOpcode() == ISD::FMUL) {
6781     ConstantFPSDNode *CFP1 = dyn_cast<ConstantFPSDNode>(N0.getOperand(1));
6782     if (CFP1)
6783       return DAG.getNode(ISD::FMUL, SDLoc(N), VT,
6784                          N0.getOperand(0),
6785                          DAG.getNode(ISD::FNEG, SDLoc(N), VT,
6786                                      N0.getOperand(1)));
6787   }
6788
6789   return SDValue();
6790 }
6791
6792 SDValue DAGCombiner::visitFCEIL(SDNode *N) {
6793   SDValue N0 = N->getOperand(0);
6794   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6795   EVT VT = N->getValueType(0);
6796
6797   // fold (fceil c1) -> fceil(c1)
6798   if (N0CFP)
6799     return DAG.getNode(ISD::FCEIL, SDLoc(N), VT, N0);
6800
6801   return SDValue();
6802 }
6803
6804 SDValue DAGCombiner::visitFTRUNC(SDNode *N) {
6805   SDValue N0 = N->getOperand(0);
6806   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6807   EVT VT = N->getValueType(0);
6808
6809   // fold (ftrunc c1) -> ftrunc(c1)
6810   if (N0CFP)
6811     return DAG.getNode(ISD::FTRUNC, SDLoc(N), VT, N0);
6812
6813   return SDValue();
6814 }
6815
6816 SDValue DAGCombiner::visitFFLOOR(SDNode *N) {
6817   SDValue N0 = N->getOperand(0);
6818   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6819   EVT VT = N->getValueType(0);
6820
6821   // fold (ffloor c1) -> ffloor(c1)
6822   if (N0CFP)
6823     return DAG.getNode(ISD::FFLOOR, SDLoc(N), VT, N0);
6824
6825   return SDValue();
6826 }
6827
6828 SDValue DAGCombiner::visitFABS(SDNode *N) {
6829   SDValue N0 = N->getOperand(0);
6830   ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
6831   EVT VT = N->getValueType(0);
6832
6833   if (VT.isVector()) {
6834     SDValue FoldedVOp = SimplifyVUnaryOp(N);
6835     if (FoldedVOp.getNode()) return FoldedVOp;
6836   }
6837
6838   // fold (fabs c1) -> fabs(c1)
6839   if (N0CFP)
6840     return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0);
6841   // fold (fabs (fabs x)) -> (fabs x)
6842   if (N0.getOpcode() == ISD::FABS)
6843     return N->getOperand(0);
6844   // fold (fabs (fneg x)) -> (fabs x)
6845   // fold (fabs (fcopysign x, y)) -> (fabs x)
6846   if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
6847     return DAG.getNode(ISD::FABS, SDLoc(N), VT, N0.getOperand(0));
6848
6849   // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
6850   // constant pool values.
6851   if (!TLI.isFAbsFree(VT) &&
6852       N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
6853       N0.getOperand(0).getValueType().isInteger() &&
6854       !N0.getOperand(0).getValueType().isVector()) {
6855     SDValue Int = N0.getOperand(0);
6856     EVT IntVT = Int.getValueType();
6857     if (IntVT.isInteger() && !IntVT.isVector()) {
6858       Int = DAG.getNode(ISD::AND, SDLoc(N0), IntVT, Int,
6859              DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
6860       AddToWorkList(Int.getNode());
6861       return DAG.getNode(ISD::BITCAST, SDLoc(N),
6862                          N->getValueType(0), Int);
6863     }
6864   }
6865
6866   return SDValue();
6867 }
6868
6869 SDValue DAGCombiner::visitBRCOND(SDNode *N) {
6870   SDValue Chain = N->getOperand(0);
6871   SDValue N1 = N->getOperand(1);
6872   SDValue N2 = N->getOperand(2);
6873
6874   // If N is a constant we could fold this into a fallthrough or unconditional
6875   // branch. However that doesn't happen very often in normal code, because
6876   // Instcombine/SimplifyCFG should have handled the available opportunities.
6877   // If we did this folding here, it would be necessary to update the
6878   // MachineBasicBlock CFG, which is awkward.
6879
6880   // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
6881   // on the target.
6882   if (N1.getOpcode() == ISD::SETCC &&
6883       TLI.isOperationLegalOrCustom(ISD::BR_CC,
6884                                    N1.getOperand(0).getValueType())) {
6885     return DAG.getNode(ISD::BR_CC, SDLoc(N), MVT::Other,
6886                        Chain, N1.getOperand(2),
6887                        N1.getOperand(0), N1.getOperand(1), N2);
6888   }
6889
6890   if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
6891       ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
6892        (N1.getOperand(0).hasOneUse() &&
6893         N1.getOperand(0).getOpcode() == ISD::SRL))) {
6894     SDNode *Trunc = 0;
6895     if (N1.getOpcode() == ISD::TRUNCATE) {
6896       // Look pass the truncate.
6897       Trunc = N1.getNode();
6898       N1 = N1.getOperand(0);
6899     }
6900
6901     // Match this pattern so that we can generate simpler code:
6902     //
6903     //   %a = ...
6904     //   %b = and i32 %a, 2
6905     //   %c = srl i32 %b, 1
6906     //   brcond i32 %c ...
6907     //
6908     // into
6909     //
6910     //   %a = ...
6911     //   %b = and i32 %a, 2
6912     //   %c = setcc eq %b, 0
6913     //   brcond %c ...
6914     //
6915     // This applies only when the AND constant value has one bit set and the
6916     // SRL constant is equal to the log2 of the AND constant. The back-end is
6917     // smart enough to convert the result into a TEST/JMP sequence.
6918     SDValue Op0 = N1.getOperand(0);
6919     SDValue Op1 = N1.getOperand(1);
6920
6921     if (Op0.getOpcode() == ISD::AND &&
6922         Op1.getOpcode() == ISD::Constant) {
6923       SDValue AndOp1 = Op0.getOperand(1);
6924
6925       if (AndOp1.getOpcode() == ISD::Constant) {
6926         const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
6927
6928         if (AndConst.isPowerOf2() &&
6929             cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
6930           SDValue SetCC =
6931             DAG.getSetCC(SDLoc(N),
6932                          getSetCCResultType(Op0.getValueType()),
6933                          Op0, DAG.getConstant(0, Op0.getValueType()),
6934                          ISD::SETNE);
6935
6936           SDValue NewBRCond = DAG.getNode(ISD::BRCOND, SDLoc(N),
6937                                           MVT::Other, Chain, SetCC, N2);
6938           // Don't add the new BRCond into the worklist or else SimplifySelectCC
6939           // will convert it back to (X & C1) >> C2.
6940           CombineTo(N, NewBRCond, false);
6941           // Truncate is dead.
6942           if (Trunc) {
6943             removeFromWorkList(Trunc);
6944             DAG.DeleteNode(Trunc);
6945           }
6946           // Replace the uses of SRL with SETCC
6947           WorkListRemover DeadNodes(*this);
6948           DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
6949           removeFromWorkList(N1.getNode());
6950           DAG.DeleteNode(N1.getNode());
6951           return SDValue(N, 0);   // Return N so it doesn't get rechecked!
6952         }
6953       }
6954     }
6955
6956     if (Trunc)
6957       // Restore N1 if the above transformation doesn't match.
6958       N1 = N->getOperand(1);
6959   }
6960
6961   // Transform br(xor(x, y)) -> br(x != y)
6962   // Transform br(xor(xor(x,y), 1)) -> br (x == y)
6963   if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
6964     SDNode *TheXor = N1.getNode();
6965     SDValue Op0 = TheXor->getOperand(0);
6966     SDValue Op1 = TheXor->getOperand(1);
6967     if (Op0.getOpcode() == Op1.getOpcode()) {
6968       // Avoid missing important xor optimizations.
6969       SDValue Tmp = visitXOR(TheXor);
6970       if (Tmp.getNode()) {
6971         if (Tmp.getNode() != TheXor) {
6972           DEBUG(dbgs() << "\nReplacing.8 ";
6973                 TheXor->dump(&DAG);
6974                 dbgs() << "\nWith: ";
6975                 Tmp.getNode()->dump(&DAG);
6976                 dbgs() << '\n');
6977           WorkListRemover DeadNodes(*this);
6978           DAG.ReplaceAllUsesOfValueWith(N1, Tmp);
6979           removeFromWorkList(TheXor);
6980           DAG.DeleteNode(TheXor);
6981           return DAG.getNode(ISD::BRCOND, SDLoc(N),
6982                              MVT::Other, Chain, Tmp, N2);
6983         }
6984
6985         // visitXOR has changed XOR's operands or replaced the XOR completely,
6986         // bail out.
6987         return SDValue(N, 0);
6988       }
6989     }
6990
6991     if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
6992       bool Equal = false;
6993       if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
6994         if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
6995             Op0.getOpcode() == ISD::XOR) {
6996           TheXor = Op0.getNode();
6997           Equal = true;
6998         }
6999
7000       EVT SetCCVT = N1.getValueType();
7001       if (LegalTypes)
7002         SetCCVT = getSetCCResultType(SetCCVT);
7003       SDValue SetCC = DAG.getSetCC(SDLoc(TheXor),
7004                                    SetCCVT,
7005                                    Op0, Op1,
7006                                    Equal ? ISD::SETEQ : ISD::SETNE);
7007       // Replace the uses of XOR with SETCC
7008       WorkListRemover DeadNodes(*this);
7009       DAG.ReplaceAllUsesOfValueWith(N1, SetCC);
7010       removeFromWorkList(N1.getNode());
7011       DAG.DeleteNode(N1.getNode());
7012       return DAG.getNode(ISD::BRCOND, SDLoc(N),
7013                          MVT::Other, Chain, SetCC, N2);
7014     }
7015   }
7016
7017   return SDValue();
7018 }
7019
7020 // Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
7021 //
7022 SDValue DAGCombiner::visitBR_CC(SDNode *N) {
7023   CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
7024   SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
7025
7026   // If N is a constant we could fold this into a fallthrough or unconditional
7027   // branch. However that doesn't happen very often in normal code, because
7028   // Instcombine/SimplifyCFG should have handled the available opportunities.
7029   // If we did this folding here, it would be necessary to update the
7030   // MachineBasicBlock CFG, which is awkward.
7031
7032   // Use SimplifySetCC to simplify SETCC's.
7033   SDValue Simp = SimplifySetCC(getSetCCResultType(CondLHS.getValueType()),
7034                                CondLHS, CondRHS, CC->get(), SDLoc(N),
7035                                false);
7036   if (Simp.getNode()) AddToWorkList(Simp.getNode());
7037
7038   // fold to a simpler setcc
7039   if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
7040     return DAG.getNode(ISD::BR_CC, SDLoc(N), MVT::Other,
7041                        N->getOperand(0), Simp.getOperand(2),
7042                        Simp.getOperand(0), Simp.getOperand(1),
7043                        N->getOperand(4));
7044
7045   return SDValue();
7046 }
7047
7048 /// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
7049 /// uses N as its base pointer and that N may be folded in the load / store
7050 /// addressing mode.
7051 static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
7052                                     SelectionDAG &DAG,
7053                                     const TargetLowering &TLI) {
7054   EVT VT;
7055   if (LoadSDNode *LD  = dyn_cast<LoadSDNode>(Use)) {
7056     if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
7057       return false;
7058     VT = Use->getValueType(0);
7059   } else if (StoreSDNode *ST  = dyn_cast<StoreSDNode>(Use)) {
7060     if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
7061       return false;
7062     VT = ST->getValue().getValueType();
7063   } else
7064     return false;
7065
7066   TargetLowering::AddrMode AM;
7067   if (N->getOpcode() == ISD::ADD) {
7068     ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
7069     if (Offset)
7070       // [reg +/- imm]
7071       AM.BaseOffs = Offset->getSExtValue();
7072     else
7073       // [reg +/- reg]
7074       AM.Scale = 1;
7075   } else if (N->getOpcode() == ISD::SUB) {
7076     ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
7077     if (Offset)
7078       // [reg +/- imm]
7079       AM.BaseOffs = -Offset->getSExtValue();
7080     else
7081       // [reg +/- reg]
7082       AM.Scale = 1;
7083   } else
7084     return false;
7085
7086   return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
7087 }
7088
7089 /// CombineToPreIndexedLoadStore - Try turning a load / store into a
7090 /// pre-indexed load / store when the base pointer is an add or subtract
7091 /// and it has other uses besides the load / store. After the
7092 /// transformation, the new indexed load / store has effectively folded
7093 /// the add / subtract in and all of its other uses are redirected to the
7094 /// new load / store.
7095 bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
7096   if (Level < AfterLegalizeDAG)
7097     return false;
7098
7099   bool isLoad = true;
7100   SDValue Ptr;
7101   EVT VT;
7102   if (LoadSDNode *LD  = dyn_cast<LoadSDNode>(N)) {
7103     if (LD->isIndexed())
7104       return false;
7105     VT = LD->getMemoryVT();
7106     if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
7107         !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
7108       return false;
7109     Ptr = LD->getBasePtr();
7110   } else if (StoreSDNode *ST  = dyn_cast<StoreSDNode>(N)) {
7111     if (ST->isIndexed())
7112       return false;
7113     VT = ST->getMemoryVT();
7114     if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
7115         !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
7116       return false;
7117     Ptr = ST->getBasePtr();
7118     isLoad = false;
7119   } else {
7120     return false;
7121   }
7122
7123   // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
7124   // out.  There is no reason to make this a preinc/predec.
7125   if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
7126       Ptr.getNode()->hasOneUse())
7127     return false;
7128
7129   // Ask the target to do addressing mode selection.
7130   SDValue BasePtr;
7131   SDValue Offset;
7132   ISD::MemIndexedMode AM = ISD::UNINDEXED;
7133   if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
7134     return false;
7135
7136   // Backends without true r+i pre-indexed forms may need to pass a
7137   // constant base with a variable offset so that constant coercion
7138   // will work with the patterns in canonical form.
7139   bool Swapped = false;
7140   if (isa<ConstantSDNode>(BasePtr)) {
7141     std::swap(BasePtr, Offset);
7142     Swapped = true;
7143   }
7144
7145   // Don't create a indexed load / store with zero offset.
7146   if (isa<ConstantSDNode>(Offset) &&
7147       cast<ConstantSDNode>(Offset)->isNullValue())
7148     return false;
7149
7150   // Try turning it into a pre-indexed load / store except when:
7151   // 1) The new base ptr is a frame index.
7152   // 2) If N is a store and the new base ptr is either the same as or is a
7153   //    predecessor of the value being stored.
7154   // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
7155   //    that would create a cycle.
7156   // 4) All uses are load / store ops that use it as old base ptr.
7157
7158   // Check #1.  Preinc'ing a frame index would require copying the stack pointer
7159   // (plus the implicit offset) to a register to preinc anyway.
7160   if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
7161     return false;
7162
7163   // Check #2.
7164   if (!isLoad) {
7165     SDValue Val = cast<StoreSDNode>(N)->getValue();
7166     if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
7167       return false;
7168   }
7169
7170   // If the offset is a constant, there may be other adds of constants that
7171   // can be folded with this one. We should do this to avoid having to keep
7172   // a copy of the original base pointer.
7173   SmallVector<SDNode *, 16> OtherUses;
7174   if (isa<ConstantSDNode>(Offset))
7175     for (SDNode::use_iterator I = BasePtr.getNode()->use_begin(),
7176          E = BasePtr.getNode()->use_end(); I != E; ++I) {
7177       SDNode *Use = *I;
7178       if (Use == Ptr.getNode())
7179         continue;
7180
7181       if (Use->isPredecessorOf(N))
7182         continue;
7183
7184       if (Use->getOpcode() != ISD::ADD && Use->getOpcode() != ISD::SUB) {
7185         OtherUses.clear();
7186         break;
7187       }
7188
7189       SDValue Op0 = Use->getOperand(0), Op1 = Use->getOperand(1);
7190       if (Op1.getNode() == BasePtr.getNode())
7191         std::swap(Op0, Op1);
7192       assert(Op0.getNode() == BasePtr.getNode() &&
7193              "Use of ADD/SUB but not an operand");
7194
7195       if (!isa<ConstantSDNode>(Op1)) {
7196         OtherUses.clear();
7197         break;
7198       }
7199
7200       // FIXME: In some cases, we can be smarter about this.
7201       if (Op1.getValueType() != Offset.getValueType()) {
7202         OtherUses.clear();
7203         break;
7204       }
7205
7206       OtherUses.push_back(Use);
7207     }
7208
7209   if (Swapped)
7210     std::swap(BasePtr, Offset);
7211
7212   // Now check for #3 and #4.
7213   bool RealUse = false;
7214
7215   // Caches for hasPredecessorHelper
7216   SmallPtrSet<const SDNode *, 32> Visited;
7217   SmallVector<const SDNode *, 16> Worklist;
7218
7219   for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
7220          E = Ptr.getNode()->use_end(); I != E; ++I) {
7221     SDNode *Use = *I;
7222     if (Use == N)
7223       continue;
7224     if (N->hasPredecessorHelper(Use, Visited, Worklist))
7225       return false;
7226
7227     // If Ptr may be folded in addressing mode of other use, then it's
7228     // not profitable to do this transformation.
7229     if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
7230       RealUse = true;
7231   }
7232
7233   if (!RealUse)
7234     return false;
7235
7236   SDValue Result;
7237   if (isLoad)
7238     Result = DAG.getIndexedLoad(SDValue(N,0), SDLoc(N),
7239                                 BasePtr, Offset, AM);
7240   else
7241     Result = DAG.getIndexedStore(SDValue(N,0), SDLoc(N),
7242                                  BasePtr, Offset, AM);
7243   ++PreIndexedNodes;
7244   ++NodesCombined;
7245   DEBUG(dbgs() << "\nReplacing.4 ";
7246         N->dump(&DAG);
7247         dbgs() << "\nWith: ";
7248         Result.getNode()->dump(&DAG);
7249         dbgs() << '\n');
7250   WorkListRemover DeadNodes(*this);
7251   if (isLoad) {
7252     DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
7253     DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
7254   } else {
7255     DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
7256   }
7257
7258   // Finally, since the node is now dead, remove it from the graph.
7259   DAG.DeleteNode(N);
7260
7261   if (Swapped)
7262     std::swap(BasePtr, Offset);
7263
7264   // Replace other uses of BasePtr that can be updated to use Ptr
7265   for (unsigned i = 0, e = OtherUses.size(); i != e; ++i) {
7266     unsigned OffsetIdx = 1;
7267     if (OtherUses[i]->getOperand(OffsetIdx).getNode() == BasePtr.getNode())
7268       OffsetIdx = 0;
7269     assert(OtherUses[i]->getOperand(!OffsetIdx).getNode() ==
7270            BasePtr.getNode() && "Expected BasePtr operand");
7271
7272     // We need to replace ptr0 in the following expression:
7273     //   x0 * offset0 + y0 * ptr0 = t0
7274     // knowing that
7275     //   x1 * offset1 + y1 * ptr0 = t1 (the indexed load/store)
7276     //
7277     // where x0, x1, y0 and y1 in {-1, 1} are given by the types of the
7278     // indexed load/store and the expresion that needs to be re-written.
7279     //
7280     // Therefore, we have:
7281     //   t0 = (x0 * offset0 - x1 * y0 * y1 *offset1) + (y0 * y1) * t1
7282
7283     ConstantSDNode *CN =
7284       cast<ConstantSDNode>(OtherUses[i]->getOperand(OffsetIdx));
7285     int X0, X1, Y0, Y1;
7286     APInt Offset0 = CN->getAPIntValue();
7287     APInt Offset1 = cast<ConstantSDNode>(Offset)->getAPIntValue();
7288
7289     X0 = (OtherUses[i]->getOpcode() == ISD::SUB && OffsetIdx == 1) ? -1 : 1;
7290     Y0 = (OtherUses[i]->getOpcode() == ISD::SUB && OffsetIdx == 0) ? -1 : 1;
7291     X1 = (AM == ISD::PRE_DEC && !Swapped) ? -1 : 1;
7292     Y1 = (AM == ISD::PRE_DEC && Swapped) ? -1 : 1;
7293
7294     unsigned Opcode = (Y0 * Y1 < 0) ? ISD::SUB : ISD::ADD;
7295
7296     APInt CNV = Offset0;
7297     if (X0 < 0) CNV = -CNV;
7298     if (X1 * Y0 * Y1 < 0) CNV = CNV + Offset1;
7299     else CNV = CNV - Offset1;
7300
7301     // We can now generate the new expression.
7302     SDValue NewOp1 = DAG.getConstant(CNV, CN->getValueType(0));
7303     SDValue NewOp2 = Result.getValue(isLoad ? 1 : 0);
7304
7305     SDValue NewUse = DAG.getNode(Opcode,
7306                                  SDLoc(OtherUses[i]),
7307                                  OtherUses[i]->getValueType(0), NewOp1, NewOp2);
7308     DAG.ReplaceAllUsesOfValueWith(SDValue(OtherUses[i], 0), NewUse);
7309     removeFromWorkList(OtherUses[i]);
7310     DAG.DeleteNode(OtherUses[i]);
7311   }
7312
7313   // Replace the uses of Ptr with uses of the updated base value.
7314   DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0));
7315   removeFromWorkList(Ptr.getNode());
7316   DAG.DeleteNode(Ptr.getNode());
7317
7318   return true;
7319 }
7320
7321 /// CombineToPostIndexedLoadStore - Try to combine a load / store with a
7322 /// add / sub of the base pointer node into a post-indexed load / store.
7323 /// The transformation folded the add / subtract into the new indexed
7324 /// load / store effectively and all of its uses are redirected to the
7325 /// new load / store.
7326 bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
7327   if (Level < AfterLegalizeDAG)
7328     return false;
7329
7330   bool isLoad = true;
7331   SDValue Ptr;
7332   EVT VT;
7333   if (LoadSDNode *LD  = dyn_cast<LoadSDNode>(N)) {
7334     if (LD->isIndexed())
7335       return false;
7336     VT = LD->getMemoryVT();
7337     if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
7338         !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
7339       return false;
7340     Ptr = LD->getBasePtr();
7341   } else if (StoreSDNode *ST  = dyn_cast<StoreSDNode>(N)) {
7342     if (ST->isIndexed())
7343       return false;
7344     VT = ST->getMemoryVT();
7345     if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
7346         !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
7347       return false;
7348     Ptr = ST->getBasePtr();
7349     isLoad = false;
7350   } else {
7351     return false;
7352   }
7353
7354   if (Ptr.getNode()->hasOneUse())
7355     return false;
7356
7357   for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
7358          E = Ptr.getNode()->use_end(); I != E; ++I) {
7359     SDNode *Op = *I;
7360     if (Op == N ||
7361         (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
7362       continue;
7363
7364     SDValue BasePtr;
7365     SDValue Offset;
7366     ISD::MemIndexedMode AM = ISD::UNINDEXED;
7367     if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
7368       // Don't create a indexed load / store with zero offset.
7369       if (isa<ConstantSDNode>(Offset) &&
7370           cast<ConstantSDNode>(Offset)->isNullValue())
7371         continue;
7372
7373       // Try turning it into a post-indexed load / store except when
7374       // 1) All uses are load / store ops that use it as base ptr (and
7375       //    it may be folded as addressing mmode).
7376       // 2) Op must be independent of N, i.e. Op is neither a predecessor
7377       //    nor a successor of N. Otherwise, if Op is folded that would
7378       //    create a cycle.
7379
7380       if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
7381         continue;
7382
7383       // Check for #1.
7384       bool TryNext = false;
7385       for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
7386              EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
7387         SDNode *Use = *II;
7388         if (Use == Ptr.getNode())
7389           continue;
7390
7391         // If all the uses are load / store addresses, then don't do the
7392         // transformation.
7393         if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
7394           bool RealUse = false;
7395           for (SDNode::use_iterator III = Use->use_begin(),
7396                  EEE = Use->use_end(); III != EEE; ++III) {
7397             SDNode *UseUse = *III;
7398             if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
7399               RealUse = true;
7400           }
7401
7402           if (!RealUse) {
7403             TryNext = true;
7404             break;
7405           }
7406         }
7407       }
7408
7409       if (TryNext)
7410         continue;
7411
7412       // Check for #2
7413       if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
7414         SDValue Result = isLoad
7415           ? DAG.getIndexedLoad(SDValue(N,0), SDLoc(N),
7416                                BasePtr, Offset, AM)
7417           : DAG.getIndexedStore(SDValue(N,0), SDLoc(N),
7418                                 BasePtr, Offset, AM);
7419         ++PostIndexedNodes;
7420         ++NodesCombined;
7421         DEBUG(dbgs() << "\nReplacing.5 ";
7422               N->dump(&DAG);
7423               dbgs() << "\nWith: ";
7424               Result.getNode()->dump(&DAG);
7425               dbgs() << '\n');
7426         WorkListRemover DeadNodes(*this);
7427         if (isLoad) {
7428           DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0));
7429           DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2));
7430         } else {
7431           DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1));
7432         }
7433
7434         // Finally, since the node is now dead, remove it from the graph.
7435         DAG.DeleteNode(N);
7436
7437         // Replace the uses of Use with uses of the updated base value.
7438         DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
7439                                       Result.getValue(isLoad ? 1 : 0));
7440         removeFromWorkList(Op);
7441         DAG.DeleteNode(Op);
7442         return true;
7443       }
7444     }
7445   }
7446
7447   return false;
7448 }
7449
7450 SDValue DAGCombiner::visitLOAD(SDNode *N) {
7451   LoadSDNode *LD  = cast<LoadSDNode>(N);
7452   SDValue Chain = LD->getChain();
7453   SDValue Ptr   = LD->getBasePtr();
7454
7455   // If load is not volatile and there are no uses of the loaded value (and
7456   // the updated indexed value in case of indexed loads), change uses of the
7457   // chain value into uses of the chain input (i.e. delete the dead load).
7458   if (!LD->isVolatile()) {
7459     if (N->getValueType(1) == MVT::Other) {
7460       // Unindexed loads.
7461       if (!N->hasAnyUseOfValue(0)) {
7462         // It's not safe to use the two value CombineTo variant here. e.g.
7463         // v1, chain2 = load chain1, loc
7464         // v2, chain3 = load chain2, loc
7465         // v3         = add v2, c
7466         // Now we replace use of chain2 with chain1.  This makes the second load
7467         // isomorphic to the one we are deleting, and thus makes this load live.
7468         DEBUG(dbgs() << "\nReplacing.6 ";
7469               N->dump(&DAG);
7470               dbgs() << "\nWith chain: ";
7471               Chain.getNode()->dump(&DAG);
7472               dbgs() << "\n");
7473         WorkListRemover DeadNodes(*this);
7474         DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain);
7475
7476         if (N->use_empty()) {
7477           removeFromWorkList(N);
7478           DAG.DeleteNode(N);
7479         }
7480
7481         return SDValue(N, 0);   // Return N so it doesn't get rechecked!
7482       }
7483     } else {
7484       // Indexed loads.
7485       assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
7486       if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
7487         SDValue Undef = DAG.getUNDEF(N->getValueType(0));
7488         DEBUG(dbgs() << "\nReplacing.7 ";
7489               N->dump(&DAG);
7490               dbgs() << "\nWith: ";
7491               Undef.getNode()->dump(&DAG);
7492               dbgs() << " and 2 other values\n");
7493         WorkListRemover DeadNodes(*this);
7494         DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef);
7495         DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
7496                                       DAG.getUNDEF(N->getValueType(1)));
7497         DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain);
7498         removeFromWorkList(N);
7499         DAG.DeleteNode(N);
7500         return SDValue(N, 0);   // Return N so it doesn't get rechecked!
7501       }
7502     }
7503   }
7504
7505   // If this load is directly stored, replace the load value with the stored
7506   // value.
7507   // TODO: Handle store large -> read small portion.
7508   // TODO: Handle TRUNCSTORE/LOADEXT
7509   if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
7510     if (ISD::isNON_TRUNCStore(Chain.getNode())) {
7511       StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
7512       if (PrevST->getBasePtr() == Ptr &&
7513           PrevST->getValue().getValueType() == N->getValueType(0))
7514       return CombineTo(N, Chain.getOperand(1), Chain);
7515     }
7516   }
7517
7518   // Try to infer better alignment information than the load already has.
7519   if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
7520     if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
7521       if (Align > LD->getMemOperand()->getBaseAlignment()) {
7522         SDValue NewLoad =
7523                DAG.getExtLoad(LD->getExtensionType(), SDLoc(N),
7524                               LD->getValueType(0),
7525                               Chain, Ptr, LD->getPointerInfo(),
7526                               LD->getMemoryVT(),
7527                               LD->isVolatile(), LD->isNonTemporal(), Align);
7528         return CombineTo(N, NewLoad, SDValue(NewLoad.getNode(), 1), true);
7529       }
7530     }
7531   }
7532
7533   bool UseAA = CombinerAA.getNumOccurrences() > 0 ? CombinerAA :
7534     TLI.getTargetMachine().getSubtarget<TargetSubtargetInfo>().useAA();
7535   if (UseAA) {
7536     // Walk up chain skipping non-aliasing memory nodes.
7537     SDValue BetterChain = FindBetterChain(N, Chain);
7538
7539     // If there is a better chain.
7540     if (Chain != BetterChain) {
7541       SDValue ReplLoad;
7542
7543       // Replace the chain to void dependency.
7544       if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
7545         ReplLoad = DAG.getLoad(N->getValueType(0), SDLoc(LD),
7546                                BetterChain, Ptr, LD->getPointerInfo(),
7547                                LD->isVolatile(), LD->isNonTemporal(),
7548                                LD->isInvariant(), LD->getAlignment());
7549       } else {
7550         ReplLoad = DAG.getExtLoad(LD->getExtensionType(), SDLoc(LD),
7551                                   LD->getValueType(0),
7552                                   BetterChain, Ptr, LD->getPointerInfo(),
7553                                   LD->getMemoryVT(),
7554                                   LD->isVolatile(),
7555                                   LD->isNonTemporal(),
7556                                   LD->getAlignment());
7557       }
7558
7559       // Create token factor to keep old chain connected.
7560       SDValue Token = DAG.getNode(ISD::TokenFactor, SDLoc(N),
7561                                   MVT::Other, Chain, ReplLoad.getValue(1));
7562
7563       // Make sure the new and old chains are cleaned up.
7564       AddToWorkList(Token.getNode());
7565
7566       // Replace uses with load result and token factor. Don't add users
7567       // to work list.
7568       return CombineTo(N, ReplLoad.getValue(0), Token, false);
7569     }
7570   }
7571
7572   // Try transforming N to an indexed load.
7573   if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
7574     return SDValue(N, 0);
7575
7576   return SDValue();
7577 }
7578
7579 /// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
7580 /// load is having specific bytes cleared out.  If so, return the byte size
7581 /// being masked out and the shift amount.
7582 static std::pair<unsigned, unsigned>
7583 CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
7584   std::pair<unsigned, unsigned> Result(0, 0);
7585
7586   // Check for the structure we're looking for.
7587   if (V->getOpcode() != ISD::AND ||
7588       !isa<ConstantSDNode>(V->getOperand(1)) ||
7589       !ISD::isNormalLoad(V->getOperand(0).getNode()))
7590     return Result;
7591
7592   // Check the chain and pointer.
7593   LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
7594   if (LD->getBasePtr() != Ptr) return Result;  // Not from same pointer.
7595
7596   // The store should be chained directly to the load or be an operand of a
7597   // tokenfactor.
7598   if (LD == Chain.getNode())
7599     ; // ok.
7600   else if (Chain->getOpcode() != ISD::TokenFactor)
7601     return Result; // Fail.
7602   else {
7603     bool isOk = false;
7604     for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
7605       if (Chain->getOperand(i).getNode() == LD) {
7606         isOk = true;
7607         break;
7608       }
7609     if (!isOk) return Result;
7610   }
7611
7612   // This only handles simple types.
7613   if (V.getValueType() != MVT::i16 &&
7614       V.getValueType() != MVT::i32 &&
7615       V.getValueType() != MVT::i64)
7616     return Result;
7617
7618   // Check the constant mask.  Invert it so that the bits being masked out are
7619   // 0 and the bits being kept are 1.  Use getSExtValue so that leading bits
7620   // follow the sign bit for uniformity.
7621   uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
7622   unsigned NotMaskLZ = countLeadingZeros(NotMask);
7623   if (NotMaskLZ & 7) return Result;  // Must be multiple of a byte.
7624   unsigned NotMaskTZ = countTrailingZeros(NotMask);
7625   if (NotMaskTZ & 7) return Result;  // Must be multiple of a byte.
7626   if (NotMaskLZ == 64) return Result;  // All zero mask.
7627
7628   // See if we have a continuous run of bits.  If so, we have 0*1+0*
7629   if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
7630     return Result;
7631
7632   // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
7633   if (V.getValueType() != MVT::i64 && NotMaskLZ)
7634     NotMaskLZ -= 64-V.getValueSizeInBits();
7635
7636   unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
7637   switch (MaskedBytes) {
7638   case 1:
7639   case 2:
7640   case 4: break;
7641   default: return Result; // All one mask, or 5-byte mask.
7642   }
7643
7644   // Verify that the first bit starts at a multiple of mask so that the access
7645   // is aligned the same as the access width.
7646   if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
7647
7648   Result.first = MaskedBytes;
7649   Result.second = NotMaskTZ/8;
7650   return Result;
7651 }
7652
7653
7654 /// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
7655 /// provides a value as specified by MaskInfo.  If so, replace the specified
7656 /// store with a narrower store of truncated IVal.
7657 static SDNode *
7658 ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
7659                                 SDValue IVal, StoreSDNode *St,
7660                                 DAGCombiner *DC) {
7661   unsigned NumBytes = MaskInfo.first;
7662   unsigned ByteShift = MaskInfo.second;
7663   SelectionDAG &DAG = DC->getDAG();
7664
7665   // Check to see if IVal is all zeros in the part being masked in by the 'or'
7666   // that uses this.  If not, this is not a replacement.
7667   APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
7668                                   ByteShift*8, (ByteShift+NumBytes)*8);
7669   if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
7670
7671   // Check that it is legal on the target to do this.  It is legal if the new
7672   // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
7673   // legalization.
7674   MVT VT = MVT::getIntegerVT(NumBytes*8);
7675   if (!DC->isTypeLegal(VT))
7676     return 0;
7677
7678   // Okay, we can do this!  Replace the 'St' store with a store of IVal that is
7679   // shifted by ByteShift and truncated down to NumBytes.
7680   if (ByteShift)
7681     IVal = DAG.getNode(ISD::SRL, SDLoc(IVal), IVal.getValueType(), IVal,
7682                        DAG.getConstant(ByteShift*8,
7683                                     DC->getShiftAmountTy(IVal.getValueType())));
7684
7685   // Figure out the offset for the store and the alignment of the access.
7686   unsigned StOffset;
7687   unsigned NewAlign = St->getAlignment();
7688
7689   if (DAG.getTargetLoweringInfo().isLittleEndian())
7690     StOffset = ByteShift;
7691   else
7692     StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
7693
7694   SDValue Ptr = St->getBasePtr();
7695   if (StOffset) {
7696     Ptr = DAG.getNode(ISD::ADD, SDLoc(IVal), Ptr.getValueType(),
7697                       Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
7698     NewAlign = MinAlign(NewAlign, StOffset);
7699   }
7700
7701   // Truncate down to the new size.
7702   IVal = DAG.getNode(ISD::TRUNCATE, SDLoc(IVal), VT, IVal);
7703
7704   ++OpsNarrowed;
7705   return DAG.getStore(St->getChain(), SDLoc(St), IVal, Ptr,
7706                       St->getPointerInfo().getWithOffset(StOffset),
7707                       false, false, NewAlign).getNode();
7708 }
7709
7710
7711 /// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
7712 /// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
7713 /// of the loaded bits, try narrowing the load and store if it would end up
7714 /// being a win for performance or code size.
7715 SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
7716   StoreSDNode *ST  = cast<StoreSDNode>(N);
7717   if (ST->isVolatile())
7718     return SDValue();
7719
7720   SDValue Chain = ST->getChain();
7721   SDValue Value = ST->getValue();
7722   SDValue Ptr   = ST->getBasePtr();
7723   EVT VT = Value.getValueType();
7724
7725   if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
7726     return SDValue();
7727
7728   unsigned Opc = Value.getOpcode();
7729
7730   // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
7731   // is a byte mask indicating a consecutive number of bytes, check to see if
7732   // Y is known to provide just those bytes.  If so, we try to replace the
7733   // load + replace + store sequence with a single (narrower) store, which makes
7734   // the load dead.
7735   if (Opc == ISD::OR) {
7736     std::pair<unsigned, unsigned> MaskedLoad;
7737     MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
7738     if (MaskedLoad.first)
7739       if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7740                                                   Value.getOperand(1), ST,this))
7741         return SDValue(NewST, 0);
7742
7743     // Or is commutative, so try swapping X and Y.
7744     MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
7745     if (MaskedLoad.first)
7746       if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
7747                                                   Value.getOperand(0), ST,this))
7748         return SDValue(NewST, 0);
7749   }
7750
7751   if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
7752       Value.getOperand(1).getOpcode() != ISD::Constant)
7753     return SDValue();
7754
7755   SDValue N0 = Value.getOperand(0);
7756   if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
7757       Chain == SDValue(N0.getNode(), 1)) {
7758     LoadSDNode *LD = cast<LoadSDNode>(N0);
7759     if (LD->getBasePtr() != Ptr ||
7760         LD->getPointerInfo().getAddrSpace() !=
7761         ST->getPointerInfo().getAddrSpace())
7762       return SDValue();
7763
7764     // Find the type to narrow it the load / op / store to.
7765     SDValue N1 = Value.getOperand(1);
7766     unsigned BitWidth = N1.getValueSizeInBits();
7767     APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
7768     if (Opc == ISD::AND)
7769       Imm ^= APInt::getAllOnesValue(BitWidth);
7770     if (Imm == 0 || Imm.isAllOnesValue())
7771       return SDValue();
7772     unsigned ShAmt = Imm.countTrailingZeros();
7773     unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
7774     unsigned NewBW = NextPowerOf2(MSB - ShAmt);
7775     EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
7776     while (NewBW < BitWidth &&
7777            !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
7778              TLI.isNarrowingProfitable(VT, NewVT))) {
7779       NewBW = NextPowerOf2(NewBW);
7780       NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
7781     }
7782     if (NewBW >= BitWidth)
7783       return SDValue();
7784
7785     // If the lsb changed does not start at the type bitwidth boundary,
7786     // start at the previous one.
7787     if (ShAmt % NewBW)
7788       ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
7789     APInt Mask = APInt::getBitsSet(BitWidth, ShAmt,
7790                                    std::min(BitWidth, ShAmt + NewBW));
7791     if ((Imm & Mask) == Imm) {
7792       APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
7793       if (Opc == ISD::AND)
7794         NewImm ^= APInt::getAllOnesValue(NewBW);
7795       uint64_t PtrOff = ShAmt / 8;
7796       // For big endian targets, we need to adjust the offset to the pointer to
7797       // load the correct bytes.
7798       if (TLI.isBigEndian())
7799         PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
7800
7801       unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
7802       Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
7803       if (NewAlign < TLI.getDataLayout()->getABITypeAlignment(NewVTTy))
7804         return SDValue();
7805
7806       SDValue NewPtr = DAG.getNode(ISD::ADD, SDLoc(LD),
7807                                    Ptr.getValueType(), Ptr,
7808                                    DAG.getConstant(PtrOff, Ptr.getValueType()));
7809       SDValue NewLD = DAG.getLoad(NewVT, SDLoc(N0),
7810                                   LD->getChain(), NewPtr,
7811                                   LD->getPointerInfo().getWithOffset(PtrOff),
7812                                   LD->isVolatile(), LD->isNonTemporal(),
7813                                   LD->isInvariant(), NewAlign);
7814       SDValue NewVal = DAG.getNode(Opc, SDLoc(Value), NewVT, NewLD,
7815                                    DAG.getConstant(NewImm, NewVT));
7816       SDValue NewST = DAG.getStore(Chain, SDLoc(N),
7817                                    NewVal, NewPtr,
7818                                    ST->getPointerInfo().getWithOffset(PtrOff),
7819                                    false, false, NewAlign);
7820
7821       AddToWorkList(NewPtr.getNode());
7822       AddToWorkList(NewLD.getNode());
7823       AddToWorkList(NewVal.getNode());
7824       WorkListRemover DeadNodes(*this);
7825       DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1));
7826       ++OpsNarrowed;
7827       return NewST;
7828     }
7829   }
7830
7831   return SDValue();
7832 }
7833
7834 /// TransformFPLoadStorePair - For a given floating point load / store pair,
7835 /// if the load value isn't used by any other operations, then consider
7836 /// transforming the pair to integer load / store operations if the target
7837 /// deems the transformation profitable.
7838 SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
7839   StoreSDNode *ST  = cast<StoreSDNode>(N);
7840   SDValue Chain = ST->getChain();
7841   SDValue Value = ST->getValue();
7842   if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
7843       Value.hasOneUse() &&
7844       Chain == SDValue(Value.getNode(), 1)) {
7845     LoadSDNode *LD = cast<LoadSDNode>(Value);
7846     EVT VT = LD->getMemoryVT();
7847     if (!VT.isFloatingPoint() ||
7848         VT != ST->getMemoryVT() ||
7849         LD->isNonTemporal() ||
7850         ST->isNonTemporal() ||
7851         LD->getPointerInfo().getAddrSpace() != 0 ||
7852         ST->getPointerInfo().getAddrSpace() != 0)
7853       return SDValue();
7854
7855     EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
7856     if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
7857         !TLI.isOperationLegal(ISD::STORE, IntVT) ||
7858         !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
7859         !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
7860       return SDValue();
7861
7862     unsigned LDAlign = LD->getAlignment();
7863     unsigned STAlign = ST->getAlignment();
7864     Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
7865     unsigned ABIAlign = TLI.getDataLayout()->getABITypeAlignment(IntVTTy);
7866     if (LDAlign < ABIAlign || STAlign < ABIAlign)
7867       return SDValue();
7868
7869     SDValue NewLD = DAG.getLoad(IntVT, SDLoc(Value),
7870                                 LD->getChain(), LD->getBasePtr(),
7871                                 LD->getPointerInfo(),
7872                                 false, false, false, LDAlign);
7873
7874     SDValue NewST = DAG.getStore(NewLD.getValue(1), SDLoc(N),
7875                                  NewLD, ST->getBasePtr(),
7876                                  ST->getPointerInfo(),
7877                                  false, false, STAlign);
7878
7879     AddToWorkList(NewLD.getNode());
7880     AddToWorkList(NewST.getNode());
7881     WorkListRemover DeadNodes(*this);
7882     DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1));
7883     ++LdStFP2Int;
7884     return NewST;
7885   }
7886
7887   return SDValue();
7888 }
7889
7890 /// Helper struct to parse and store a memory address as base + index + offset.
7891 /// We ignore sign extensions when it is safe to do so.
7892 /// The following two expressions are not equivalent. To differentiate we need
7893 /// to store whether there was a sign extension involved in the index
7894 /// computation.
7895 ///  (load (i64 add (i64 copyfromreg %c)
7896 ///                 (i64 signextend (add (i8 load %index)
7897 ///                                      (i8 1))))
7898 /// vs
7899 ///
7900 /// (load (i64 add (i64 copyfromreg %c)
7901 ///                (i64 signextend (i32 add (i32 signextend (i8 load %index))
7902 ///                                         (i32 1)))))
7903 struct BaseIndexOffset {
7904   SDValue Base;
7905   SDValue Index;
7906   int64_t Offset;
7907   bool IsIndexSignExt;
7908
7909   BaseIndexOffset() : Offset(0), IsIndexSignExt(false) {}
7910
7911   BaseIndexOffset(SDValue Base, SDValue Index, int64_t Offset,
7912                   bool IsIndexSignExt) :
7913     Base(Base), Index(Index), Offset(Offset), IsIndexSignExt(IsIndexSignExt) {}
7914
7915   bool equalBaseIndex(const BaseIndexOffset &Other) {
7916     return Other.Base == Base && Other.Index == Index &&
7917       Other.IsIndexSignExt == IsIndexSignExt;
7918   }
7919
7920   /// Parses tree in Ptr for base, index, offset addresses.
7921   static BaseIndexOffset match(SDValue Ptr) {
7922     bool IsIndexSignExt = false;
7923
7924     // We only can pattern match BASE + INDEX + OFFSET. If Ptr is not an ADD
7925     // instruction, then it could be just the BASE or everything else we don't
7926     // know how to handle. Just use Ptr as BASE and give up.
7927     if (Ptr->getOpcode() != ISD::ADD)
7928       return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt);
7929
7930     // We know that we have at least an ADD instruction. Try to pattern match
7931     // the simple case of BASE + OFFSET.
7932     if (isa<ConstantSDNode>(Ptr->getOperand(1))) {
7933       int64_t Offset = cast<ConstantSDNode>(Ptr->getOperand(1))->getSExtValue();
7934       return  BaseIndexOffset(Ptr->getOperand(0), SDValue(), Offset,
7935                               IsIndexSignExt);
7936     }
7937
7938     // Inside a loop the current BASE pointer is calculated using an ADD and a
7939     // MUL instruction. In this case Ptr is the actual BASE pointer.
7940     // (i64 add (i64 %array_ptr)
7941     //          (i64 mul (i64 %induction_var)
7942     //                   (i64 %element_size)))
7943     if (Ptr->getOperand(1)->getOpcode() == ISD::MUL)
7944       return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt);
7945
7946     // Look at Base + Index + Offset cases.
7947     SDValue Base = Ptr->getOperand(0);
7948     SDValue IndexOffset = Ptr->getOperand(1);
7949
7950     // Skip signextends.
7951     if (IndexOffset->getOpcode() == ISD::SIGN_EXTEND) {
7952       IndexOffset = IndexOffset->getOperand(0);
7953       IsIndexSignExt = true;
7954     }
7955
7956     // Either the case of Base + Index (no offset) or something else.
7957     if (IndexOffset->getOpcode() != ISD::ADD)
7958       return BaseIndexOffset(Base, IndexOffset, 0, IsIndexSignExt);
7959
7960     // Now we have the case of Base + Index + offset.
7961     SDValue Index = IndexOffset->getOperand(0);
7962     SDValue Offset = IndexOffset->getOperand(1);
7963
7964     if (!isa<ConstantSDNode>(Offset))
7965       return BaseIndexOffset(Ptr, SDValue(), 0, IsIndexSignExt);
7966
7967     // Ignore signextends.
7968     if (Index->getOpcode() == ISD::SIGN_EXTEND) {
7969       Index = Index->getOperand(0);
7970       IsIndexSignExt = true;
7971     } else IsIndexSignExt = false;
7972
7973     int64_t Off = cast<ConstantSDNode>(Offset)->getSExtValue();
7974     return BaseIndexOffset(Base, Index, Off, IsIndexSignExt);
7975   }
7976 };
7977
7978 /// Holds a pointer to an LSBaseSDNode as well as information on where it
7979 /// is located in a sequence of memory operations connected by a chain.
7980 struct MemOpLink {
7981   MemOpLink (LSBaseSDNode *N, int64_t Offset, unsigned Seq):
7982     MemNode(N), OffsetFromBase(Offset), SequenceNum(Seq) { }
7983   // Ptr to the mem node.
7984   LSBaseSDNode *MemNode;
7985   // Offset from the base ptr.
7986   int64_t OffsetFromBase;
7987   // What is the sequence number of this mem node.
7988   // Lowest mem operand in the DAG starts at zero.
7989   unsigned SequenceNum;
7990 };
7991
7992 /// Sorts store nodes in a link according to their offset from a shared
7993 // base ptr.
7994 struct ConsecutiveMemoryChainSorter {
7995   bool operator()(MemOpLink LHS, MemOpLink RHS) {
7996     return LHS.OffsetFromBase < RHS.OffsetFromBase;
7997   }
7998 };
7999
8000 bool DAGCombiner::MergeConsecutiveStores(StoreSDNode* St) {
8001   EVT MemVT = St->getMemoryVT();
8002   int64_t ElementSizeBytes = MemVT.getSizeInBits()/8;
8003   bool NoVectors = DAG.getMachineFunction().getFunction()->getAttributes().
8004     hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
8005
8006   // Don't merge vectors into wider inputs.
8007   if (MemVT.isVector() || !MemVT.isSimple())
8008     return false;
8009
8010   // Perform an early exit check. Do not bother looking at stored values that
8011   // are not constants or loads.
8012   SDValue StoredVal = St->getValue();
8013   bool IsLoadSrc = isa<LoadSDNode>(StoredVal);
8014   if (!isa<ConstantSDNode>(StoredVal) && !isa<ConstantFPSDNode>(StoredVal) &&
8015       !IsLoadSrc)
8016     return false;
8017
8018   // Only look at ends of store sequences.
8019   SDValue Chain = SDValue(St, 1);
8020   if (Chain->hasOneUse() && Chain->use_begin()->getOpcode() == ISD::STORE)
8021     return false;
8022
8023   // This holds the base pointer, index, and the offset in bytes from the base
8024   // pointer.
8025   BaseIndexOffset BasePtr = BaseIndexOffset::match(St->getBasePtr());
8026
8027   // We must have a base and an offset.
8028   if (!BasePtr.Base.getNode())
8029     return false;
8030
8031   // Do not handle stores to undef base pointers.
8032   if (BasePtr.Base.getOpcode() == ISD::UNDEF)
8033     return false;
8034
8035   // Save the LoadSDNodes that we find in the chain.
8036   // We need to make sure that these nodes do not interfere with
8037   // any of the store nodes.
8038   SmallVector<LSBaseSDNode*, 8> AliasLoadNodes;
8039
8040   // Save the StoreSDNodes that we find in the chain.
8041   SmallVector<MemOpLink, 8> StoreNodes;
8042
8043   // Walk up the chain and look for nodes with offsets from the same
8044   // base pointer. Stop when reaching an instruction with a different kind
8045   // or instruction which has a different base pointer.
8046   unsigned Seq = 0;
8047   StoreSDNode *Index = St;
8048   while (Index) {
8049     // If the chain has more than one use, then we can't reorder the mem ops.
8050     if (Index != St && !SDValue(Index, 1)->hasOneUse())
8051       break;
8052
8053     // Find the base pointer and offset for this memory node.
8054     BaseIndexOffset Ptr = BaseIndexOffset::match(Index->getBasePtr());
8055
8056     // Check that the base pointer is the same as the original one.
8057     if (!Ptr.equalBaseIndex(BasePtr))
8058       break;
8059
8060     // Check that the alignment is the same.
8061     if (Index->getAlignment() != St->getAlignment())
8062       break;
8063
8064     // The memory operands must not be volatile.
8065     if (Index->isVolatile() || Index->isIndexed())
8066       break;
8067
8068     // No truncation.
8069     if (StoreSDNode *St = dyn_cast<StoreSDNode>(Index))
8070       if (St->isTruncatingStore())
8071         break;
8072
8073     // The stored memory type must be the same.
8074     if (Index->getMemoryVT() != MemVT)
8075       break;
8076
8077     // We do not allow unaligned stores because we want to prevent overriding
8078     // stores.
8079     if (Index->getAlignment()*8 != MemVT.getSizeInBits())
8080       break;
8081
8082     // We found a potential memory operand to merge.
8083     StoreNodes.push_back(MemOpLink(Index, Ptr.Offset, Seq++));
8084
8085     // Find the next memory operand in the chain. If the next operand in the
8086     // chain is a store then move up and continue the scan with the next
8087     // memory operand. If the next operand is a load save it and use alias
8088     // information to check if it interferes with anything.
8089     SDNode *NextInChain = Index->getChain().getNode();
8090     while (1) {
8091       if (StoreSDNode *STn = dyn_cast<StoreSDNode>(NextInChain)) {
8092         // We found a store node. Use it for the next iteration.
8093         Index = STn;
8094         break;
8095       } else if (LoadSDNode *Ldn = dyn_cast<LoadSDNode>(NextInChain)) {
8096         // Save the load node for later. Continue the scan.
8097         AliasLoadNodes.push_back(Ldn);
8098         NextInChain = Ldn->getChain().getNode();
8099         continue;
8100       } else {
8101         Index = NULL;
8102         break;
8103       }
8104     }
8105   }
8106
8107   // Check if there is anything to merge.
8108   if (StoreNodes.size() < 2)
8109     return false;
8110
8111   // Sort the memory operands according to their distance from the base pointer.
8112   std::sort(StoreNodes.begin(), StoreNodes.end(),
8113             ConsecutiveMemoryChainSorter());
8114
8115   // Scan the memory operations on the chain and find the first non-consecutive
8116   // store memory address.
8117   unsigned LastConsecutiveStore = 0;
8118   int64_t StartAddress = StoreNodes[0].OffsetFromBase;
8119   for (unsigned i = 0, e = StoreNodes.size(); i < e; ++i) {
8120
8121     // Check that the addresses are consecutive starting from the second
8122     // element in the list of stores.
8123     if (i > 0) {
8124       int64_t CurrAddress = StoreNodes[i].OffsetFromBase;
8125       if (CurrAddress - StartAddress != (ElementSizeBytes * i))
8126         break;
8127     }
8128
8129     bool Alias = false;
8130     // Check if this store interferes with any of the loads that we found.
8131     for (unsigned ld = 0, lde = AliasLoadNodes.size(); ld < lde; ++ld)
8132       if (isAlias(AliasLoadNodes[ld], StoreNodes[i].MemNode)) {
8133         Alias = true;
8134         break;
8135       }
8136     // We found a load that alias with this store. Stop the sequence.
8137     if (Alias)
8138       break;
8139
8140     // Mark this node as useful.
8141     LastConsecutiveStore = i;
8142   }
8143
8144   // The node with the lowest store address.
8145   LSBaseSDNode *FirstInChain = StoreNodes[0].MemNode;
8146
8147   // Store the constants into memory as one consecutive store.
8148   if (!IsLoadSrc) {
8149     unsigned LastLegalType = 0;
8150     unsigned LastLegalVectorType = 0;
8151     bool NonZero = false;
8152     for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
8153       StoreSDNode *St  = cast<StoreSDNode>(StoreNodes[i].MemNode);
8154       SDValue StoredVal = St->getValue();
8155
8156       if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(StoredVal)) {
8157         NonZero |= !C->isNullValue();
8158       } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(StoredVal)) {
8159         NonZero |= !C->getConstantFPValue()->isNullValue();
8160       } else {
8161         // Non constant.
8162         break;
8163       }
8164
8165       // Find a legal type for the constant store.
8166       unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
8167       EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8168       if (TLI.isTypeLegal(StoreTy))
8169         LastLegalType = i+1;
8170       // Or check whether a truncstore is legal.
8171       else if (TLI.getTypeAction(*DAG.getContext(), StoreTy) ==
8172                TargetLowering::TypePromoteInteger) {
8173         EVT LegalizedStoredValueTy =
8174           TLI.getTypeToTransformTo(*DAG.getContext(), StoredVal.getValueType());
8175         if (TLI.isTruncStoreLegal(LegalizedStoredValueTy, StoreTy))
8176           LastLegalType = i+1;
8177       }
8178
8179       // Find a legal type for the vector store.
8180       EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
8181       if (TLI.isTypeLegal(Ty))
8182         LastLegalVectorType = i + 1;
8183     }
8184
8185     // We only use vectors if the constant is known to be zero and the
8186     // function is not marked with the noimplicitfloat attribute.
8187     if (NonZero || NoVectors)
8188       LastLegalVectorType = 0;
8189
8190     // Check if we found a legal integer type to store.
8191     if (LastLegalType == 0 && LastLegalVectorType == 0)
8192       return false;
8193
8194     bool UseVector = (LastLegalVectorType > LastLegalType) && !NoVectors;
8195     unsigned NumElem = UseVector ? LastLegalVectorType : LastLegalType;
8196
8197     // Make sure we have something to merge.
8198     if (NumElem < 2)
8199       return false;
8200
8201     unsigned EarliestNodeUsed = 0;
8202     for (unsigned i=0; i < NumElem; ++i) {
8203       // Find a chain for the new wide-store operand. Notice that some
8204       // of the store nodes that we found may not be selected for inclusion
8205       // in the wide store. The chain we use needs to be the chain of the
8206       // earliest store node which is *used* and replaced by the wide store.
8207       if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
8208         EarliestNodeUsed = i;
8209     }
8210
8211     // The earliest Node in the DAG.
8212     LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
8213     SDLoc DL(StoreNodes[0].MemNode);
8214
8215     SDValue StoredVal;
8216     if (UseVector) {
8217       // Find a legal type for the vector store.
8218       EVT Ty = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
8219       assert(TLI.isTypeLegal(Ty) && "Illegal vector store");
8220       StoredVal = DAG.getConstant(0, Ty);
8221     } else {
8222       unsigned StoreBW = NumElem * ElementSizeBytes * 8;
8223       APInt StoreInt(StoreBW, 0);
8224
8225       // Construct a single integer constant which is made of the smaller
8226       // constant inputs.
8227       bool IsLE = TLI.isLittleEndian();
8228       for (unsigned i = 0; i < NumElem ; ++i) {
8229         unsigned Idx = IsLE ?(NumElem - 1 - i) : i;
8230         StoreSDNode *St  = cast<StoreSDNode>(StoreNodes[Idx].MemNode);
8231         SDValue Val = St->getValue();
8232         StoreInt<<=ElementSizeBytes*8;
8233         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Val)) {
8234           StoreInt|=C->getAPIntValue().zext(StoreBW);
8235         } else if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Val)) {
8236           StoreInt|= C->getValueAPF().bitcastToAPInt().zext(StoreBW);
8237         } else {
8238           assert(false && "Invalid constant element type");
8239         }
8240       }
8241
8242       // Create the new Load and Store operations.
8243       EVT StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8244       StoredVal = DAG.getConstant(StoreInt, StoreTy);
8245     }
8246
8247     SDValue NewStore = DAG.getStore(EarliestOp->getChain(), DL, StoredVal,
8248                                     FirstInChain->getBasePtr(),
8249                                     FirstInChain->getPointerInfo(),
8250                                     false, false,
8251                                     FirstInChain->getAlignment());
8252
8253     // Replace the first store with the new store
8254     CombineTo(EarliestOp, NewStore);
8255     // Erase all other stores.
8256     for (unsigned i = 0; i < NumElem ; ++i) {
8257       if (StoreNodes[i].MemNode == EarliestOp)
8258         continue;
8259       StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
8260       // ReplaceAllUsesWith will replace all uses that existed when it was
8261       // called, but graph optimizations may cause new ones to appear. For
8262       // example, the case in pr14333 looks like
8263       //
8264       //  St's chain -> St -> another store -> X
8265       //
8266       // And the only difference from St to the other store is the chain.
8267       // When we change it's chain to be St's chain they become identical,
8268       // get CSEed and the net result is that X is now a use of St.
8269       // Since we know that St is redundant, just iterate.
8270       while (!St->use_empty())
8271         DAG.ReplaceAllUsesWith(SDValue(St, 0), St->getChain());
8272       removeFromWorkList(St);
8273       DAG.DeleteNode(St);
8274     }
8275
8276     return true;
8277   }
8278
8279   // Below we handle the case of multiple consecutive stores that
8280   // come from multiple consecutive loads. We merge them into a single
8281   // wide load and a single wide store.
8282
8283   // Look for load nodes which are used by the stored values.
8284   SmallVector<MemOpLink, 8> LoadNodes;
8285
8286   // Find acceptable loads. Loads need to have the same chain (token factor),
8287   // must not be zext, volatile, indexed, and they must be consecutive.
8288   BaseIndexOffset LdBasePtr;
8289   for (unsigned i=0; i<LastConsecutiveStore+1; ++i) {
8290     StoreSDNode *St  = cast<StoreSDNode>(StoreNodes[i].MemNode);
8291     LoadSDNode *Ld = dyn_cast<LoadSDNode>(St->getValue());
8292     if (!Ld) break;
8293
8294     // Loads must only have one use.
8295     if (!Ld->hasNUsesOfValue(1, 0))
8296       break;
8297
8298     // Check that the alignment is the same as the stores.
8299     if (Ld->getAlignment() != St->getAlignment())
8300       break;
8301
8302     // The memory operands must not be volatile.
8303     if (Ld->isVolatile() || Ld->isIndexed())
8304       break;
8305
8306     // We do not accept ext loads.
8307     if (Ld->getExtensionType() != ISD::NON_EXTLOAD)
8308       break;
8309
8310     // The stored memory type must be the same.
8311     if (Ld->getMemoryVT() != MemVT)
8312       break;
8313
8314     BaseIndexOffset LdPtr = BaseIndexOffset::match(Ld->getBasePtr());
8315     // If this is not the first ptr that we check.
8316     if (LdBasePtr.Base.getNode()) {
8317       // The base ptr must be the same.
8318       if (!LdPtr.equalBaseIndex(LdBasePtr))
8319         break;
8320     } else {
8321       // Check that all other base pointers are the same as this one.
8322       LdBasePtr = LdPtr;
8323     }
8324
8325     // We found a potential memory operand to merge.
8326     LoadNodes.push_back(MemOpLink(Ld, LdPtr.Offset, 0));
8327   }
8328
8329   if (LoadNodes.size() < 2)
8330     return false;
8331
8332   // Scan the memory operations on the chain and find the first non-consecutive
8333   // load memory address. These variables hold the index in the store node
8334   // array.
8335   unsigned LastConsecutiveLoad = 0;
8336   // This variable refers to the size and not index in the array.
8337   unsigned LastLegalVectorType = 0;
8338   unsigned LastLegalIntegerType = 0;
8339   StartAddress = LoadNodes[0].OffsetFromBase;
8340   SDValue FirstChain = LoadNodes[0].MemNode->getChain();
8341   for (unsigned i = 1; i < LoadNodes.size(); ++i) {
8342     // All loads much share the same chain.
8343     if (LoadNodes[i].MemNode->getChain() != FirstChain)
8344       break;
8345
8346     int64_t CurrAddress = LoadNodes[i].OffsetFromBase;
8347     if (CurrAddress - StartAddress != (ElementSizeBytes * i))
8348       break;
8349     LastConsecutiveLoad = i;
8350
8351     // Find a legal type for the vector store.
8352     EVT StoreTy = EVT::getVectorVT(*DAG.getContext(), MemVT, i+1);
8353     if (TLI.isTypeLegal(StoreTy))
8354       LastLegalVectorType = i + 1;
8355
8356     // Find a legal type for the integer store.
8357     unsigned StoreBW = (i+1) * ElementSizeBytes * 8;
8358     StoreTy = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8359     if (TLI.isTypeLegal(StoreTy))
8360       LastLegalIntegerType = i + 1;
8361     // Or check whether a truncstore and extload is legal.
8362     else if (TLI.getTypeAction(*DAG.getContext(), StoreTy) ==
8363              TargetLowering::TypePromoteInteger) {
8364       EVT LegalizedStoredValueTy =
8365         TLI.getTypeToTransformTo(*DAG.getContext(), StoreTy);
8366       if (TLI.isTruncStoreLegal(LegalizedStoredValueTy, StoreTy) &&
8367           TLI.isLoadExtLegal(ISD::ZEXTLOAD, StoreTy) &&
8368           TLI.isLoadExtLegal(ISD::SEXTLOAD, StoreTy) &&
8369           TLI.isLoadExtLegal(ISD::EXTLOAD, StoreTy))
8370         LastLegalIntegerType = i+1;
8371     }
8372   }
8373
8374   // Only use vector types if the vector type is larger than the integer type.
8375   // If they are the same, use integers.
8376   bool UseVectorTy = LastLegalVectorType > LastLegalIntegerType && !NoVectors;
8377   unsigned LastLegalType = std::max(LastLegalVectorType, LastLegalIntegerType);
8378
8379   // We add +1 here because the LastXXX variables refer to location while
8380   // the NumElem refers to array/index size.
8381   unsigned NumElem = std::min(LastConsecutiveStore, LastConsecutiveLoad) + 1;
8382   NumElem = std::min(LastLegalType, NumElem);
8383
8384   if (NumElem < 2)
8385     return false;
8386
8387   // The earliest Node in the DAG.
8388   unsigned EarliestNodeUsed = 0;
8389   LSBaseSDNode *EarliestOp = StoreNodes[EarliestNodeUsed].MemNode;
8390   for (unsigned i=1; i<NumElem; ++i) {
8391     // Find a chain for the new wide-store operand. Notice that some
8392     // of the store nodes that we found may not be selected for inclusion
8393     // in the wide store. The chain we use needs to be the chain of the
8394     // earliest store node which is *used* and replaced by the wide store.
8395     if (StoreNodes[i].SequenceNum > StoreNodes[EarliestNodeUsed].SequenceNum)
8396       EarliestNodeUsed = i;
8397   }
8398
8399   // Find if it is better to use vectors or integers to load and store
8400   // to memory.
8401   EVT JointMemOpVT;
8402   if (UseVectorTy) {
8403     JointMemOpVT = EVT::getVectorVT(*DAG.getContext(), MemVT, NumElem);
8404   } else {
8405     unsigned StoreBW = NumElem * ElementSizeBytes * 8;
8406     JointMemOpVT = EVT::getIntegerVT(*DAG.getContext(), StoreBW);
8407   }
8408
8409   SDLoc LoadDL(LoadNodes[0].MemNode);
8410   SDLoc StoreDL(StoreNodes[0].MemNode);
8411
8412   LoadSDNode *FirstLoad = cast<LoadSDNode>(LoadNodes[0].MemNode);
8413   SDValue NewLoad = DAG.getLoad(JointMemOpVT, LoadDL,
8414                                 FirstLoad->getChain(),
8415                                 FirstLoad->getBasePtr(),
8416                                 FirstLoad->getPointerInfo(),
8417                                 false, false, false,
8418                                 FirstLoad->getAlignment());
8419
8420   SDValue NewStore = DAG.getStore(EarliestOp->getChain(), StoreDL, NewLoad,
8421                                   FirstInChain->getBasePtr(),
8422                                   FirstInChain->getPointerInfo(), false, false,
8423                                   FirstInChain->getAlignment());
8424
8425   // Replace one of the loads with the new load.
8426   LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[0].MemNode);
8427   DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1),
8428                                 SDValue(NewLoad.getNode(), 1));
8429
8430   // Remove the rest of the load chains.
8431   for (unsigned i = 1; i < NumElem ; ++i) {
8432     // Replace all chain users of the old load nodes with the chain of the new
8433     // load node.
8434     LoadSDNode *Ld = cast<LoadSDNode>(LoadNodes[i].MemNode);
8435     DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), Ld->getChain());
8436   }
8437
8438   // Replace the first store with the new store.
8439   CombineTo(EarliestOp, NewStore);
8440   // Erase all other stores.
8441   for (unsigned i = 0; i < NumElem ; ++i) {
8442     // Remove all Store nodes.
8443     if (StoreNodes[i].MemNode == EarliestOp)
8444       continue;
8445     StoreSDNode *St = cast<StoreSDNode>(StoreNodes[i].MemNode);
8446     DAG.ReplaceAllUsesOfValueWith(SDValue(St, 0), St->getChain());
8447     removeFromWorkList(St);
8448     DAG.DeleteNode(St);
8449   }
8450
8451   return true;
8452 }
8453
8454 SDValue DAGCombiner::visitSTORE(SDNode *N) {
8455   StoreSDNode *ST  = cast<StoreSDNode>(N);
8456   SDValue Chain = ST->getChain();
8457   SDValue Value = ST->getValue();
8458   SDValue Ptr   = ST->getBasePtr();
8459
8460   // If this is a store of a bit convert, store the input value if the
8461   // resultant store does not need a higher alignment than the original.
8462   if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
8463       ST->isUnindexed()) {
8464     unsigned OrigAlign = ST->getAlignment();
8465     EVT SVT = Value.getOperand(0).getValueType();
8466     unsigned Align = TLI.getDataLayout()->
8467       getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
8468     if (Align <= OrigAlign &&
8469         ((!LegalOperations && !ST->isVolatile()) ||
8470          TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
8471       return DAG.getStore(Chain, SDLoc(N), Value.getOperand(0),
8472                           Ptr, ST->getPointerInfo(), ST->isVolatile(),
8473                           ST->isNonTemporal(), OrigAlign);
8474   }
8475
8476   // Turn 'store undef, Ptr' -> nothing.
8477   if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
8478     return Chain;
8479
8480   // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
8481   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
8482     // NOTE: If the original store is volatile, this transform must not increase
8483     // the number of stores.  For example, on x86-32 an f64 can be stored in one
8484     // processor operation but an i64 (which is not legal) requires two.  So the
8485     // transform should not be done in this case.
8486     if (Value.getOpcode() != ISD::TargetConstantFP) {
8487       SDValue Tmp;
8488       switch (CFP->getSimpleValueType(0).SimpleTy) {
8489       default: llvm_unreachable("Unknown FP type");
8490       case MVT::f16:    // We don't do this for these yet.
8491       case MVT::f80:
8492       case MVT::f128:
8493       case MVT::ppcf128:
8494         break;
8495       case MVT::f32:
8496         if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
8497             TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
8498           Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
8499                               bitcastToAPInt().getZExtValue(), MVT::i32);
8500           return DAG.getStore(Chain, SDLoc(N), Tmp,
8501                               Ptr, ST->getPointerInfo(), ST->isVolatile(),
8502                               ST->isNonTemporal(), ST->getAlignment());
8503         }
8504         break;
8505       case MVT::f64:
8506         if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
8507              !ST->isVolatile()) ||
8508             TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
8509           Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
8510                                 getZExtValue(), MVT::i64);
8511           return DAG.getStore(Chain, SDLoc(N), Tmp,
8512                               Ptr, ST->getPointerInfo(), ST->isVolatile(),
8513                               ST->isNonTemporal(), ST->getAlignment());
8514         }
8515
8516         if (!ST->isVolatile() &&
8517             TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
8518           // Many FP stores are not made apparent until after legalize, e.g. for
8519           // argument passing.  Since this is so common, custom legalize the
8520           // 64-bit integer store into two 32-bit stores.
8521           uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
8522           SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
8523           SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
8524           if (TLI.isBigEndian()) std::swap(Lo, Hi);
8525
8526           unsigned Alignment = ST->getAlignment();
8527           bool isVolatile = ST->isVolatile();
8528           bool isNonTemporal = ST->isNonTemporal();
8529
8530           SDValue St0 = DAG.getStore(Chain, SDLoc(ST), Lo,
8531                                      Ptr, ST->getPointerInfo(),
8532                                      isVolatile, isNonTemporal,
8533                                      ST->getAlignment());
8534           Ptr = DAG.getNode(ISD::ADD, SDLoc(N), Ptr.getValueType(), Ptr,
8535                             DAG.getConstant(4, Ptr.getValueType()));
8536           Alignment = MinAlign(Alignment, 4U);
8537           SDValue St1 = DAG.getStore(Chain, SDLoc(ST), Hi,
8538                                      Ptr, ST->getPointerInfo().getWithOffset(4),
8539                                      isVolatile, isNonTemporal,
8540                                      Alignment);
8541           return DAG.getNode(ISD::TokenFactor, SDLoc(N), MVT::Other,
8542                              St0, St1);
8543         }
8544
8545         break;
8546       }
8547     }
8548   }
8549
8550   // Try to infer better alignment information than the store already has.
8551   if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
8552     if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
8553       if (Align > ST->getAlignment())
8554         return DAG.getTruncStore(Chain, SDLoc(N), Value,
8555                                  Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
8556                                  ST->isVolatile(), ST->isNonTemporal(), Align);
8557     }
8558   }
8559
8560   // Try transforming a pair floating point load / store ops to integer
8561   // load / store ops.
8562   SDValue NewST = TransformFPLoadStorePair(N);
8563   if (NewST.getNode())
8564     return NewST;
8565
8566   bool UseAA = CombinerAA.getNumOccurrences() > 0 ? CombinerAA :
8567     TLI.getTargetMachine().getSubtarget<TargetSubtargetInfo>().useAA();
8568   if (UseAA) {
8569     // Walk up chain skipping non-aliasing memory nodes.
8570     SDValue BetterChain = FindBetterChain(N, Chain);
8571
8572     // If there is a better chain.
8573     if (Chain != BetterChain) {
8574       SDValue ReplStore;
8575
8576       // Replace the chain to avoid dependency.
8577       if (ST->isTruncatingStore()) {
8578         ReplStore = DAG.getTruncStore(BetterChain, SDLoc(N), Value, Ptr,
8579                                       ST->getPointerInfo(),
8580                                       ST->getMemoryVT(), ST->isVolatile(),
8581                                       ST->isNonTemporal(), ST->getAlignment());
8582       } else {
8583         ReplStore = DAG.getStore(BetterChain, SDLoc(N), Value, Ptr,
8584                                  ST->getPointerInfo(),
8585                                  ST->isVolatile(), ST->isNonTemporal(),
8586                                  ST->getAlignment());
8587       }
8588
8589       // Create token to keep both nodes around.
8590       SDValue Token = DAG.getNode(ISD::TokenFactor, SDLoc(N),
8591                                   MVT::Other, Chain, ReplStore);
8592
8593       // Make sure the new and old chains are cleaned up.
8594       AddToWorkList(Token.getNode());
8595
8596       // Don't add users to work list.
8597       return CombineTo(N, Token, false);
8598     }
8599   }
8600
8601   // Try transforming N to an indexed store.
8602   if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
8603     return SDValue(N, 0);
8604
8605   // FIXME: is there such a thing as a truncating indexed store?
8606   if (ST->isTruncatingStore() && ST->isUnindexed() &&
8607       Value.getValueType().isInteger()) {
8608     // See if we can simplify the input to this truncstore with knowledge that
8609     // only the low bits are being used.  For example:
8610     // "truncstore (or (shl x, 8), y), i8"  -> "truncstore y, i8"
8611     SDValue Shorter =
8612       GetDemandedBits(Value,
8613                       APInt::getLowBitsSet(
8614                         Value.getValueType().getScalarType().getSizeInBits(),
8615                         ST->getMemoryVT().getScalarType().getSizeInBits()));
8616     AddToWorkList(Value.getNode());
8617     if (Shorter.getNode())
8618       return DAG.getTruncStore(Chain, SDLoc(N), Shorter,
8619                                Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
8620                                ST->isVolatile(), ST->isNonTemporal(),
8621                                ST->getAlignment());
8622
8623     // Otherwise, see if we can simplify the operation with
8624     // SimplifyDemandedBits, which only works if the value has a single use.
8625     if (SimplifyDemandedBits(Value,
8626                         APInt::getLowBitsSet(
8627                           Value.getValueType().getScalarType().getSizeInBits(),
8628                           ST->getMemoryVT().getScalarType().getSizeInBits())))
8629       return SDValue(N, 0);
8630   }
8631
8632   // If this is a load followed by a store to the same location, then the store
8633   // is dead/noop.
8634   if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
8635     if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
8636         ST->isUnindexed() && !ST->isVolatile() &&
8637         // There can't be any side effects between the load and store, such as
8638         // a call or store.
8639         Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
8640       // The store is dead, remove it.
8641       return Chain;
8642     }
8643   }
8644
8645   // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
8646   // truncating store.  We can do this even if this is already a truncstore.
8647   if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
8648       && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
8649       TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
8650                             ST->getMemoryVT())) {
8651     return DAG.getTruncStore(Chain, SDLoc(N), Value.getOperand(0),
8652                              Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
8653                              ST->isVolatile(), ST->isNonTemporal(),
8654                              ST->getAlignment());
8655   }
8656
8657   // Only perform this optimization before the types are legal, because we
8658   // don't want to perform this optimization on every DAGCombine invocation.
8659   if (!LegalTypes) {
8660     bool EverChanged = false;
8661
8662     do {
8663       // There can be multiple store sequences on the same chain.
8664       // Keep trying to merge store sequences until we are unable to do so
8665       // or until we merge the last store on the chain.
8666       bool Changed = MergeConsecutiveStores(ST);
8667       EverChanged |= Changed;
8668       if (!Changed) break;
8669     } while (ST->getOpcode() != ISD::DELETED_NODE);
8670
8671     if (EverChanged)
8672       return SDValue(N, 0);
8673   }
8674
8675   return ReduceLoadOpStoreWidth(N);
8676 }
8677
8678 SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
8679   SDValue InVec = N->getOperand(0);
8680   SDValue InVal = N->getOperand(1);
8681   SDValue EltNo = N->getOperand(2);
8682   SDLoc dl(N);
8683
8684   // If the inserted element is an UNDEF, just use the input vector.
8685   if (InVal.getOpcode() == ISD::UNDEF)
8686     return InVec;
8687
8688   EVT VT = InVec.getValueType();
8689
8690   // If we can't generate a legal BUILD_VECTOR, exit
8691   if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
8692     return SDValue();
8693
8694   // Check that we know which element is being inserted
8695   if (!isa<ConstantSDNode>(EltNo))
8696     return SDValue();
8697   unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
8698
8699   // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
8700   // be converted to a BUILD_VECTOR).  Fill in the Ops vector with the
8701   // vector elements.
8702   SmallVector<SDValue, 8> Ops;
8703   // Do not combine these two vectors if the output vector will not replace
8704   // the input vector.
8705   if (InVec.getOpcode() == ISD::BUILD_VECTOR && InVec.hasOneUse()) {
8706     Ops.append(InVec.getNode()->op_begin(),
8707                InVec.getNode()->op_end());
8708   } else if (InVec.getOpcode() == ISD::UNDEF) {
8709     unsigned NElts = VT.getVectorNumElements();
8710     Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
8711   } else {
8712     return SDValue();
8713   }
8714
8715   // Insert the element
8716   if (Elt < Ops.size()) {
8717     // All the operands of BUILD_VECTOR must have the same type;
8718     // we enforce that here.
8719     EVT OpVT = Ops[0].getValueType();
8720     if (InVal.getValueType() != OpVT)
8721       InVal = OpVT.bitsGT(InVal.getValueType()) ?
8722                 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
8723                 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
8724     Ops[Elt] = InVal;
8725   }
8726
8727   // Return the new vector
8728   return DAG.getNode(ISD::BUILD_VECTOR, dl,
8729                      VT, &Ops[0], Ops.size());
8730 }
8731
8732 SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
8733   // (vextract (scalar_to_vector val, 0) -> val
8734   SDValue InVec = N->getOperand(0);
8735   EVT VT = InVec.getValueType();
8736   EVT NVT = N->getValueType(0);
8737
8738   if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
8739     // Check if the result type doesn't match the inserted element type. A
8740     // SCALAR_TO_VECTOR may truncate the inserted element and the
8741     // EXTRACT_VECTOR_ELT may widen the extracted vector.
8742     SDValue InOp = InVec.getOperand(0);
8743     if (InOp.getValueType() != NVT) {
8744       assert(InOp.getValueType().isInteger() && NVT.isInteger());
8745       return DAG.getSExtOrTrunc(InOp, SDLoc(InVec), NVT);
8746     }
8747     return InOp;
8748   }
8749
8750   SDValue EltNo = N->getOperand(1);
8751   bool ConstEltNo = isa<ConstantSDNode>(EltNo);
8752
8753   // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
8754   // We only perform this optimization before the op legalization phase because
8755   // we may introduce new vector instructions which are not backed by TD
8756   // patterns. For example on AVX, extracting elements from a wide vector
8757   // without using extract_subvector.
8758   if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
8759       && ConstEltNo && !LegalOperations) {
8760     int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
8761     int NumElem = VT.getVectorNumElements();
8762     ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
8763     // Find the new index to extract from.
8764     int OrigElt = SVOp->getMaskElt(Elt);
8765
8766     // Extracting an undef index is undef.
8767     if (OrigElt == -1)
8768       return DAG.getUNDEF(NVT);
8769
8770     // Select the right vector half to extract from.
8771     if (OrigElt < NumElem) {
8772       InVec = InVec->getOperand(0);
8773     } else {
8774       InVec = InVec->getOperand(1);
8775       OrigElt -= NumElem;
8776     }
8777
8778     EVT IndexTy = TLI.getVectorIdxTy();
8779     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, SDLoc(N), NVT,
8780                        InVec, DAG.getConstant(OrigElt, IndexTy));
8781   }
8782
8783   // Perform only after legalization to ensure build_vector / vector_shuffle
8784   // optimizations have already been done.
8785   if (!LegalOperations) return SDValue();
8786
8787   // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
8788   // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
8789   // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
8790
8791   if (ConstEltNo) {
8792     int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
8793     bool NewLoad = false;
8794     bool BCNumEltsChanged = false;
8795     EVT ExtVT = VT.getVectorElementType();
8796     EVT LVT = ExtVT;
8797
8798     // If the result of load has to be truncated, then it's not necessarily
8799     // profitable.
8800     if (NVT.bitsLT(LVT) && !TLI.isTruncateFree(LVT, NVT))
8801       return SDValue();
8802
8803     if (InVec.getOpcode() == ISD::BITCAST) {
8804       // Don't duplicate a load with other uses.
8805       if (!InVec.hasOneUse())
8806         return SDValue();
8807
8808       EVT BCVT = InVec.getOperand(0).getValueType();
8809       if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
8810         return SDValue();
8811       if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
8812         BCNumEltsChanged = true;
8813       InVec = InVec.getOperand(0);
8814       ExtVT = BCVT.getVectorElementType();
8815       NewLoad = true;
8816     }
8817
8818     LoadSDNode *LN0 = NULL;
8819     const ShuffleVectorSDNode *SVN = NULL;
8820     if (ISD::isNormalLoad(InVec.getNode())) {
8821       LN0 = cast<LoadSDNode>(InVec);
8822     } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
8823                InVec.getOperand(0).getValueType() == ExtVT &&
8824                ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
8825       // Don't duplicate a load with other uses.
8826       if (!InVec.hasOneUse())
8827         return SDValue();
8828
8829       LN0 = cast<LoadSDNode>(InVec.getOperand(0));
8830     } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
8831       // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
8832       // =>
8833       // (load $addr+1*size)
8834
8835       // Don't duplicate a load with other uses.
8836       if (!InVec.hasOneUse())
8837         return SDValue();
8838
8839       // If the bit convert changed the number of elements, it is unsafe
8840       // to examine the mask.
8841       if (BCNumEltsChanged)
8842         return SDValue();
8843
8844       // Select the input vector, guarding against out of range extract vector.
8845       unsigned NumElems = VT.getVectorNumElements();
8846       int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
8847       InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
8848
8849       if (InVec.getOpcode() == ISD::BITCAST) {
8850         // Don't duplicate a load with other uses.
8851         if (!InVec.hasOneUse())
8852           return SDValue();
8853
8854         InVec = InVec.getOperand(0);
8855       }
8856       if (ISD::isNormalLoad(InVec.getNode())) {
8857         LN0 = cast<LoadSDNode>(InVec);
8858         Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
8859       }
8860     }
8861
8862     // Make sure we found a non-volatile load and the extractelement is
8863     // the only use.
8864     if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
8865       return SDValue();
8866
8867     // If Idx was -1 above, Elt is going to be -1, so just return undef.
8868     if (Elt == -1)
8869       return DAG.getUNDEF(LVT);
8870
8871     unsigned Align = LN0->getAlignment();
8872     if (NewLoad) {
8873       // Check the resultant load doesn't need a higher alignment than the
8874       // original load.
8875       unsigned NewAlign =
8876         TLI.getDataLayout()
8877             ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
8878
8879       if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
8880         return SDValue();
8881
8882       Align = NewAlign;
8883     }
8884
8885     SDValue NewPtr = LN0->getBasePtr();
8886     unsigned PtrOff = 0;
8887
8888     if (Elt) {
8889       PtrOff = LVT.getSizeInBits() * Elt / 8;
8890       EVT PtrType = NewPtr.getValueType();
8891       if (TLI.isBigEndian())
8892         PtrOff = VT.getSizeInBits() / 8 - PtrOff;
8893       NewPtr = DAG.getNode(ISD::ADD, SDLoc(N), PtrType, NewPtr,
8894                            DAG.getConstant(PtrOff, PtrType));
8895     }
8896
8897     // The replacement we need to do here is a little tricky: we need to
8898     // replace an extractelement of a load with a load.
8899     // Use ReplaceAllUsesOfValuesWith to do the replacement.
8900     // Note that this replacement assumes that the extractvalue is the only
8901     // use of the load; that's okay because we don't want to perform this
8902     // transformation in other cases anyway.
8903     SDValue Load;
8904     SDValue Chain;
8905     if (NVT.bitsGT(LVT)) {
8906       // If the result type of vextract is wider than the load, then issue an
8907       // extending load instead.
8908       ISD::LoadExtType ExtType = TLI.isLoadExtLegal(ISD::ZEXTLOAD, LVT)
8909         ? ISD::ZEXTLOAD : ISD::EXTLOAD;
8910       Load = DAG.getExtLoad(ExtType, SDLoc(N), NVT, LN0->getChain(),
8911                             NewPtr, LN0->getPointerInfo().getWithOffset(PtrOff),
8912                             LVT, LN0->isVolatile(), LN0->isNonTemporal(),Align);
8913       Chain = Load.getValue(1);
8914     } else {
8915       Load = DAG.getLoad(LVT, SDLoc(N), LN0->getChain(), NewPtr,
8916                          LN0->getPointerInfo().getWithOffset(PtrOff),
8917                          LN0->isVolatile(), LN0->isNonTemporal(),
8918                          LN0->isInvariant(), Align);
8919       Chain = Load.getValue(1);
8920       if (NVT.bitsLT(LVT))
8921         Load = DAG.getNode(ISD::TRUNCATE, SDLoc(N), NVT, Load);
8922       else
8923         Load = DAG.getNode(ISD::BITCAST, SDLoc(N), NVT, Load);
8924     }
8925     WorkListRemover DeadNodes(*this);
8926     SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
8927     SDValue To[] = { Load, Chain };
8928     DAG.ReplaceAllUsesOfValuesWith(From, To, 2);
8929     // Since we're explcitly calling ReplaceAllUses, add the new node to the
8930     // worklist explicitly as well.
8931     AddToWorkList(Load.getNode());
8932     AddUsersToWorkList(Load.getNode()); // Add users too
8933     // Make sure to revisit this node to clean it up; it will usually be dead.
8934     AddToWorkList(N);
8935     return SDValue(N, 0);
8936   }
8937
8938   return SDValue();
8939 }
8940
8941 // Simplify (build_vec (ext )) to (bitcast (build_vec ))
8942 SDValue DAGCombiner::reduceBuildVecExtToExtBuildVec(SDNode *N) {
8943   // We perform this optimization post type-legalization because
8944   // the type-legalizer often scalarizes integer-promoted vectors.
8945   // Performing this optimization before may create bit-casts which
8946   // will be type-legalized to complex code sequences.
8947   // We perform this optimization only before the operation legalizer because we
8948   // may introduce illegal operations.
8949   if (Level != AfterLegalizeVectorOps && Level != AfterLegalizeTypes)
8950     return SDValue();
8951
8952   unsigned NumInScalars = N->getNumOperands();
8953   SDLoc dl(N);
8954   EVT VT = N->getValueType(0);
8955
8956   // Check to see if this is a BUILD_VECTOR of a bunch of values
8957   // which come from any_extend or zero_extend nodes. If so, we can create
8958   // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
8959   // optimizations. We do not handle sign-extend because we can't fill the sign
8960   // using shuffles.
8961   EVT SourceType = MVT::Other;
8962   bool AllAnyExt = true;
8963
8964   for (unsigned i = 0; i != NumInScalars; ++i) {
8965     SDValue In = N->getOperand(i);
8966     // Ignore undef inputs.
8967     if (In.getOpcode() == ISD::UNDEF) continue;
8968
8969     bool AnyExt  = In.getOpcode() == ISD::ANY_EXTEND;
8970     bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
8971
8972     // Abort if the element is not an extension.
8973     if (!ZeroExt && !AnyExt) {
8974       SourceType = MVT::Other;
8975       break;
8976     }
8977
8978     // The input is a ZeroExt or AnyExt. Check the original type.
8979     EVT InTy = In.getOperand(0).getValueType();
8980
8981     // Check that all of the widened source types are the same.
8982     if (SourceType == MVT::Other)
8983       // First time.
8984       SourceType = InTy;
8985     else if (InTy != SourceType) {
8986       // Multiple income types. Abort.
8987       SourceType = MVT::Other;
8988       break;
8989     }
8990
8991     // Check if all of the extends are ANY_EXTENDs.
8992     AllAnyExt &= AnyExt;
8993   }
8994
8995   // In order to have valid types, all of the inputs must be extended from the
8996   // same source type and all of the inputs must be any or zero extend.
8997   // Scalar sizes must be a power of two.
8998   EVT OutScalarTy = VT.getScalarType();
8999   bool ValidTypes = SourceType != MVT::Other &&
9000                  isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
9001                  isPowerOf2_32(SourceType.getSizeInBits());
9002
9003   // Create a new simpler BUILD_VECTOR sequence which other optimizations can
9004   // turn into a single shuffle instruction.
9005   if (!ValidTypes)
9006     return SDValue();
9007
9008   bool isLE = TLI.isLittleEndian();
9009   unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
9010   assert(ElemRatio > 1 && "Invalid element size ratio");
9011   SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
9012                                DAG.getConstant(0, SourceType);
9013
9014   unsigned NewBVElems = ElemRatio * VT.getVectorNumElements();
9015   SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
9016
9017   // Populate the new build_vector
9018   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
9019     SDValue Cast = N->getOperand(i);
9020     assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
9021             Cast.getOpcode() == ISD::ZERO_EXTEND ||
9022             Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
9023     SDValue In;
9024     if (Cast.getOpcode() == ISD::UNDEF)
9025       In = DAG.getUNDEF(SourceType);
9026     else
9027       In = Cast->getOperand(0);
9028     unsigned Index = isLE ? (i * ElemRatio) :
9029                             (i * ElemRatio + (ElemRatio - 1));
9030
9031     assert(Index < Ops.size() && "Invalid index");
9032     Ops[Index] = In;
9033   }
9034
9035   // The type of the new BUILD_VECTOR node.
9036   EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
9037   assert(VecVT.getSizeInBits() == VT.getSizeInBits() &&
9038          "Invalid vector size");
9039   // Check if the new vector type is legal.
9040   if (!isTypeLegal(VecVT)) return SDValue();
9041
9042   // Make the new BUILD_VECTOR.
9043   SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, VecVT, &Ops[0], Ops.size());
9044
9045   // The new BUILD_VECTOR node has the potential to be further optimized.
9046   AddToWorkList(BV.getNode());
9047   // Bitcast to the desired type.
9048   return DAG.getNode(ISD::BITCAST, dl, VT, BV);
9049 }
9050
9051 SDValue DAGCombiner::reduceBuildVecConvertToConvertBuildVec(SDNode *N) {
9052   EVT VT = N->getValueType(0);
9053
9054   unsigned NumInScalars = N->getNumOperands();
9055   SDLoc dl(N);
9056
9057   EVT SrcVT = MVT::Other;
9058   unsigned Opcode = ISD::DELETED_NODE;
9059   unsigned NumDefs = 0;
9060
9061   for (unsigned i = 0; i != NumInScalars; ++i) {
9062     SDValue In = N->getOperand(i);
9063     unsigned Opc = In.getOpcode();
9064
9065     if (Opc == ISD::UNDEF)
9066       continue;
9067
9068     // If all scalar values are floats and converted from integers.
9069     if (Opcode == ISD::DELETED_NODE &&
9070         (Opc == ISD::UINT_TO_FP || Opc == ISD::SINT_TO_FP)) {
9071       Opcode = Opc;
9072     }
9073
9074     if (Opc != Opcode)
9075       return SDValue();
9076
9077     EVT InVT = In.getOperand(0).getValueType();
9078
9079     // If all scalar values are typed differently, bail out. It's chosen to
9080     // simplify BUILD_VECTOR of integer types.
9081     if (SrcVT == MVT::Other)
9082       SrcVT = InVT;
9083     if (SrcVT != InVT)
9084       return SDValue();
9085     NumDefs++;
9086   }
9087
9088   // If the vector has just one element defined, it's not worth to fold it into
9089   // a vectorized one.
9090   if (NumDefs < 2)
9091     return SDValue();
9092
9093   assert((Opcode == ISD::UINT_TO_FP || Opcode == ISD::SINT_TO_FP)
9094          && "Should only handle conversion from integer to float.");
9095   assert(SrcVT != MVT::Other && "Cannot determine source type!");
9096
9097   EVT NVT = EVT::getVectorVT(*DAG.getContext(), SrcVT, NumInScalars);
9098
9099   if (!TLI.isOperationLegalOrCustom(Opcode, NVT))
9100     return SDValue();
9101
9102   SmallVector<SDValue, 8> Opnds;
9103   for (unsigned i = 0; i != NumInScalars; ++i) {
9104     SDValue In = N->getOperand(i);
9105
9106     if (In.getOpcode() == ISD::UNDEF)
9107       Opnds.push_back(DAG.getUNDEF(SrcVT));
9108     else
9109       Opnds.push_back(In.getOperand(0));
9110   }
9111   SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT,
9112                            &Opnds[0], Opnds.size());
9113   AddToWorkList(BV.getNode());
9114
9115   return DAG.getNode(Opcode, dl, VT, BV);
9116 }
9117
9118 SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
9119   unsigned NumInScalars = N->getNumOperands();
9120   SDLoc dl(N);
9121   EVT VT = N->getValueType(0);
9122
9123   // A vector built entirely of undefs is undef.
9124   if (ISD::allOperandsUndef(N))
9125     return DAG.getUNDEF(VT);
9126
9127   SDValue V = reduceBuildVecExtToExtBuildVec(N);
9128   if (V.getNode())
9129     return V;
9130
9131   V = reduceBuildVecConvertToConvertBuildVec(N);
9132   if (V.getNode())
9133     return V;
9134
9135   // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
9136   // operations.  If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
9137   // at most two distinct vectors, turn this into a shuffle node.
9138
9139   // May only combine to shuffle after legalize if shuffle is legal.
9140   if (LegalOperations &&
9141       !TLI.isOperationLegalOrCustom(ISD::VECTOR_SHUFFLE, VT))
9142     return SDValue();
9143
9144   SDValue VecIn1, VecIn2;
9145   for (unsigned i = 0; i != NumInScalars; ++i) {
9146     // Ignore undef inputs.
9147     if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
9148
9149     // If this input is something other than a EXTRACT_VECTOR_ELT with a
9150     // constant index, bail out.
9151     if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
9152         !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
9153       VecIn1 = VecIn2 = SDValue(0, 0);
9154       break;
9155     }
9156
9157     // We allow up to two distinct input vectors.
9158     SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
9159     if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
9160       continue;
9161
9162     if (VecIn1.getNode() == 0) {
9163       VecIn1 = ExtractedFromVec;
9164     } else if (VecIn2.getNode() == 0) {
9165       VecIn2 = ExtractedFromVec;
9166     } else {
9167       // Too many inputs.
9168       VecIn1 = VecIn2 = SDValue(0, 0);
9169       break;
9170     }
9171   }
9172
9173     // If everything is good, we can make a shuffle operation.
9174   if (VecIn1.getNode()) {
9175     SmallVector<int, 8> Mask;
9176     for (unsigned i = 0; i != NumInScalars; ++i) {
9177       if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
9178         Mask.push_back(-1);
9179         continue;
9180       }
9181
9182       // If extracting from the first vector, just use the index directly.
9183       SDValue Extract = N->getOperand(i);
9184       SDValue ExtVal = Extract.getOperand(1);
9185       if (Extract.getOperand(0) == VecIn1) {
9186         unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
9187         if (ExtIndex > VT.getVectorNumElements())
9188           return SDValue();
9189
9190         Mask.push_back(ExtIndex);
9191         continue;
9192       }
9193
9194       // Otherwise, use InIdx + VecSize
9195       unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
9196       Mask.push_back(Idx+NumInScalars);
9197     }
9198
9199     // We can't generate a shuffle node with mismatched input and output types.
9200     // Attempt to transform a single input vector to the correct type.
9201     if ((VT != VecIn1.getValueType())) {
9202       // We don't support shuffeling between TWO values of different types.
9203       if (VecIn2.getNode() != 0)
9204         return SDValue();
9205
9206       // We only support widening of vectors which are half the size of the
9207       // output registers. For example XMM->YMM widening on X86 with AVX.
9208       if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
9209         return SDValue();
9210
9211       // If the input vector type has a different base type to the output
9212       // vector type, bail out.
9213       if (VecIn1.getValueType().getVectorElementType() !=
9214           VT.getVectorElementType())
9215         return SDValue();
9216
9217       // Widen the input vector by adding undef values.
9218       VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9219                            VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
9220     }
9221
9222     // If VecIn2 is unused then change it to undef.
9223     VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
9224
9225     // Check that we were able to transform all incoming values to the same
9226     // type.
9227     if (VecIn2.getValueType() != VecIn1.getValueType() ||
9228         VecIn1.getValueType() != VT)
9229           return SDValue();
9230
9231     // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
9232     if (!isTypeLegal(VT))
9233       return SDValue();
9234
9235     // Return the new VECTOR_SHUFFLE node.
9236     SDValue Ops[2];
9237     Ops[0] = VecIn1;
9238     Ops[1] = VecIn2;
9239     return DAG.getVectorShuffle(VT, dl, Ops[0], Ops[1], &Mask[0]);
9240   }
9241
9242   return SDValue();
9243 }
9244
9245 SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
9246   // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
9247   // EXTRACT_SUBVECTOR operations.  If so, and if the EXTRACT_SUBVECTOR vector
9248   // inputs come from at most two distinct vectors, turn this into a shuffle
9249   // node.
9250
9251   // If we only have one input vector, we don't need to do any concatenation.
9252   if (N->getNumOperands() == 1)
9253     return N->getOperand(0);
9254
9255   // Check if all of the operands are undefs.
9256   if (ISD::allOperandsUndef(N))
9257     return DAG.getUNDEF(N->getValueType(0));
9258
9259   // Type legalization of vectors and DAG canonicalization of SHUFFLE_VECTOR
9260   // nodes often generate nop CONCAT_VECTOR nodes.
9261   // Scan the CONCAT_VECTOR operands and look for a CONCAT operations that
9262   // place the incoming vectors at the exact same location.
9263   SDValue SingleSource = SDValue();
9264   unsigned PartNumElem = N->getOperand(0).getValueType().getVectorNumElements();
9265
9266   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
9267     SDValue Op = N->getOperand(i);
9268
9269     if (Op.getOpcode() == ISD::UNDEF)
9270       continue;
9271
9272     // Check if this is the identity extract:
9273     if (Op.getOpcode() != ISD::EXTRACT_SUBVECTOR)
9274       return SDValue();
9275
9276     // Find the single incoming vector for the extract_subvector.
9277     if (SingleSource.getNode()) {
9278       if (Op.getOperand(0) != SingleSource)
9279         return SDValue();
9280     } else {
9281       SingleSource = Op.getOperand(0);
9282
9283       // Check the source type is the same as the type of the result.
9284       // If not, this concat may extend the vector, so we can not
9285       // optimize it away.
9286       if (SingleSource.getValueType() != N->getValueType(0))
9287         return SDValue();
9288     }
9289
9290     unsigned IdentityIndex = i * PartNumElem;
9291     ConstantSDNode *CS = dyn_cast<ConstantSDNode>(Op.getOperand(1));
9292     // The extract index must be constant.
9293     if (!CS)
9294       return SDValue();
9295
9296     // Check that we are reading from the identity index.
9297     if (CS->getZExtValue() != IdentityIndex)
9298       return SDValue();
9299   }
9300
9301   if (SingleSource.getNode())
9302     return SingleSource;
9303
9304   return SDValue();
9305 }
9306
9307 SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
9308   EVT NVT = N->getValueType(0);
9309   SDValue V = N->getOperand(0);
9310
9311   if (V->getOpcode() == ISD::CONCAT_VECTORS) {
9312     // Combine:
9313     //    (extract_subvec (concat V1, V2, ...), i)
9314     // Into:
9315     //    Vi if possible
9316     // Only operand 0 is checked as 'concat' assumes all inputs of the same type.
9317     if (V->getOperand(0).getValueType() != NVT)
9318       return SDValue();
9319     unsigned Idx = dyn_cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
9320     unsigned NumElems = NVT.getVectorNumElements();
9321     assert((Idx % NumElems) == 0 &&
9322            "IDX in concat is not a multiple of the result vector length.");
9323     return V->getOperand(Idx / NumElems);
9324   }
9325
9326   // Skip bitcasting
9327   if (V->getOpcode() == ISD::BITCAST)
9328     V = V.getOperand(0);
9329
9330   if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
9331     SDLoc dl(N);
9332     // Handle only simple case where vector being inserted and vector
9333     // being extracted are of same type, and are half size of larger vectors.
9334     EVT BigVT = V->getOperand(0).getValueType();
9335     EVT SmallVT = V->getOperand(1).getValueType();
9336     if (!NVT.bitsEq(SmallVT) || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
9337       return SDValue();
9338
9339     // Only handle cases where both indexes are constants with the same type.
9340     ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
9341     ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
9342
9343     if (InsIdx && ExtIdx &&
9344         InsIdx->getValueType(0).getSizeInBits() <= 64 &&
9345         ExtIdx->getValueType(0).getSizeInBits() <= 64) {
9346       // Combine:
9347       //    (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
9348       // Into:
9349       //    indices are equal or bit offsets are equal => V1
9350       //    otherwise => (extract_subvec V1, ExtIdx)
9351       if (InsIdx->getZExtValue() * SmallVT.getScalarType().getSizeInBits() ==
9352           ExtIdx->getZExtValue() * NVT.getScalarType().getSizeInBits())
9353         return DAG.getNode(ISD::BITCAST, dl, NVT, V->getOperand(1));
9354       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NVT,
9355                          DAG.getNode(ISD::BITCAST, dl,
9356                                      N->getOperand(0).getValueType(),
9357                                      V->getOperand(0)), N->getOperand(1));
9358     }
9359   }
9360
9361   return SDValue();
9362 }
9363
9364 // Tries to turn a shuffle of two CONCAT_VECTORS into a single concat.
9365 static SDValue partitionShuffleOfConcats(SDNode *N, SelectionDAG &DAG) {
9366   EVT VT = N->getValueType(0);
9367   unsigned NumElts = VT.getVectorNumElements();
9368
9369   SDValue N0 = N->getOperand(0);
9370   SDValue N1 = N->getOperand(1);
9371   ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
9372
9373   SmallVector<SDValue, 4> Ops;
9374   EVT ConcatVT = N0.getOperand(0).getValueType();
9375   unsigned NumElemsPerConcat = ConcatVT.getVectorNumElements();
9376   unsigned NumConcats = NumElts / NumElemsPerConcat;
9377
9378   // Look at every vector that's inserted. We're looking for exact
9379   // subvector-sized copies from a concatenated vector
9380   for (unsigned I = 0; I != NumConcats; ++I) {
9381     // Make sure we're dealing with a copy.
9382     unsigned Begin = I * NumElemsPerConcat;
9383     bool AllUndef = true, NoUndef = true;
9384     for (unsigned J = Begin; J != Begin + NumElemsPerConcat; ++J) {
9385       if (SVN->getMaskElt(J) >= 0)
9386         AllUndef = false;
9387       else
9388         NoUndef = false;
9389     }
9390
9391     if (NoUndef) {
9392       if (SVN->getMaskElt(Begin) % NumElemsPerConcat != 0)
9393         return SDValue();
9394
9395       for (unsigned J = 1; J != NumElemsPerConcat; ++J)
9396         if (SVN->getMaskElt(Begin + J - 1) + 1 != SVN->getMaskElt(Begin + J))
9397           return SDValue();
9398
9399       unsigned FirstElt = SVN->getMaskElt(Begin) / NumElemsPerConcat;
9400       if (FirstElt < N0.getNumOperands())
9401         Ops.push_back(N0.getOperand(FirstElt));
9402       else
9403         Ops.push_back(N1.getOperand(FirstElt - N0.getNumOperands()));
9404
9405     } else if (AllUndef) {
9406       Ops.push_back(DAG.getUNDEF(N0.getOperand(0).getValueType()));
9407     } else { // Mixed with general masks and undefs, can't do optimization.
9408       return SDValue();
9409     }
9410   }
9411
9412   return DAG.getNode(ISD::CONCAT_VECTORS, SDLoc(N), VT, Ops.data(),
9413                      Ops.size());
9414 }
9415
9416 SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
9417   EVT VT = N->getValueType(0);
9418   unsigned NumElts = VT.getVectorNumElements();
9419
9420   SDValue N0 = N->getOperand(0);
9421   SDValue N1 = N->getOperand(1);
9422
9423   assert(N0.getValueType() == VT && "Vector shuffle must be normalized in DAG");
9424
9425   // Canonicalize shuffle undef, undef -> undef
9426   if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
9427     return DAG.getUNDEF(VT);
9428
9429   ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
9430
9431   // Canonicalize shuffle v, v -> v, undef
9432   if (N0 == N1) {
9433     SmallVector<int, 8> NewMask;
9434     for (unsigned i = 0; i != NumElts; ++i) {
9435       int Idx = SVN->getMaskElt(i);
9436       if (Idx >= (int)NumElts) Idx -= NumElts;
9437       NewMask.push_back(Idx);
9438     }
9439     return DAG.getVectorShuffle(VT, SDLoc(N), N0, DAG.getUNDEF(VT),
9440                                 &NewMask[0]);
9441   }
9442
9443   // Canonicalize shuffle undef, v -> v, undef.  Commute the shuffle mask.
9444   if (N0.getOpcode() == ISD::UNDEF) {
9445     SmallVector<int, 8> NewMask;
9446     for (unsigned i = 0; i != NumElts; ++i) {
9447       int Idx = SVN->getMaskElt(i);
9448       if (Idx >= 0) {
9449         if (Idx >= (int)NumElts)
9450           Idx -= NumElts;
9451         else
9452           Idx = -1; // remove reference to lhs
9453       }
9454       NewMask.push_back(Idx);
9455     }
9456     return DAG.getVectorShuffle(VT, SDLoc(N), N1, DAG.getUNDEF(VT),
9457                                 &NewMask[0]);
9458   }
9459
9460   // Remove references to rhs if it is undef
9461   if (N1.getOpcode() == ISD::UNDEF) {
9462     bool Changed = false;
9463     SmallVector<int, 8> NewMask;
9464     for (unsigned i = 0; i != NumElts; ++i) {
9465       int Idx = SVN->getMaskElt(i);
9466       if (Idx >= (int)NumElts) {
9467         Idx = -1;
9468         Changed = true;
9469       }
9470       NewMask.push_back(Idx);
9471     }
9472     if (Changed)
9473       return DAG.getVectorShuffle(VT, SDLoc(N), N0, N1, &NewMask[0]);
9474   }
9475
9476   // If it is a splat, check if the argument vector is another splat or a
9477   // build_vector with all scalar elements the same.
9478   if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
9479     SDNode *V = N0.getNode();
9480
9481     // If this is a bit convert that changes the element type of the vector but
9482     // not the number of vector elements, look through it.  Be careful not to
9483     // look though conversions that change things like v4f32 to v2f64.
9484     if (V->getOpcode() == ISD::BITCAST) {
9485       SDValue ConvInput = V->getOperand(0);
9486       if (ConvInput.getValueType().isVector() &&
9487           ConvInput.getValueType().getVectorNumElements() == NumElts)
9488         V = ConvInput.getNode();
9489     }
9490
9491     if (V->getOpcode() == ISD::BUILD_VECTOR) {
9492       assert(V->getNumOperands() == NumElts &&
9493              "BUILD_VECTOR has wrong number of operands");
9494       SDValue Base;
9495       bool AllSame = true;
9496       for (unsigned i = 0; i != NumElts; ++i) {
9497         if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
9498           Base = V->getOperand(i);
9499           break;
9500         }
9501       }
9502       // Splat of <u, u, u, u>, return <u, u, u, u>
9503       if (!Base.getNode())
9504         return N0;
9505       for (unsigned i = 0; i != NumElts; ++i) {
9506         if (V->getOperand(i) != Base) {
9507           AllSame = false;
9508           break;
9509         }
9510       }
9511       // Splat of <x, x, x, x>, return <x, x, x, x>
9512       if (AllSame)
9513         return N0;
9514     }
9515   }
9516
9517   if (N0.getOpcode() == ISD::CONCAT_VECTORS &&
9518       Level < AfterLegalizeVectorOps &&
9519       (N1.getOpcode() == ISD::UNDEF ||
9520       (N1.getOpcode() == ISD::CONCAT_VECTORS &&
9521        N0.getOperand(0).getValueType() == N1.getOperand(0).getValueType()))) {
9522     SDValue V = partitionShuffleOfConcats(N, DAG);
9523
9524     if (V.getNode())
9525       return V;
9526   }
9527
9528   // If this shuffle node is simply a swizzle of another shuffle node,
9529   // and it reverses the swizzle of the previous shuffle then we can
9530   // optimize shuffle(shuffle(x, undef), undef) -> x.
9531   if (N0.getOpcode() == ISD::VECTOR_SHUFFLE && Level < AfterLegalizeDAG &&
9532       N1.getOpcode() == ISD::UNDEF) {
9533
9534     ShuffleVectorSDNode *OtherSV = cast<ShuffleVectorSDNode>(N0);
9535
9536     // Shuffle nodes can only reverse shuffles with a single non-undef value.
9537     if (N0.getOperand(1).getOpcode() != ISD::UNDEF)
9538       return SDValue();
9539
9540     // The incoming shuffle must be of the same type as the result of the
9541     // current shuffle.
9542     assert(OtherSV->getOperand(0).getValueType() == VT &&
9543            "Shuffle types don't match");
9544
9545     for (unsigned i = 0; i != NumElts; ++i) {
9546       int Idx = SVN->getMaskElt(i);
9547       assert(Idx < (int)NumElts && "Index references undef operand");
9548       // Next, this index comes from the first value, which is the incoming
9549       // shuffle. Adopt the incoming index.
9550       if (Idx >= 0)
9551         Idx = OtherSV->getMaskElt(Idx);
9552
9553       // The combined shuffle must map each index to itself.
9554       if (Idx >= 0 && (unsigned)Idx != i)
9555         return SDValue();
9556     }
9557
9558     return OtherSV->getOperand(0);
9559   }
9560
9561   return SDValue();
9562 }
9563
9564 /// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
9565 /// an AND to a vector_shuffle with the destination vector and a zero vector.
9566 /// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
9567 ///      vector_shuffle V, Zero, <0, 4, 2, 4>
9568 SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
9569   EVT VT = N->getValueType(0);
9570   SDLoc dl(N);
9571   SDValue LHS = N->getOperand(0);
9572   SDValue RHS = N->getOperand(1);
9573   if (N->getOpcode() == ISD::AND) {
9574     if (RHS.getOpcode() == ISD::BITCAST)
9575       RHS = RHS.getOperand(0);
9576     if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
9577       SmallVector<int, 8> Indices;
9578       unsigned NumElts = RHS.getNumOperands();
9579       for (unsigned i = 0; i != NumElts; ++i) {
9580         SDValue Elt = RHS.getOperand(i);
9581         if (!isa<ConstantSDNode>(Elt))
9582           return SDValue();
9583
9584         if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
9585           Indices.push_back(i);
9586         else if (cast<ConstantSDNode>(Elt)->isNullValue())
9587           Indices.push_back(NumElts);
9588         else
9589           return SDValue();
9590       }
9591
9592       // Let's see if the target supports this vector_shuffle.
9593       EVT RVT = RHS.getValueType();
9594       if (!TLI.isVectorClearMaskLegal(Indices, RVT))
9595         return SDValue();
9596
9597       // Return the new VECTOR_SHUFFLE node.
9598       EVT EltVT = RVT.getVectorElementType();
9599       SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
9600                                      DAG.getConstant(0, EltVT));
9601       SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
9602                                  RVT, &ZeroOps[0], ZeroOps.size());
9603       LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
9604       SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
9605       return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
9606     }
9607   }
9608
9609   return SDValue();
9610 }
9611
9612 /// SimplifyVBinOp - Visit a binary vector operation, like ADD.
9613 SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
9614   assert(N->getValueType(0).isVector() &&
9615          "SimplifyVBinOp only works on vectors!");
9616
9617   SDValue LHS = N->getOperand(0);
9618   SDValue RHS = N->getOperand(1);
9619   SDValue Shuffle = XformToShuffleWithZero(N);
9620   if (Shuffle.getNode()) return Shuffle;
9621
9622   // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
9623   // this operation.
9624   if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
9625       RHS.getOpcode() == ISD::BUILD_VECTOR) {
9626     SmallVector<SDValue, 8> Ops;
9627     for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
9628       SDValue LHSOp = LHS.getOperand(i);
9629       SDValue RHSOp = RHS.getOperand(i);
9630       // If these two elements can't be folded, bail out.
9631       if ((LHSOp.getOpcode() != ISD::UNDEF &&
9632            LHSOp.getOpcode() != ISD::Constant &&
9633            LHSOp.getOpcode() != ISD::ConstantFP) ||
9634           (RHSOp.getOpcode() != ISD::UNDEF &&
9635            RHSOp.getOpcode() != ISD::Constant &&
9636            RHSOp.getOpcode() != ISD::ConstantFP))
9637         break;
9638
9639       // Can't fold divide by zero.
9640       if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
9641           N->getOpcode() == ISD::FDIV) {
9642         if ((RHSOp.getOpcode() == ISD::Constant &&
9643              cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
9644             (RHSOp.getOpcode() == ISD::ConstantFP &&
9645              cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
9646           break;
9647       }
9648
9649       EVT VT = LHSOp.getValueType();
9650       EVT RVT = RHSOp.getValueType();
9651       if (RVT != VT) {
9652         // Integer BUILD_VECTOR operands may have types larger than the element
9653         // size (e.g., when the element type is not legal).  Prior to type
9654         // legalization, the types may not match between the two BUILD_VECTORS.
9655         // Truncate one of the operands to make them match.
9656         if (RVT.getSizeInBits() > VT.getSizeInBits()) {
9657           RHSOp = DAG.getNode(ISD::TRUNCATE, SDLoc(N), VT, RHSOp);
9658         } else {
9659           LHSOp = DAG.getNode(ISD::TRUNCATE, SDLoc(N), RVT, LHSOp);
9660           VT = RVT;
9661         }
9662       }
9663       SDValue FoldOp = DAG.getNode(N->getOpcode(), SDLoc(LHS), VT,
9664                                    LHSOp, RHSOp);
9665       if (FoldOp.getOpcode() != ISD::UNDEF &&
9666           FoldOp.getOpcode() != ISD::Constant &&
9667           FoldOp.getOpcode() != ISD::ConstantFP)
9668         break;
9669       Ops.push_back(FoldOp);
9670       AddToWorkList(FoldOp.getNode());
9671     }
9672
9673     if (Ops.size() == LHS.getNumOperands())
9674       return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
9675                          LHS.getValueType(), &Ops[0], Ops.size());
9676   }
9677
9678   return SDValue();
9679 }
9680
9681 /// SimplifyVUnaryOp - Visit a binary vector operation, like FABS/FNEG.
9682 SDValue DAGCombiner::SimplifyVUnaryOp(SDNode *N) {
9683   assert(N->getValueType(0).isVector() &&
9684          "SimplifyVUnaryOp only works on vectors!");
9685
9686   SDValue N0 = N->getOperand(0);
9687
9688   if (N0.getOpcode() != ISD::BUILD_VECTOR)
9689     return SDValue();
9690
9691   // Operand is a BUILD_VECTOR node, see if we can constant fold it.
9692   SmallVector<SDValue, 8> Ops;
9693   for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i) {
9694     SDValue Op = N0.getOperand(i);
9695     if (Op.getOpcode() != ISD::UNDEF &&
9696         Op.getOpcode() != ISD::ConstantFP)
9697       break;
9698     EVT EltVT = Op.getValueType();
9699     SDValue FoldOp = DAG.getNode(N->getOpcode(), SDLoc(N0), EltVT, Op);
9700     if (FoldOp.getOpcode() != ISD::UNDEF &&
9701         FoldOp.getOpcode() != ISD::ConstantFP)
9702       break;
9703     Ops.push_back(FoldOp);
9704     AddToWorkList(FoldOp.getNode());
9705   }
9706
9707   if (Ops.size() != N0.getNumOperands())
9708     return SDValue();
9709
9710   return DAG.getNode(ISD::BUILD_VECTOR, SDLoc(N),
9711                      N0.getValueType(), &Ops[0], Ops.size());
9712 }
9713
9714 SDValue DAGCombiner::SimplifySelect(SDLoc DL, SDValue N0,
9715                                     SDValue N1, SDValue N2){
9716   assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
9717
9718   SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
9719                                  cast<CondCodeSDNode>(N0.getOperand(2))->get());
9720
9721   // If we got a simplified select_cc node back from SimplifySelectCC, then
9722   // break it down into a new SETCC node, and a new SELECT node, and then return
9723   // the SELECT node, since we were called with a SELECT node.
9724   if (SCC.getNode()) {
9725     // Check to see if we got a select_cc back (to turn into setcc/select).
9726     // Otherwise, just return whatever node we got back, like fabs.
9727     if (SCC.getOpcode() == ISD::SELECT_CC) {
9728       SDValue SETCC = DAG.getNode(ISD::SETCC, SDLoc(N0),
9729                                   N0.getValueType(),
9730                                   SCC.getOperand(0), SCC.getOperand(1),
9731                                   SCC.getOperand(4));
9732       AddToWorkList(SETCC.getNode());
9733       return DAG.getSelect(SDLoc(SCC), SCC.getValueType(),
9734                            SCC.getOperand(2), SCC.getOperand(3), SETCC);
9735     }
9736
9737     return SCC;
9738   }
9739   return SDValue();
9740 }
9741
9742 /// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
9743 /// are the two values being selected between, see if we can simplify the
9744 /// select.  Callers of this should assume that TheSelect is deleted if this
9745 /// returns true.  As such, they should return the appropriate thing (e.g. the
9746 /// node) back to the top-level of the DAG combiner loop to avoid it being
9747 /// looked at.
9748 bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
9749                                     SDValue RHS) {
9750
9751   // Cannot simplify select with vector condition
9752   if (TheSelect->getOperand(0).getValueType().isVector()) return false;
9753
9754   // If this is a select from two identical things, try to pull the operation
9755   // through the select.
9756   if (LHS.getOpcode() != RHS.getOpcode() ||
9757       !LHS.hasOneUse() || !RHS.hasOneUse())
9758     return false;
9759
9760   // If this is a load and the token chain is identical, replace the select
9761   // of two loads with a load through a select of the address to load from.
9762   // This triggers in things like "select bool X, 10.0, 123.0" after the FP
9763   // constants have been dropped into the constant pool.
9764   if (LHS.getOpcode() == ISD::LOAD) {
9765     LoadSDNode *LLD = cast<LoadSDNode>(LHS);
9766     LoadSDNode *RLD = cast<LoadSDNode>(RHS);
9767
9768     // Token chains must be identical.
9769     if (LHS.getOperand(0) != RHS.getOperand(0) ||
9770         // Do not let this transformation reduce the number of volatile loads.
9771         LLD->isVolatile() || RLD->isVolatile() ||
9772         // If this is an EXTLOAD, the VT's must match.
9773         LLD->getMemoryVT() != RLD->getMemoryVT() ||
9774         // If this is an EXTLOAD, the kind of extension must match.
9775         (LLD->getExtensionType() != RLD->getExtensionType() &&
9776          // The only exception is if one of the extensions is anyext.
9777          LLD->getExtensionType() != ISD::EXTLOAD &&
9778          RLD->getExtensionType() != ISD::EXTLOAD) ||
9779         // FIXME: this discards src value information.  This is
9780         // over-conservative. It would be beneficial to be able to remember
9781         // both potential memory locations.  Since we are discarding
9782         // src value info, don't do the transformation if the memory
9783         // locations are not in the default address space.
9784         LLD->getPointerInfo().getAddrSpace() != 0 ||
9785         RLD->getPointerInfo().getAddrSpace() != 0 ||
9786         !TLI.isOperationLegalOrCustom(TheSelect->getOpcode(),
9787                                       LLD->getBasePtr().getValueType()))
9788       return false;
9789
9790     // Check that the select condition doesn't reach either load.  If so,
9791     // folding this will induce a cycle into the DAG.  If not, this is safe to
9792     // xform, so create a select of the addresses.
9793     SDValue Addr;
9794     if (TheSelect->getOpcode() == ISD::SELECT) {
9795       SDNode *CondNode = TheSelect->getOperand(0).getNode();
9796       if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
9797           (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
9798         return false;
9799       // The loads must not depend on one another.
9800       if (LLD->isPredecessorOf(RLD) ||
9801           RLD->isPredecessorOf(LLD))
9802         return false;
9803       Addr = DAG.getSelect(SDLoc(TheSelect),
9804                            LLD->getBasePtr().getValueType(),
9805                            TheSelect->getOperand(0), LLD->getBasePtr(),
9806                            RLD->getBasePtr());
9807     } else {  // Otherwise SELECT_CC
9808       SDNode *CondLHS = TheSelect->getOperand(0).getNode();
9809       SDNode *CondRHS = TheSelect->getOperand(1).getNode();
9810
9811       if ((LLD->hasAnyUseOfValue(1) &&
9812            (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
9813           (RLD->hasAnyUseOfValue(1) &&
9814            (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
9815         return false;
9816
9817       Addr = DAG.getNode(ISD::SELECT_CC, SDLoc(TheSelect),
9818                          LLD->getBasePtr().getValueType(),
9819                          TheSelect->getOperand(0),
9820                          TheSelect->getOperand(1),
9821                          LLD->getBasePtr(), RLD->getBasePtr(),
9822                          TheSelect->getOperand(4));
9823     }
9824
9825     SDValue Load;
9826     if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
9827       Load = DAG.getLoad(TheSelect->getValueType(0),
9828                          SDLoc(TheSelect),
9829                          // FIXME: Discards pointer info.
9830                          LLD->getChain(), Addr, MachinePointerInfo(),
9831                          LLD->isVolatile(), LLD->isNonTemporal(),
9832                          LLD->isInvariant(), LLD->getAlignment());
9833     } else {
9834       Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
9835                             RLD->getExtensionType() : LLD->getExtensionType(),
9836                             SDLoc(TheSelect),
9837                             TheSelect->getValueType(0),
9838                             // FIXME: Discards pointer info.
9839                             LLD->getChain(), Addr, MachinePointerInfo(),
9840                             LLD->getMemoryVT(), LLD->isVolatile(),
9841                             LLD->isNonTemporal(), LLD->getAlignment());
9842     }
9843
9844     // Users of the select now use the result of the load.
9845     CombineTo(TheSelect, Load);
9846
9847     // Users of the old loads now use the new load's chain.  We know the
9848     // old-load value is dead now.
9849     CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
9850     CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
9851     return true;
9852   }
9853
9854   return false;
9855 }
9856
9857 /// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
9858 /// where 'cond' is the comparison specified by CC.
9859 SDValue DAGCombiner::SimplifySelectCC(SDLoc DL, SDValue N0, SDValue N1,
9860                                       SDValue N2, SDValue N3,
9861                                       ISD::CondCode CC, bool NotExtCompare) {
9862   // (x ? y : y) -> y.
9863   if (N2 == N3) return N2;
9864
9865   EVT VT = N2.getValueType();
9866   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
9867   ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
9868   ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
9869
9870   // Determine if the condition we're dealing with is constant
9871   SDValue SCC = SimplifySetCC(getSetCCResultType(N0.getValueType()),
9872                               N0, N1, CC, DL, false);
9873   if (SCC.getNode()) AddToWorkList(SCC.getNode());
9874   ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
9875
9876   // fold select_cc true, x, y -> x
9877   if (SCCC && !SCCC->isNullValue())
9878     return N2;
9879   // fold select_cc false, x, y -> y
9880   if (SCCC && SCCC->isNullValue())
9881     return N3;
9882
9883   // Check to see if we can simplify the select into an fabs node
9884   if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
9885     // Allow either -0.0 or 0.0
9886     if (CFP->getValueAPF().isZero()) {
9887       // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
9888       if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
9889           N0 == N2 && N3.getOpcode() == ISD::FNEG &&
9890           N2 == N3.getOperand(0))
9891         return DAG.getNode(ISD::FABS, DL, VT, N0);
9892
9893       // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
9894       if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
9895           N0 == N3 && N2.getOpcode() == ISD::FNEG &&
9896           N2.getOperand(0) == N3)
9897         return DAG.getNode(ISD::FABS, DL, VT, N3);
9898     }
9899   }
9900
9901   // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
9902   // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
9903   // in it.  This is a win when the constant is not otherwise available because
9904   // it replaces two constant pool loads with one.  We only do this if the FP
9905   // type is known to be legal, because if it isn't, then we are before legalize
9906   // types an we want the other legalization to happen first (e.g. to avoid
9907   // messing with soft float) and if the ConstantFP is not legal, because if
9908   // it is legal, we may not need to store the FP constant in a constant pool.
9909   if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
9910     if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
9911       if (TLI.isTypeLegal(N2.getValueType()) &&
9912           (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
9913            TargetLowering::Legal) &&
9914           // If both constants have multiple uses, then we won't need to do an
9915           // extra load, they are likely around in registers for other users.
9916           (TV->hasOneUse() || FV->hasOneUse())) {
9917         Constant *Elts[] = {
9918           const_cast<ConstantFP*>(FV->getConstantFPValue()),
9919           const_cast<ConstantFP*>(TV->getConstantFPValue())
9920         };
9921         Type *FPTy = Elts[0]->getType();
9922         const DataLayout &TD = *TLI.getDataLayout();
9923
9924         // Create a ConstantArray of the two constants.
9925         Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
9926         SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
9927                                             TD.getPrefTypeAlignment(FPTy));
9928         unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
9929
9930         // Get the offsets to the 0 and 1 element of the array so that we can
9931         // select between them.
9932         SDValue Zero = DAG.getIntPtrConstant(0);
9933         unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
9934         SDValue One = DAG.getIntPtrConstant(EltSize);
9935
9936         SDValue Cond = DAG.getSetCC(DL,
9937                                     getSetCCResultType(N0.getValueType()),
9938                                     N0, N1, CC);
9939         AddToWorkList(Cond.getNode());
9940         SDValue CstOffset = DAG.getSelect(DL, Zero.getValueType(),
9941                                           Cond, One, Zero);
9942         AddToWorkList(CstOffset.getNode());
9943         CPIdx = DAG.getNode(ISD::ADD, DL, CPIdx.getValueType(), CPIdx,
9944                             CstOffset);
9945         AddToWorkList(CPIdx.getNode());
9946         return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
9947                            MachinePointerInfo::getConstantPool(), false,
9948                            false, false, Alignment);
9949
9950       }
9951     }
9952
9953   // Check to see if we can perform the "gzip trick", transforming
9954   // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
9955   if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
9956       (N1C->isNullValue() ||                         // (a < 0) ? b : 0
9957        (N1C->getAPIntValue() == 1 && N0 == N2))) {   // (a < 1) ? a : 0
9958     EVT XType = N0.getValueType();
9959     EVT AType = N2.getValueType();
9960     if (XType.bitsGE(AType)) {
9961       // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
9962       // single-bit constant.
9963       if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
9964         unsigned ShCtV = N2C->getAPIntValue().logBase2();
9965         ShCtV = XType.getSizeInBits()-ShCtV-1;
9966         SDValue ShCt = DAG.getConstant(ShCtV,
9967                                        getShiftAmountTy(N0.getValueType()));
9968         SDValue Shift = DAG.getNode(ISD::SRL, SDLoc(N0),
9969                                     XType, N0, ShCt);
9970         AddToWorkList(Shift.getNode());
9971
9972         if (XType.bitsGT(AType)) {
9973           Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
9974           AddToWorkList(Shift.getNode());
9975         }
9976
9977         return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
9978       }
9979
9980       SDValue Shift = DAG.getNode(ISD::SRA, SDLoc(N0),
9981                                   XType, N0,
9982                                   DAG.getConstant(XType.getSizeInBits()-1,
9983                                          getShiftAmountTy(N0.getValueType())));
9984       AddToWorkList(Shift.getNode());
9985
9986       if (XType.bitsGT(AType)) {
9987         Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
9988         AddToWorkList(Shift.getNode());
9989       }
9990
9991       return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
9992     }
9993   }
9994
9995   // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
9996   // where y is has a single bit set.
9997   // A plaintext description would be, we can turn the SELECT_CC into an AND
9998   // when the condition can be materialized as an all-ones register.  Any
9999   // single bit-test can be materialized as an all-ones register with
10000   // shift-left and shift-right-arith.
10001   if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
10002       N0->getValueType(0) == VT &&
10003       N1C && N1C->isNullValue() &&
10004       N2C && N2C->isNullValue()) {
10005     SDValue AndLHS = N0->getOperand(0);
10006     ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
10007     if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
10008       // Shift the tested bit over the sign bit.
10009       APInt AndMask = ConstAndRHS->getAPIntValue();
10010       SDValue ShlAmt =
10011         DAG.getConstant(AndMask.countLeadingZeros(),
10012                         getShiftAmountTy(AndLHS.getValueType()));
10013       SDValue Shl = DAG.getNode(ISD::SHL, SDLoc(N0), VT, AndLHS, ShlAmt);
10014
10015       // Now arithmetic right shift it all the way over, so the result is either
10016       // all-ones, or zero.
10017       SDValue ShrAmt =
10018         DAG.getConstant(AndMask.getBitWidth()-1,
10019                         getShiftAmountTy(Shl.getValueType()));
10020       SDValue Shr = DAG.getNode(ISD::SRA, SDLoc(N0), VT, Shl, ShrAmt);
10021
10022       return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
10023     }
10024   }
10025
10026   // fold select C, 16, 0 -> shl C, 4
10027   if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
10028     TLI.getBooleanContents(N0.getValueType().isVector()) ==
10029       TargetLowering::ZeroOrOneBooleanContent) {
10030
10031     // If the caller doesn't want us to simplify this into a zext of a compare,
10032     // don't do it.
10033     if (NotExtCompare && N2C->getAPIntValue() == 1)
10034       return SDValue();
10035
10036     // Get a SetCC of the condition
10037     // NOTE: Don't create a SETCC if it's not legal on this target.
10038     if (!LegalOperations ||
10039         TLI.isOperationLegal(ISD::SETCC,
10040           LegalTypes ? getSetCCResultType(N0.getValueType()) : MVT::i1)) {
10041       SDValue Temp, SCC;
10042       // cast from setcc result type to select result type
10043       if (LegalTypes) {
10044         SCC  = DAG.getSetCC(DL, getSetCCResultType(N0.getValueType()),
10045                             N0, N1, CC);
10046         if (N2.getValueType().bitsLT(SCC.getValueType()))
10047           Temp = DAG.getZeroExtendInReg(SCC, SDLoc(N2),
10048                                         N2.getValueType());
10049         else
10050           Temp = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N2),
10051                              N2.getValueType(), SCC);
10052       } else {
10053         SCC  = DAG.getSetCC(SDLoc(N0), MVT::i1, N0, N1, CC);
10054         Temp = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(N2),
10055                            N2.getValueType(), SCC);
10056       }
10057
10058       AddToWorkList(SCC.getNode());
10059       AddToWorkList(Temp.getNode());
10060
10061       if (N2C->getAPIntValue() == 1)
10062         return Temp;
10063
10064       // shl setcc result by log2 n2c
10065       return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
10066                          DAG.getConstant(N2C->getAPIntValue().logBase2(),
10067                                          getShiftAmountTy(Temp.getValueType())));
10068     }
10069   }
10070
10071   // Check to see if this is the equivalent of setcc
10072   // FIXME: Turn all of these into setcc if setcc if setcc is legal
10073   // otherwise, go ahead with the folds.
10074   if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
10075     EVT XType = N0.getValueType();
10076     if (!LegalOperations ||
10077         TLI.isOperationLegal(ISD::SETCC, getSetCCResultType(XType))) {
10078       SDValue Res = DAG.getSetCC(DL, getSetCCResultType(XType), N0, N1, CC);
10079       if (Res.getValueType() != VT)
10080         Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
10081       return Res;
10082     }
10083
10084     // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
10085     if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
10086         (!LegalOperations ||
10087          TLI.isOperationLegal(ISD::CTLZ, XType))) {
10088       SDValue Ctlz = DAG.getNode(ISD::CTLZ, SDLoc(N0), XType, N0);
10089       return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
10090                          DAG.getConstant(Log2_32(XType.getSizeInBits()),
10091                                        getShiftAmountTy(Ctlz.getValueType())));
10092     }
10093     // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
10094     if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
10095       SDValue NegN0 = DAG.getNode(ISD::SUB, SDLoc(N0),
10096                                   XType, DAG.getConstant(0, XType), N0);
10097       SDValue NotN0 = DAG.getNOT(SDLoc(N0), N0, XType);
10098       return DAG.getNode(ISD::SRL, DL, XType,
10099                          DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
10100                          DAG.getConstant(XType.getSizeInBits()-1,
10101                                          getShiftAmountTy(XType)));
10102     }
10103     // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
10104     if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
10105       SDValue Sign = DAG.getNode(ISD::SRL, SDLoc(N0), XType, N0,
10106                                  DAG.getConstant(XType.getSizeInBits()-1,
10107                                          getShiftAmountTy(N0.getValueType())));
10108       return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
10109     }
10110   }
10111
10112   // Check to see if this is an integer abs.
10113   // select_cc setg[te] X,  0,  X, -X ->
10114   // select_cc setgt    X, -1,  X, -X ->
10115   // select_cc setl[te] X,  0, -X,  X ->
10116   // select_cc setlt    X,  1, -X,  X ->
10117   // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
10118   if (N1C) {
10119     ConstantSDNode *SubC = NULL;
10120     if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
10121          (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
10122         N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
10123       SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
10124     else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
10125               (N1C->isOne() && CC == ISD::SETLT)) &&
10126              N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
10127       SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
10128
10129     EVT XType = N0.getValueType();
10130     if (SubC && SubC->isNullValue() && XType.isInteger()) {
10131       SDValue Shift = DAG.getNode(ISD::SRA, SDLoc(N0), XType,
10132                                   N0,
10133                                   DAG.getConstant(XType.getSizeInBits()-1,
10134                                          getShiftAmountTy(N0.getValueType())));
10135       SDValue Add = DAG.getNode(ISD::ADD, SDLoc(N0),
10136                                 XType, N0, Shift);
10137       AddToWorkList(Shift.getNode());
10138       AddToWorkList(Add.getNode());
10139       return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
10140     }
10141   }
10142
10143   return SDValue();
10144 }
10145
10146 /// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
10147 SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
10148                                    SDValue N1, ISD::CondCode Cond,
10149                                    SDLoc DL, bool foldBooleans) {
10150   TargetLowering::DAGCombinerInfo
10151     DagCombineInfo(DAG, Level, false, this);
10152   return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
10153 }
10154
10155 /// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
10156 /// return a DAG expression to select that will generate the same value by
10157 /// multiplying by a magic number.  See:
10158 /// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
10159 SDValue DAGCombiner::BuildSDIV(SDNode *N) {
10160   std::vector<SDNode*> Built;
10161   SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
10162
10163   for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
10164        ii != ee; ++ii)
10165     AddToWorkList(*ii);
10166   return S;
10167 }
10168
10169 /// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
10170 /// return a DAG expression to select that will generate the same value by
10171 /// multiplying by a magic number.  See:
10172 /// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
10173 SDValue DAGCombiner::BuildUDIV(SDNode *N) {
10174   std::vector<SDNode*> Built;
10175   SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
10176
10177   for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
10178        ii != ee; ++ii)
10179     AddToWorkList(*ii);
10180   return S;
10181 }
10182
10183 /// FindBaseOffset - Return true if base is a frame index, which is known not
10184 // to alias with anything but itself.  Provides base object and offset as
10185 // results.
10186 static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
10187                            const GlobalValue *&GV, const void *&CV) {
10188   // Assume it is a primitive operation.
10189   Base = Ptr; Offset = 0; GV = 0; CV = 0;
10190
10191   // If it's an adding a simple constant then integrate the offset.
10192   if (Base.getOpcode() == ISD::ADD) {
10193     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
10194       Base = Base.getOperand(0);
10195       Offset += C->getZExtValue();
10196     }
10197   }
10198
10199   // Return the underlying GlobalValue, and update the Offset.  Return false
10200   // for GlobalAddressSDNode since the same GlobalAddress may be represented
10201   // by multiple nodes with different offsets.
10202   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
10203     GV = G->getGlobal();
10204     Offset += G->getOffset();
10205     return false;
10206   }
10207
10208   // Return the underlying Constant value, and update the Offset.  Return false
10209   // for ConstantSDNodes since the same constant pool entry may be represented
10210   // by multiple nodes with different offsets.
10211   if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
10212     CV = C->isMachineConstantPoolEntry() ? (const void *)C->getMachineCPVal()
10213                                          : (const void *)C->getConstVal();
10214     Offset += C->getOffset();
10215     return false;
10216   }
10217   // If it's any of the following then it can't alias with anything but itself.
10218   return isa<FrameIndexSDNode>(Base);
10219 }
10220
10221 /// isAlias - Return true if there is any possibility that the two addresses
10222 /// overlap.
10223 bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
10224                           const Value *SrcValue1, int SrcValueOffset1,
10225                           unsigned SrcValueAlign1,
10226                           const MDNode *TBAAInfo1,
10227                           SDValue Ptr2, int64_t Size2,
10228                           const Value *SrcValue2, int SrcValueOffset2,
10229                           unsigned SrcValueAlign2,
10230                           const MDNode *TBAAInfo2) const {
10231   // If they are the same then they must be aliases.
10232   if (Ptr1 == Ptr2) return true;
10233
10234   // Gather base node and offset information.
10235   SDValue Base1, Base2;
10236   int64_t Offset1, Offset2;
10237   const GlobalValue *GV1, *GV2;
10238   const void *CV1, *CV2;
10239   bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
10240   bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
10241
10242   // If they have a same base address then check to see if they overlap.
10243   if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
10244     return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
10245
10246   // It is possible for different frame indices to alias each other, mostly
10247   // when tail call optimization reuses return address slots for arguments.
10248   // To catch this case, look up the actual index of frame indices to compute
10249   // the real alias relationship.
10250   if (isFrameIndex1 && isFrameIndex2) {
10251     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
10252     Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
10253     Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
10254     return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
10255   }
10256
10257   // Otherwise, if we know what the bases are, and they aren't identical, then
10258   // we know they cannot alias.
10259   if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
10260     return false;
10261
10262   // If we know required SrcValue1 and SrcValue2 have relatively large alignment
10263   // compared to the size and offset of the access, we may be able to prove they
10264   // do not alias.  This check is conservative for now to catch cases created by
10265   // splitting vector types.
10266   if ((SrcValueAlign1 == SrcValueAlign2) &&
10267       (SrcValueOffset1 != SrcValueOffset2) &&
10268       (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
10269     int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
10270     int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
10271
10272     // There is no overlap between these relatively aligned accesses of similar
10273     // size, return no alias.
10274     if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
10275       return false;
10276   }
10277
10278   bool UseAA = CombinerGlobalAA.getNumOccurrences() > 0 ? CombinerGlobalAA :
10279     TLI.getTargetMachine().getSubtarget<TargetSubtargetInfo>().useAA();
10280   if (UseAA && SrcValue1 && SrcValue2) {
10281     // Use alias analysis information.
10282     int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
10283     int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
10284     int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
10285     AliasAnalysis::AliasResult AAResult =
10286       AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
10287                AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
10288     if (AAResult == AliasAnalysis::NoAlias)
10289       return false;
10290   }
10291
10292   // Otherwise we have to assume they alias.
10293   return true;
10294 }
10295
10296 bool DAGCombiner::isAlias(LSBaseSDNode *Op0, LSBaseSDNode *Op1) {
10297   SDValue Ptr0, Ptr1;
10298   int64_t Size0, Size1;
10299   const Value *SrcValue0, *SrcValue1;
10300   int SrcValueOffset0, SrcValueOffset1;
10301   unsigned SrcValueAlign0, SrcValueAlign1;
10302   const MDNode *SrcTBAAInfo0, *SrcTBAAInfo1;
10303   FindAliasInfo(Op0, Ptr0, Size0, SrcValue0, SrcValueOffset0,
10304                 SrcValueAlign0, SrcTBAAInfo0);
10305   FindAliasInfo(Op1, Ptr1, Size1, SrcValue1, SrcValueOffset1,
10306                 SrcValueAlign1, SrcTBAAInfo1);
10307   return isAlias(Ptr0, Size0, SrcValue0, SrcValueOffset0,
10308                  SrcValueAlign0, SrcTBAAInfo0,
10309                  Ptr1, Size1, SrcValue1, SrcValueOffset1,
10310                  SrcValueAlign1, SrcTBAAInfo1);
10311 }
10312
10313 /// FindAliasInfo - Extracts the relevant alias information from the memory
10314 /// node.  Returns true if the operand was a load.
10315 bool DAGCombiner::FindAliasInfo(SDNode *N,
10316                                 SDValue &Ptr, int64_t &Size,
10317                                 const Value *&SrcValue,
10318                                 int &SrcValueOffset,
10319                                 unsigned &SrcValueAlign,
10320                                 const MDNode *&TBAAInfo) const {
10321   LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
10322
10323   Ptr = LS->getBasePtr();
10324   Size = LS->getMemoryVT().getSizeInBits() >> 3;
10325   SrcValue = LS->getSrcValue();
10326   SrcValueOffset = LS->getSrcValueOffset();
10327   SrcValueAlign = LS->getOriginalAlignment();
10328   TBAAInfo = LS->getTBAAInfo();
10329   return isa<LoadSDNode>(LS);
10330 }
10331
10332 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
10333 /// looking for aliasing nodes and adding them to the Aliases vector.
10334 void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
10335                                    SmallVectorImpl<SDValue> &Aliases) {
10336   SmallVector<SDValue, 8> Chains;     // List of chains to visit.
10337   SmallPtrSet<SDNode *, 16> Visited;  // Visited node set.
10338
10339   // Get alias information for node.
10340   SDValue Ptr;
10341   int64_t Size;
10342   const Value *SrcValue;
10343   int SrcValueOffset;
10344   unsigned SrcValueAlign;
10345   const MDNode *SrcTBAAInfo;
10346   bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
10347                               SrcValueAlign, SrcTBAAInfo);
10348
10349   // Starting off.
10350   Chains.push_back(OriginalChain);
10351   unsigned Depth = 0;
10352
10353   // Look at each chain and determine if it is an alias.  If so, add it to the
10354   // aliases list.  If not, then continue up the chain looking for the next
10355   // candidate.
10356   while (!Chains.empty()) {
10357     SDValue Chain = Chains.back();
10358     Chains.pop_back();
10359
10360     // For TokenFactor nodes, look at each operand and only continue up the
10361     // chain until we find two aliases.  If we've seen two aliases, assume we'll
10362     // find more and revert to original chain since the xform is unlikely to be
10363     // profitable.
10364     //
10365     // FIXME: The depth check could be made to return the last non-aliasing
10366     // chain we found before we hit a tokenfactor rather than the original
10367     // chain.
10368     if (Depth > 6 || Aliases.size() == 2) {
10369       Aliases.clear();
10370       Aliases.push_back(OriginalChain);
10371       break;
10372     }
10373
10374     // Don't bother if we've been before.
10375     if (!Visited.insert(Chain.getNode()))
10376       continue;
10377
10378     switch (Chain.getOpcode()) {
10379     case ISD::EntryToken:
10380       // Entry token is ideal chain operand, but handled in FindBetterChain.
10381       break;
10382
10383     case ISD::LOAD:
10384     case ISD::STORE: {
10385       // Get alias information for Chain.
10386       SDValue OpPtr;
10387       int64_t OpSize;
10388       const Value *OpSrcValue;
10389       int OpSrcValueOffset;
10390       unsigned OpSrcValueAlign;
10391       const MDNode *OpSrcTBAAInfo;
10392       bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
10393                                     OpSrcValue, OpSrcValueOffset,
10394                                     OpSrcValueAlign,
10395                                     OpSrcTBAAInfo);
10396
10397       // If chain is alias then stop here.
10398       if (!(IsLoad && IsOpLoad) &&
10399           isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
10400                   SrcTBAAInfo,
10401                   OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
10402                   OpSrcValueAlign, OpSrcTBAAInfo)) {
10403         Aliases.push_back(Chain);
10404       } else {
10405         // Look further up the chain.
10406         Chains.push_back(Chain.getOperand(0));
10407         ++Depth;
10408       }
10409       break;
10410     }
10411
10412     case ISD::TokenFactor:
10413       // We have to check each of the operands of the token factor for "small"
10414       // token factors, so we queue them up.  Adding the operands to the queue
10415       // (stack) in reverse order maintains the original order and increases the
10416       // likelihood that getNode will find a matching token factor (CSE.)
10417       if (Chain.getNumOperands() > 16) {
10418         Aliases.push_back(Chain);
10419         break;
10420       }
10421       for (unsigned n = Chain.getNumOperands(); n;)
10422         Chains.push_back(Chain.getOperand(--n));
10423       ++Depth;
10424       break;
10425
10426     default:
10427       // For all other instructions we will just have to take what we can get.
10428       Aliases.push_back(Chain);
10429       break;
10430     }
10431   }
10432 }
10433
10434 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
10435 /// for a better chain (aliasing node.)
10436 SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
10437   SmallVector<SDValue, 8> Aliases;  // Ops for replacing token factor.
10438
10439   // Accumulate all the aliases to this node.
10440   GatherAllAliases(N, OldChain, Aliases);
10441
10442   // If no operands then chain to entry token.
10443   if (Aliases.size() == 0)
10444     return DAG.getEntryNode();
10445
10446   // If a single operand then chain to it.  We don't need to revisit it.
10447   if (Aliases.size() == 1)
10448     return Aliases[0];
10449
10450   // Construct a custom tailored token factor.
10451   return DAG.getNode(ISD::TokenFactor, SDLoc(N), MVT::Other,
10452                      &Aliases[0], Aliases.size());
10453 }
10454
10455 // SelectionDAG::Combine - This is the entry point for the file.
10456 //
10457 void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
10458                            CodeGenOpt::Level OptLevel) {
10459   /// run - This is the main entry point to this class.
10460   ///
10461   DAGCombiner(*this, AA, OptLevel).Run(Level);
10462 }