blob: 42940b2c202a40355832b73229e7902033555419 [file] [log] [blame]
Nate Begeman4ebd8052005-09-01 23:24:04 +00001//===-- DAGCombiner.cpp - Implement a DAG node combiner -------------------===//
Nate Begeman1d4d4142005-09-01 00:19:25 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Nate Begeman1d4d4142005-09-01 00:19:25 +00007//
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.
Scott Michelfdc40a02009-02-17 22:15:04 +000012//
Dan Gohman41287002009-04-25 17:09:45 +000013// 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//
Nate Begeman1d4d4142005-09-01 00:19:25 +000017//===----------------------------------------------------------------------===//
18
19#define DEBUG_TYPE "dagcombine"
Nate Begeman1d4d4142005-09-01 00:19:25 +000020#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner600fec32009-03-11 05:08:08 +000021#include "llvm/DerivedTypes.h"
Owen Andersona90b3dc2009-07-15 21:51:10 +000022#include "llvm/LLVMContext.h"
Chris Lattner00161a62008-01-25 07:20:16 +000023#include "llvm/CodeGen/MachineFunction.h"
24#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000025#include "llvm/Analysis/AliasAnalysis.h"
Evan Cheng59d5b682007-05-07 21:27:48 +000026#include "llvm/Target/TargetData.h"
Nate Begeman1d4d4142005-09-01 00:19:25 +000027#include "llvm/Target/TargetLowering.h"
Evan Cheng59d5b682007-05-07 21:27:48 +000028#include "llvm/Target/TargetMachine.h"
Chris Lattnerddae4bd2007-01-08 23:04:05 +000029#include "llvm/Target/TargetOptions.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000030#include "llvm/ADT/SmallPtrSet.h"
31#include "llvm/ADT/Statistic.h"
Jim Laskeyd1aed7a2006-09-21 16:28:59 +000032#include "llvm/Support/CommandLine.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000033#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000034#include "llvm/Support/ErrorHandling.h"
Chris Lattnerc76d4412007-05-16 06:37:59 +000035#include "llvm/Support/MathExtras.h"
Chris Lattnerbbbfa992009-08-23 06:35:02 +000036#include "llvm/Support/raw_ostream.h"
Chris Lattnera500fc62005-09-09 23:53:39 +000037#include <algorithm>
Nate Begeman1d4d4142005-09-01 00:19:25 +000038using namespace llvm;
39
Chris Lattnercd3245a2006-12-19 22:41:21 +000040STATISTIC(NodesCombined , "Number of dag nodes combined");
41STATISTIC(PreIndexedNodes , "Number of pre-indexed nodes created");
42STATISTIC(PostIndexedNodes, "Number of post-indexed nodes created");
Evan Cheng8b944d32009-05-28 00:35:15 +000043STATISTIC(OpsNarrowed , "Number of load/op/store narrowed");
Evan Cheng31959b12011-02-02 01:06:55 +000044STATISTIC(LdStFP2Int , "Number of fp load/store pairs transformed to int");
Chris Lattnercd3245a2006-12-19 22:41:21 +000045
Nate Begeman1d4d4142005-09-01 00:19:25 +000046namespace {
Jim Laskey71382342006-10-07 23:37:56 +000047 static cl::opt<bool>
Owen Anderson0dcc8142010-09-19 21:01:26 +000048 CombinerAA("combiner-alias-analysis", cl::Hidden,
Jim Laskey26f7fa72006-10-17 19:33:52 +000049 cl::desc("Turn on alias analysis during testing"));
Jim Laskey3ad175b2006-10-12 15:22:24 +000050
Jim Laskey07a27092006-10-18 19:08:31 +000051 static cl::opt<bool>
52 CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden,
53 cl::desc("Include global information in alias analysis"));
54
Jim Laskeybc588b82006-10-05 15:07:25 +000055//------------------------------ DAGCombiner ---------------------------------//
56
Nick Lewycky6726b6d2009-10-25 06:33:48 +000057 class DAGCombiner {
Nate Begeman1d4d4142005-09-01 00:19:25 +000058 SelectionDAG &DAG;
Dan Gohman79ce2762009-01-15 19:20:50 +000059 const TargetLowering &TLI;
Duncan Sands25cf2272008-11-24 14:53:14 +000060 CombineLevel Level;
Bill Wendling98a366d2009-04-29 23:29:43 +000061 CodeGenOpt::Level OptLevel;
Duncan Sands25cf2272008-11-24 14:53:14 +000062 bool LegalOperations;
63 bool LegalTypes;
Nate Begeman1d4d4142005-09-01 00:19:25 +000064
65 // Worklist of all of the nodes that need to be simplified.
James Molloy6660c052012-02-16 09:17:04 +000066 //
67 // This has the semantics that when adding to the worklist,
68 // the item added must be next to be processed. It should
69 // also only appear once. The naive approach to this takes
70 // linear time.
71 //
72 // To reduce the insert/remove time to logarithmic, we use
73 // a set and a vector to maintain our worklist.
74 //
75 // The set contains the items on the worklist, but does not
76 // maintain the order they should be visited.
77 //
78 // The vector maintains the order nodes should be visited, but may
79 // contain duplicate or removed nodes. When choosing a node to
80 // visit, we pop off the order stack until we find an item that is
81 // also in the contents set. All operations are O(log N).
82 SmallPtrSet<SDNode*, 64> WorkListContents;
83 std::vector<SDNode*> WorkListOrder;
Nate Begeman1d4d4142005-09-01 00:19:25 +000084
Jim Laskeyc7c3f112006-10-16 20:52:31 +000085 // AA - Used for DAG load/store alias analysis.
86 AliasAnalysis &AA;
87
Nate Begeman1d4d4142005-09-01 00:19:25 +000088 /// AddUsersToWorkList - When an instruction is simplified, add all users of
89 /// the instruction to the work lists because they might get more simplified
90 /// now.
91 ///
92 void AddUsersToWorkList(SDNode *N) {
93 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Nate Begeman4ebd8052005-09-01 23:24:04 +000094 UI != UE; ++UI)
Dan Gohman89684502008-07-27 20:43:25 +000095 AddToWorkList(*UI);
Nate Begeman1d4d4142005-09-01 00:19:25 +000096 }
97
Dan Gohman389079b2007-10-08 17:57:15 +000098 /// visit - call the node-specific routine that knows how to fold each
99 /// particular type of node.
Dan Gohman475871a2008-07-27 21:46:04 +0000100 SDValue visit(SDNode *N);
Dan Gohman389079b2007-10-08 17:57:15 +0000101
Chris Lattner24664722006-03-01 04:53:38 +0000102 public:
James Molloy6afa3f72012-02-16 09:48:07 +0000103 /// AddToWorkList - Add to the work list making sure its instance is at the
James Molloy6660c052012-02-16 09:17:04 +0000104 /// back (next to be processed.)
Chris Lattner5750df92006-03-01 04:03:14 +0000105 void AddToWorkList(SDNode *N) {
James Molloy6660c052012-02-16 09:17:04 +0000106 WorkListContents.insert(N);
107 WorkListOrder.push_back(N);
Chris Lattner5750df92006-03-01 04:03:14 +0000108 }
Jim Laskey6ff23e52006-10-04 16:53:27 +0000109
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000110 /// removeFromWorkList - remove all instances of N from the worklist.
111 ///
112 void removeFromWorkList(SDNode *N) {
James Molloy6660c052012-02-16 09:17:04 +0000113 WorkListContents.erase(N);
Chris Lattner01a22022005-10-10 22:04:48 +0000114 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000115
Dan Gohman475871a2008-07-27 21:46:04 +0000116 SDValue CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
Evan Cheng0b0cd912009-03-28 05:57:29 +0000117 bool AddTo = true);
Scott Michelfdc40a02009-02-17 22:15:04 +0000118
Dan Gohman475871a2008-07-27 21:46:04 +0000119 SDValue CombineTo(SDNode *N, SDValue Res, bool AddTo = true) {
Jim Laskey274062c2006-10-13 23:32:28 +0000120 return CombineTo(N, &Res, 1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000121 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000122
Dan Gohman475871a2008-07-27 21:46:04 +0000123 SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1,
Evan Cheng0b0cd912009-03-28 05:57:29 +0000124 bool AddTo = true) {
Dan Gohman475871a2008-07-27 21:46:04 +0000125 SDValue To[] = { Res0, Res1 };
Jim Laskey274062c2006-10-13 23:32:28 +0000126 return CombineTo(N, To, 2, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000127 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000128
129 void CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO);
Scott Michelfdc40a02009-02-17 22:15:04 +0000130
131 private:
132
Chris Lattner012f2412006-02-17 21:58:01 +0000133 /// SimplifyDemandedBits - Check the specified integer node value to see if
Chris Lattnerb2742f42006-03-01 19:55:35 +0000134 /// it can be simplified or if things it uses can be simplified by bit
Chris Lattner012f2412006-02-17 21:58:01 +0000135 /// propagation. If so, return true.
Dan Gohman475871a2008-07-27 21:46:04 +0000136 bool SimplifyDemandedBits(SDValue Op) {
Dan Gohman87862e72009-12-11 21:31:27 +0000137 unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits();
138 APInt Demanded = APInt::getAllOnesValue(BitWidth);
Dan Gohman7b8d4a92008-02-27 00:25:32 +0000139 return SimplifyDemandedBits(Op, Demanded);
140 }
141
Dan Gohman475871a2008-07-27 21:46:04 +0000142 bool SimplifyDemandedBits(SDValue Op, const APInt &Demanded);
Chris Lattner87514ca2005-10-10 22:31:19 +0000143
Chris Lattner448f2192006-11-11 00:39:41 +0000144 bool CombineToPreIndexedLoadStore(SDNode *N);
145 bool CombineToPostIndexedLoadStore(SDNode *N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000146
Evan Cheng95c57ea2010-04-24 04:43:44 +0000147 void ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad);
148 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
149 SDValue SExtPromoteOperand(SDValue Op, EVT PVT);
150 SDValue ZExtPromoteOperand(SDValue Op, EVT PVT);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000151 SDValue PromoteIntBinOp(SDValue Op);
Evan Cheng07c4e102010-04-22 20:19:46 +0000152 SDValue PromoteIntShiftOp(SDValue Op);
Evan Cheng4c26e932010-04-19 19:29:22 +0000153 SDValue PromoteExtend(SDValue Op);
154 bool PromoteLoad(SDValue Op);
Scott Michelfdc40a02009-02-17 22:15:04 +0000155
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +0000156 void ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
157 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
158 ISD::NodeType ExtType);
159
Dan Gohman389079b2007-10-08 17:57:15 +0000160 /// combine - call the node-specific routine that knows how to fold each
161 /// particular type of node. If that doesn't do anything, try the
162 /// target-specific DAG combines.
Dan Gohman475871a2008-07-27 21:46:04 +0000163 SDValue combine(SDNode *N);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000164
165 // Visitation implementation - Implement dag node combining for different
166 // node types. The semantics are as follows:
167 // Return Value:
Evan Cheng17a568b2008-08-29 22:21:44 +0000168 // SDValue.getNode() == 0 - No change was made
169 // SDValue.getNode() == N - N was replaced, is dead and has been handled.
170 // otherwise - N should be replaced by the returned Operand.
Nate Begeman1d4d4142005-09-01 00:19:25 +0000171 //
Dan Gohman475871a2008-07-27 21:46:04 +0000172 SDValue visitTokenFactor(SDNode *N);
173 SDValue visitMERGE_VALUES(SDNode *N);
174 SDValue visitADD(SDNode *N);
175 SDValue visitSUB(SDNode *N);
176 SDValue visitADDC(SDNode *N);
Craig Toppercc274522012-01-07 09:06:39 +0000177 SDValue visitSUBC(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000178 SDValue visitADDE(SDNode *N);
Craig Toppercc274522012-01-07 09:06:39 +0000179 SDValue visitSUBE(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000180 SDValue visitMUL(SDNode *N);
181 SDValue visitSDIV(SDNode *N);
182 SDValue visitUDIV(SDNode *N);
183 SDValue visitSREM(SDNode *N);
184 SDValue visitUREM(SDNode *N);
185 SDValue visitMULHU(SDNode *N);
186 SDValue visitMULHS(SDNode *N);
187 SDValue visitSMUL_LOHI(SDNode *N);
188 SDValue visitUMUL_LOHI(SDNode *N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +0000189 SDValue visitSMULO(SDNode *N);
190 SDValue visitUMULO(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000191 SDValue visitSDIVREM(SDNode *N);
192 SDValue visitUDIVREM(SDNode *N);
193 SDValue visitAND(SDNode *N);
194 SDValue visitOR(SDNode *N);
195 SDValue visitXOR(SDNode *N);
196 SDValue SimplifyVBinOp(SDNode *N);
197 SDValue visitSHL(SDNode *N);
198 SDValue visitSRA(SDNode *N);
199 SDValue visitSRL(SDNode *N);
200 SDValue visitCTLZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000201 SDValue visitCTLZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000202 SDValue visitCTTZ(SDNode *N);
Chandler Carruth63974b22011-12-13 01:56:10 +0000203 SDValue visitCTTZ_ZERO_UNDEF(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000204 SDValue visitCTPOP(SDNode *N);
205 SDValue visitSELECT(SDNode *N);
206 SDValue visitSELECT_CC(SDNode *N);
207 SDValue visitSETCC(SDNode *N);
208 SDValue visitSIGN_EXTEND(SDNode *N);
209 SDValue visitZERO_EXTEND(SDNode *N);
210 SDValue visitANY_EXTEND(SDNode *N);
211 SDValue visitSIGN_EXTEND_INREG(SDNode *N);
212 SDValue visitTRUNCATE(SDNode *N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000213 SDValue visitBITCAST(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000214 SDValue visitBUILD_PAIR(SDNode *N);
215 SDValue visitFADD(SDNode *N);
216 SDValue visitFSUB(SDNode *N);
217 SDValue visitFMUL(SDNode *N);
218 SDValue visitFDIV(SDNode *N);
219 SDValue visitFREM(SDNode *N);
220 SDValue visitFCOPYSIGN(SDNode *N);
221 SDValue visitSINT_TO_FP(SDNode *N);
222 SDValue visitUINT_TO_FP(SDNode *N);
223 SDValue visitFP_TO_SINT(SDNode *N);
224 SDValue visitFP_TO_UINT(SDNode *N);
225 SDValue visitFP_ROUND(SDNode *N);
226 SDValue visitFP_ROUND_INREG(SDNode *N);
227 SDValue visitFP_EXTEND(SDNode *N);
228 SDValue visitFNEG(SDNode *N);
229 SDValue visitFABS(SDNode *N);
230 SDValue visitBRCOND(SDNode *N);
231 SDValue visitBR_CC(SDNode *N);
232 SDValue visitLOAD(SDNode *N);
233 SDValue visitSTORE(SDNode *N);
234 SDValue visitINSERT_VECTOR_ELT(SDNode *N);
235 SDValue visitEXTRACT_VECTOR_ELT(SDNode *N);
236 SDValue visitBUILD_VECTOR(SDNode *N);
237 SDValue visitCONCAT_VECTORS(SDNode *N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +0000238 SDValue visitEXTRACT_SUBVECTOR(SDNode *N);
Dan Gohman475871a2008-07-27 21:46:04 +0000239 SDValue visitVECTOR_SHUFFLE(SDNode *N);
Jim Grosbach9a526492010-06-23 16:07:42 +0000240 SDValue visitMEMBARRIER(SDNode *N);
Chris Lattner01a22022005-10-10 22:04:48 +0000241
Dan Gohman475871a2008-07-27 21:46:04 +0000242 SDValue XformToShuffleWithZero(SDNode *N);
Bill Wendling35247c32009-01-30 00:45:56 +0000243 SDValue ReassociateOps(unsigned Opc, DebugLoc DL, SDValue LHS, SDValue RHS);
Scott Michelfdc40a02009-02-17 22:15:04 +0000244
Dan Gohman475871a2008-07-27 21:46:04 +0000245 SDValue visitShiftByConstant(SDNode *N, unsigned Amt);
Chris Lattnere70da202007-12-06 07:33:36 +0000246
Dan Gohman475871a2008-07-27 21:46:04 +0000247 bool SimplifySelectOps(SDNode *SELECT, SDValue LHS, SDValue RHS);
248 SDValue SimplifyBinOpWithSameOpcodeHands(SDNode *N);
Bill Wendling836ca7d2009-01-30 23:59:18 +0000249 SDValue SimplifySelect(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2);
Scott Michelfdc40a02009-02-17 22:15:04 +0000250 SDValue SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2,
251 SDValue N3, ISD::CondCode CC,
Bill Wendling836ca7d2009-01-30 23:59:18 +0000252 bool NotExtCompare = false);
Owen Andersone50ed302009-08-10 22:56:29 +0000253 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +0000254 DebugLoc DL, bool foldBooleans = true);
Scott Michelfdc40a02009-02-17 22:15:04 +0000255 SDValue SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Chris Lattner5eee4272008-01-26 01:09:19 +0000256 unsigned HiOp);
Owen Andersone50ed302009-08-10 22:56:29 +0000257 SDValue CombineConsecutiveLoads(SDNode *N, EVT VT);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000258 SDValue ConstantFoldBITCASTofBUILD_VECTOR(SDNode *, EVT);
Dan Gohman475871a2008-07-27 21:46:04 +0000259 SDValue BuildSDIV(SDNode *N);
260 SDValue BuildUDIV(SDNode *N);
Evan Cheng9568e5c2011-06-21 06:01:08 +0000261 SDValue MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
262 bool DemandHighBits = true);
263 SDValue MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1);
Bill Wendling317bd702009-01-30 21:14:50 +0000264 SDNode *MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL);
Dan Gohman475871a2008-07-27 21:46:04 +0000265 SDValue ReduceLoadWidth(SDNode *N);
Evan Cheng8b944d32009-05-28 00:35:15 +0000266 SDValue ReduceLoadOpStoreWidth(SDNode *N);
Evan Cheng31959b12011-02-02 01:06:55 +0000267 SDValue TransformFPLoadStorePair(SDNode *N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000268
Dan Gohman475871a2008-07-27 21:46:04 +0000269 SDValue GetDemandedBits(SDValue V, const APInt &Mask);
Scott Michelfdc40a02009-02-17 22:15:04 +0000270
Jim Laskey6ff23e52006-10-04 16:53:27 +0000271 /// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
272 /// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +0000273 void GatherAllAliases(SDNode *N, SDValue OriginalChain,
274 SmallVector<SDValue, 8> &Aliases);
Jim Laskey6ff23e52006-10-04 16:53:27 +0000275
Jim Laskey096c22e2006-10-18 12:29:57 +0000276 /// isAlias - Return true if there is any possibility that the two addresses
277 /// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +0000278 bool isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +0000279 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000280 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000281 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +0000282 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000283 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000284 unsigned SrcValueAlign2,
285 const MDNode *TBAAInfo2) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000286
Jim Laskey7ca56af2006-10-11 13:47:09 +0000287 /// FindAliasInfo - Extracts the relevant alias information from the memory
288 /// node. Returns true if the operand was a load.
289 bool FindAliasInfo(SDNode *N,
Dan Gohman475871a2008-07-27 21:46:04 +0000290 SDValue &Ptr, int64_t &Size,
Nate Begemanb6aef5c2009-09-15 00:18:30 +0000291 const Value *&SrcValue, int &SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +0000292 unsigned &SrcValueAlignment,
293 const MDNode *&TBAAInfo) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000294
Jim Laskey279f0532006-09-25 16:29:54 +0000295 /// FindBetterChain - Walk up chain skipping non-aliasing memory nodes,
Jim Laskey6ff23e52006-10-04 16:53:27 +0000296 /// looking for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +0000297 SDValue FindBetterChain(SDNode *N, SDValue Chain);
Duncan Sands92abc622009-01-31 15:50:11 +0000298
Chris Lattner2392ae72010-04-15 04:48:01 +0000299 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000300 DAGCombiner(SelectionDAG &D, AliasAnalysis &A, CodeGenOpt::Level OL)
Eli Friedman50185242011-11-12 00:35:34 +0000301 : DAG(D), TLI(D.getTargetLoweringInfo()), Level(BeforeLegalizeTypes),
Chris Lattner2392ae72010-04-15 04:48:01 +0000302 OptLevel(OL), LegalOperations(false), LegalTypes(false), AA(A) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000303
Nate Begeman1d4d4142005-09-01 00:19:25 +0000304 /// Run - runs the dag combiner on all nodes in the work list
Duncan Sands25cf2272008-11-24 14:53:14 +0000305 void Run(CombineLevel AtLevel);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000306
Chris Lattner2392ae72010-04-15 04:48:01 +0000307 SelectionDAG &getDAG() const { return DAG; }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000308
Chris Lattner2392ae72010-04-15 04:48:01 +0000309 /// getShiftAmountTy - Returns a type large enough to hold any valid
310 /// shift amount - before type legalization these can be huge.
Owen Anderson95771af2011-02-25 21:41:48 +0000311 EVT getShiftAmountTy(EVT LHSTy) {
312 return LegalTypes ? TLI.getShiftAmountTy(LHSTy) : TLI.getPointerTy();
Chris Lattner2392ae72010-04-15 04:48:01 +0000313 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000314
Chris Lattner2392ae72010-04-15 04:48:01 +0000315 /// isTypeLegal - This method returns true if we are running before type
316 /// legalization or if the specified VT is legal.
317 bool isTypeLegal(const EVT &VT) {
318 if (!LegalTypes) return true;
319 return TLI.isTypeLegal(VT);
320 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000321 };
322}
323
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000324
325namespace {
326/// WorkListRemover - This class is a DAGUpdateListener that removes any deleted
327/// nodes from the worklist.
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000328class WorkListRemover : public SelectionDAG::DAGUpdateListener {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000329 DAGCombiner &DC;
330public:
Dan Gohmanb5660dc2008-02-20 16:44:09 +0000331 explicit WorkListRemover(DAGCombiner &dc) : DC(dc) {}
Scott Michelfdc40a02009-02-17 22:15:04 +0000332
Duncan Sandsedfcf592008-06-11 11:42:12 +0000333 virtual void NodeDeleted(SDNode *N, SDNode *E) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000334 DC.removeFromWorkList(N);
335 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000336
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000337 virtual void NodeUpdated(SDNode *N) {
338 // Ignore updates.
339 }
340};
341}
342
Chris Lattner24664722006-03-01 04:53:38 +0000343//===----------------------------------------------------------------------===//
344// TargetLowering::DAGCombinerInfo implementation
345//===----------------------------------------------------------------------===//
346
347void TargetLowering::DAGCombinerInfo::AddToWorklist(SDNode *N) {
348 ((DAGCombiner*)DC)->AddToWorkList(N);
349}
350
Cameron Zwariched3caf92011-04-02 02:40:26 +0000351void TargetLowering::DAGCombinerInfo::RemoveFromWorklist(SDNode *N) {
352 ((DAGCombiner*)DC)->removeFromWorkList(N);
353}
354
Dan Gohman475871a2008-07-27 21:46:04 +0000355SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000356CombineTo(SDNode *N, const std::vector<SDValue> &To, bool AddTo) {
357 return ((DAGCombiner*)DC)->CombineTo(N, &To[0], To.size(), AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000358}
359
Dan Gohman475871a2008-07-27 21:46:04 +0000360SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000361CombineTo(SDNode *N, SDValue Res, bool AddTo) {
362 return ((DAGCombiner*)DC)->CombineTo(N, Res, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000363}
364
365
Dan Gohman475871a2008-07-27 21:46:04 +0000366SDValue TargetLowering::DAGCombinerInfo::
Evan Cheng0b0cd912009-03-28 05:57:29 +0000367CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) {
368 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo);
Chris Lattner24664722006-03-01 04:53:38 +0000369}
370
Dan Gohmane5af2d32009-01-29 01:59:02 +0000371void TargetLowering::DAGCombinerInfo::
372CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
373 return ((DAGCombiner*)DC)->CommitTargetLoweringOpt(TLO);
374}
Chris Lattner24664722006-03-01 04:53:38 +0000375
Chris Lattner24664722006-03-01 04:53:38 +0000376//===----------------------------------------------------------------------===//
Chris Lattner29446522007-05-14 22:04:50 +0000377// Helper Functions
378//===----------------------------------------------------------------------===//
379
380/// isNegatibleForFree - Return 1 if we can compute the negated form of the
381/// specified expression for the same cost as the expression itself, or 2 if we
382/// can compute the negated form more cheaply than the expression itself.
Duncan Sands25cf2272008-11-24 14:53:14 +0000383static char isNegatibleForFree(SDValue Op, bool LegalOperations,
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000384 const TargetOptions *Options,
Chris Lattner0254e702008-02-26 07:04:54 +0000385 unsigned Depth = 0) {
Dale Johannesendb44bf82007-10-16 23:38:29 +0000386 // No compile time optimizations on this type.
Owen Anderson825b72b2009-08-11 20:47:22 +0000387 if (Op.getValueType() == MVT::ppcf128)
Dale Johannesendb44bf82007-10-16 23:38:29 +0000388 return 0;
389
Chris Lattner29446522007-05-14 22:04:50 +0000390 // fneg is removable even if it has multiple uses.
391 if (Op.getOpcode() == ISD::FNEG) return 2;
Scott Michelfdc40a02009-02-17 22:15:04 +0000392
Chris Lattner29446522007-05-14 22:04:50 +0000393 // Don't allow anything with multiple uses.
394 if (!Op.hasOneUse()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000395
Chris Lattner3adf9512007-05-25 02:19:06 +0000396 // Don't recurse exponentially.
397 if (Depth > 6) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000398
Chris Lattner29446522007-05-14 22:04:50 +0000399 switch (Op.getOpcode()) {
400 default: return false;
401 case ISD::ConstantFP:
Chris Lattner0254e702008-02-26 07:04:54 +0000402 // Don't invert constant FP values after legalize. The negated constant
403 // isn't necessarily legal.
Duncan Sands25cf2272008-11-24 14:53:14 +0000404 return LegalOperations ? 0 : 1;
Chris Lattner29446522007-05-14 22:04:50 +0000405 case ISD::FADD:
406 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000407 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000408
Bill Wendlingd34470c2009-01-30 23:10:18 +0000409 // fold (fsub (fadd A, B)) -> (fsub (fneg A), B)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000410 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, Options,
411 Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000412 return V;
Bill Wendlingd34470c2009-01-30 23:10:18 +0000413 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000414 return isNegatibleForFree(Op.getOperand(1), LegalOperations, Options,
415 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000416 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000417 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000418 if (!Options->UnsafeFPMath) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000419
Bill Wendlingd34470c2009-01-30 23:10:18 +0000420 // fold (fneg (fsub A, B)) -> (fsub B, A)
Chris Lattner29446522007-05-14 22:04:50 +0000421 return 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000422
Chris Lattner29446522007-05-14 22:04:50 +0000423 case ISD::FMUL:
424 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000425 if (Options->HonorSignDependentRoundingFPMath()) return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +0000426
Bill Wendlingd34470c2009-01-30 23:10:18 +0000427 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y) or (fmul X, (fneg Y))
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000428 if (char V = isNegatibleForFree(Op.getOperand(0), LegalOperations, Options,
429 Depth + 1))
Chris Lattner29446522007-05-14 22:04:50 +0000430 return V;
Scott Michelfdc40a02009-02-17 22:15:04 +0000431
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000432 return isNegatibleForFree(Op.getOperand(1), LegalOperations, Options,
433 Depth + 1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000434
Chris Lattner29446522007-05-14 22:04:50 +0000435 case ISD::FP_EXTEND:
436 case ISD::FP_ROUND:
437 case ISD::FSIN:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000438 return isNegatibleForFree(Op.getOperand(0), LegalOperations, Options,
439 Depth + 1);
Chris Lattner29446522007-05-14 22:04:50 +0000440 }
441}
442
443/// GetNegatedExpression - If isNegatibleForFree returns true, this function
444/// returns the newly negated expression.
Dan Gohman475871a2008-07-27 21:46:04 +0000445static SDValue GetNegatedExpression(SDValue Op, SelectionDAG &DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000446 bool LegalOperations, unsigned Depth = 0) {
Chris Lattner29446522007-05-14 22:04:50 +0000447 // fneg is removable even if it has multiple uses.
448 if (Op.getOpcode() == ISD::FNEG) return Op.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +0000449
Chris Lattner29446522007-05-14 22:04:50 +0000450 // Don't allow anything with multiple uses.
451 assert(Op.hasOneUse() && "Unknown reuse!");
Scott Michelfdc40a02009-02-17 22:15:04 +0000452
Chris Lattner3adf9512007-05-25 02:19:06 +0000453 assert(Depth <= 6 && "GetNegatedExpression doesn't match isNegatibleForFree");
Chris Lattner29446522007-05-14 22:04:50 +0000454 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000455 default: llvm_unreachable("Unknown code");
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000456 case ISD::ConstantFP: {
457 APFloat V = cast<ConstantFPSDNode>(Op)->getValueAPF();
458 V.changeSign();
459 return DAG.getConstantFP(V, Op.getValueType());
460 }
Chris Lattner29446522007-05-14 22:04:50 +0000461 case ISD::FADD:
462 // FIXME: determine better conditions for this xform.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000463 assert(DAG.getTarget().Options.UnsafeFPMath);
Scott Michelfdc40a02009-02-17 22:15:04 +0000464
Bill Wendlingd34470c2009-01-30 23:10:18 +0000465 // fold (fneg (fadd A, B)) -> (fsub (fneg A), B)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000466 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
467 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000468 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000469 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000470 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000471 Op.getOperand(1));
Bill Wendlingd34470c2009-01-30 23:10:18 +0000472 // fold (fneg (fadd A, B)) -> (fsub (fneg B), A)
Bill Wendling35247c32009-01-30 00:45:56 +0000473 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000474 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000475 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000476 Op.getOperand(0));
477 case ISD::FSUB:
Scott Michelfdc40a02009-02-17 22:15:04 +0000478 // We can't turn -(A-B) into B-A when we honor signed zeros.
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000479 assert(DAG.getTarget().Options.UnsafeFPMath);
Dan Gohman23ff1822007-07-02 15:48:56 +0000480
Bill Wendlingd34470c2009-01-30 23:10:18 +0000481 // fold (fneg (fsub 0, B)) -> B
Dan Gohman23ff1822007-07-02 15:48:56 +0000482 if (ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(Op.getOperand(0)))
Dale Johannesenc4dd3c32007-08-31 23:34:27 +0000483 if (N0CFP->getValueAPF().isZero())
Dan Gohman23ff1822007-07-02 15:48:56 +0000484 return Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000485
Bill Wendlingd34470c2009-01-30 23:10:18 +0000486 // fold (fneg (fsub A, B)) -> (fsub B, A)
Bill Wendling35247c32009-01-30 00:45:56 +0000487 return DAG.getNode(ISD::FSUB, Op.getDebugLoc(), Op.getValueType(),
488 Op.getOperand(1), Op.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +0000489
Chris Lattner29446522007-05-14 22:04:50 +0000490 case ISD::FMUL:
491 case ISD::FDIV:
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000492 assert(!DAG.getTarget().Options.HonorSignDependentRoundingFPMath());
Scott Michelfdc40a02009-02-17 22:15:04 +0000493
Bill Wendlingd34470c2009-01-30 23:10:18 +0000494 // fold (fneg (fmul X, Y)) -> (fmul (fneg X), Y)
Nick Lewycky8a8d4792011-12-02 22:16:29 +0000495 if (isNegatibleForFree(Op.getOperand(0), LegalOperations,
496 &DAG.getTarget().Options, Depth+1))
Bill Wendling35247c32009-01-30 00:45:56 +0000497 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000498 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000499 LegalOperations, Depth+1),
Chris Lattner29446522007-05-14 22:04:50 +0000500 Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000501
Bill Wendlingd34470c2009-01-30 23:10:18 +0000502 // fold (fneg (fmul X, Y)) -> (fmul X, (fneg Y))
Bill Wendling35247c32009-01-30 00:45:56 +0000503 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Chris Lattner29446522007-05-14 22:04:50 +0000504 Op.getOperand(0),
Chris Lattner0254e702008-02-26 07:04:54 +0000505 GetNegatedExpression(Op.getOperand(1), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000506 LegalOperations, Depth+1));
Scott Michelfdc40a02009-02-17 22:15:04 +0000507
Chris Lattner29446522007-05-14 22:04:50 +0000508 case ISD::FP_EXTEND:
Chris Lattner29446522007-05-14 22:04:50 +0000509 case ISD::FSIN:
Bill Wendling35247c32009-01-30 00:45:56 +0000510 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000511 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000512 LegalOperations, Depth+1));
Chris Lattner0bd48932008-01-17 07:00:52 +0000513 case ISD::FP_ROUND:
Bill Wendling35247c32009-01-30 00:45:56 +0000514 return DAG.getNode(ISD::FP_ROUND, Op.getDebugLoc(), Op.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +0000515 GetNegatedExpression(Op.getOperand(0), DAG,
Duncan Sands25cf2272008-11-24 14:53:14 +0000516 LegalOperations, Depth+1),
Chris Lattner0bd48932008-01-17 07:00:52 +0000517 Op.getOperand(1));
Chris Lattner29446522007-05-14 22:04:50 +0000518 }
519}
Chris Lattner24664722006-03-01 04:53:38 +0000520
521
Nate Begeman4ebd8052005-09-01 23:24:04 +0000522// isSetCCEquivalent - Return true if this node is a setcc, or is a select_cc
523// that selects between the values 1 and 0, making it equivalent to a setcc.
Scott Michelfdc40a02009-02-17 22:15:04 +0000524// Also, set the incoming LHS, RHS, and CC references to the appropriate
Nate Begeman646d7e22005-09-02 21:18:40 +0000525// nodes based on the type of node we are checking. This simplifies life a
526// bit for the callers.
Dan Gohman475871a2008-07-27 21:46:04 +0000527static bool isSetCCEquivalent(SDValue N, SDValue &LHS, SDValue &RHS,
528 SDValue &CC) {
Nate Begeman646d7e22005-09-02 21:18:40 +0000529 if (N.getOpcode() == ISD::SETCC) {
530 LHS = N.getOperand(0);
531 RHS = N.getOperand(1);
532 CC = N.getOperand(2);
Nate Begeman4ebd8052005-09-01 23:24:04 +0000533 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000534 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000535 if (N.getOpcode() == ISD::SELECT_CC &&
Nate Begeman1d4d4142005-09-01 00:19:25 +0000536 N.getOperand(2).getOpcode() == ISD::Constant &&
537 N.getOperand(3).getOpcode() == ISD::Constant &&
Dan Gohman002e5d02008-03-13 22:13:53 +0000538 cast<ConstantSDNode>(N.getOperand(2))->getAPIntValue() == 1 &&
Nate Begeman646d7e22005-09-02 21:18:40 +0000539 cast<ConstantSDNode>(N.getOperand(3))->isNullValue()) {
540 LHS = N.getOperand(0);
541 RHS = N.getOperand(1);
542 CC = N.getOperand(4);
Nate Begeman1d4d4142005-09-01 00:19:25 +0000543 return true;
Nate Begeman646d7e22005-09-02 21:18:40 +0000544 }
Nate Begeman1d4d4142005-09-01 00:19:25 +0000545 return false;
546}
547
Nate Begeman99801192005-09-07 23:25:52 +0000548// isOneUseSetCC - Return true if this is a SetCC-equivalent operation with only
549// one use. If this is true, it allows the users to invert the operation for
550// free when it is profitable to do so.
Dan Gohman475871a2008-07-27 21:46:04 +0000551static bool isOneUseSetCC(SDValue N) {
552 SDValue N0, N1, N2;
Gabor Greifba36cb52008-08-28 21:40:38 +0000553 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
Nate Begeman4ebd8052005-09-01 23:24:04 +0000554 return true;
555 return false;
556}
557
Bill Wendling35247c32009-01-30 00:45:56 +0000558SDValue DAGCombiner::ReassociateOps(unsigned Opc, DebugLoc DL,
559 SDValue N0, SDValue N1) {
Owen Andersone50ed302009-08-10 22:56:29 +0000560 EVT VT = N0.getValueType();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000561 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1))) {
562 if (isa<ConstantSDNode>(N1)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000563 // reassoc. (op (op x, c1), c2) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000564 SDValue OpNode =
565 DAG.FoldConstantArithmetic(Opc, VT,
566 cast<ConstantSDNode>(N0.getOperand(1)),
567 cast<ConstantSDNode>(N1));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000568 return DAG.getNode(Opc, DL, VT, N0.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000569 }
570 if (N0.hasOneUse()) {
Bill Wendling35247c32009-01-30 00:45:56 +0000571 // reassoc. (op (op x, c1), y) -> (op (op x, y), c1) iff x+c1 has one use
572 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
573 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +0000574 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000575 return DAG.getNode(Opc, DL, VT, OpNode, N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000576 }
577 }
Bill Wendling35247c32009-01-30 00:45:56 +0000578
Nate Begemancd4d58c2006-02-03 06:46:56 +0000579 if (N1.getOpcode() == Opc && isa<ConstantSDNode>(N1.getOperand(1))) {
580 if (isa<ConstantSDNode>(N0)) {
Bill Wendling35247c32009-01-30 00:45:56 +0000581 // reassoc. (op c2, (op x, c1)) -> (op x, (op c1, c2))
Bill Wendling6af76182009-01-30 20:50:00 +0000582 SDValue OpNode =
583 DAG.FoldConstantArithmetic(Opc, VT,
584 cast<ConstantSDNode>(N1.getOperand(1)),
585 cast<ConstantSDNode>(N0));
Bill Wendlingd69c3142009-01-30 02:23:43 +0000586 return DAG.getNode(Opc, DL, VT, N1.getOperand(0), OpNode);
Dan Gohman71dc7c92011-05-17 22:20:36 +0000587 }
588 if (N1.hasOneUse()) {
Bill Wendling35247c32009-01-30 00:45:56 +0000589 // reassoc. (op y, (op x, c1)) -> (op (op x, y), c1) iff x+c1 has one use
Bill Wendlingd69c3142009-01-30 02:23:43 +0000590 SDValue OpNode = DAG.getNode(Opc, N0.getDebugLoc(), VT,
Bill Wendling35247c32009-01-30 00:45:56 +0000591 N1.getOperand(0), N0);
Gabor Greifba36cb52008-08-28 21:40:38 +0000592 AddToWorkList(OpNode.getNode());
Bill Wendling35247c32009-01-30 00:45:56 +0000593 return DAG.getNode(Opc, DL, VT, OpNode, N1.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +0000594 }
595 }
Bill Wendling35247c32009-01-30 00:45:56 +0000596
Dan Gohman475871a2008-07-27 21:46:04 +0000597 return SDValue();
Nate Begemancd4d58c2006-02-03 06:46:56 +0000598}
599
Dan Gohman475871a2008-07-27 21:46:04 +0000600SDValue DAGCombiner::CombineTo(SDNode *N, const SDValue *To, unsigned NumTo,
601 bool AddTo) {
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000602 assert(N->getNumValues() == NumTo && "Broken CombineTo call!");
603 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +0000604 DEBUG(dbgs() << "\nReplacing.1 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000605 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000606 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000607 To[0].getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000608 dbgs() << " and " << NumTo-1 << " other values\n";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000609 for (unsigned i = 0, e = NumTo; i != e; ++i)
Jakob Stoklund Olesen9f0d4e62009-12-03 05:15:35 +0000610 assert((!To[i].getNode() ||
611 N->getValueType(i) == To[i].getValueType()) &&
Dan Gohman764fd0c2009-01-21 15:17:51 +0000612 "Cannot combine value to value of different type!"));
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000613 WorkListRemover DeadNodes(*this);
614 DAG.ReplaceAllUsesWith(N, To, &DeadNodes);
Scott Michelfdc40a02009-02-17 22:15:04 +0000615
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000616 if (AddTo) {
617 // Push the new nodes and any users onto the worklist
618 for (unsigned i = 0, e = NumTo; i != e; ++i) {
Chris Lattnerd1980a52009-03-12 06:52:53 +0000619 if (To[i].getNode()) {
620 AddToWorkList(To[i].getNode());
621 AddUsersToWorkList(To[i].getNode());
622 }
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000623 }
624 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000625
Dan Gohmandbe664a2009-01-19 21:44:21 +0000626 // Finally, if the node is now dead, remove it from the graph. The node
627 // may not be dead if the replacement process recursively simplified to
628 // something else needing this node.
629 if (N->use_empty()) {
630 // Nodes can be reintroduced into the worklist. Make sure we do not
631 // process a node that has been replaced.
632 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +0000633
Dan Gohmandbe664a2009-01-19 21:44:21 +0000634 // Finally, since the node is now dead, remove it from the graph.
635 DAG.DeleteNode(N);
636 }
Dan Gohman475871a2008-07-27 21:46:04 +0000637 return SDValue(N, 0);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000638}
639
Evan Chenge5b51ac2010-04-17 06:13:15 +0000640void DAGCombiner::
641CommitTargetLoweringOpt(const TargetLowering::TargetLoweringOpt &TLO) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000642 // Replace all uses. If any nodes become isomorphic to other nodes and
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000643 // are deleted, make sure to remove them from our worklist.
644 WorkListRemover DeadNodes(*this);
645 DAG.ReplaceAllUsesOfValueWith(TLO.Old, TLO.New, &DeadNodes);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000646
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000647 // Push the new node and any (possibly new) users onto the worklist.
Gabor Greifba36cb52008-08-28 21:40:38 +0000648 AddToWorkList(TLO.New.getNode());
649 AddUsersToWorkList(TLO.New.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000650
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000651 // Finally, if the node is now dead, remove it from the graph. The node
652 // may not be dead if the replacement process recursively simplified to
653 // something else needing this node.
Gabor Greifba36cb52008-08-28 21:40:38 +0000654 if (TLO.Old.getNode()->use_empty()) {
655 removeFromWorkList(TLO.Old.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000656
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000657 // If the operands of this node are only used by the node, they will now
658 // be dead. Make sure to visit them first to delete dead nodes early.
Gabor Greifba36cb52008-08-28 21:40:38 +0000659 for (unsigned i = 0, e = TLO.Old.getNode()->getNumOperands(); i != e; ++i)
660 if (TLO.Old.getNode()->getOperand(i).getNode()->hasOneUse())
661 AddToWorkList(TLO.Old.getNode()->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000662
Gabor Greifba36cb52008-08-28 21:40:38 +0000663 DAG.DeleteNode(TLO.Old.getNode());
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000664 }
Dan Gohmane5af2d32009-01-29 01:59:02 +0000665}
666
667/// SimplifyDemandedBits - Check the specified integer node value to see if
668/// it can be simplified or if things it uses can be simplified by bit
669/// propagation. If so, return true.
670bool DAGCombiner::SimplifyDemandedBits(SDValue Op, const APInt &Demanded) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000671 TargetLowering::TargetLoweringOpt TLO(DAG, LegalTypes, LegalOperations);
Dan Gohmane5af2d32009-01-29 01:59:02 +0000672 APInt KnownZero, KnownOne;
673 if (!TLI.SimplifyDemandedBits(Op, Demanded, KnownZero, KnownOne, TLO))
674 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +0000675
Dan Gohmane5af2d32009-01-29 01:59:02 +0000676 // Revisit the node.
677 AddToWorkList(Op.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +0000678
Dan Gohmane5af2d32009-01-29 01:59:02 +0000679 // Replace the old value with the new one.
680 ++NodesCombined;
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000681 DEBUG(dbgs() << "\nReplacing.2 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000682 TLO.Old.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000683 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +0000684 TLO.New.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +0000685 dbgs() << '\n');
Scott Michelfdc40a02009-02-17 22:15:04 +0000686
Dan Gohmane5af2d32009-01-29 01:59:02 +0000687 CommitTargetLoweringOpt(TLO);
Chris Lattnerf8dc0612008-02-03 06:49:24 +0000688 return true;
689}
690
Evan Cheng95c57ea2010-04-24 04:43:44 +0000691void DAGCombiner::ReplaceLoadWithPromotedLoad(SDNode *Load, SDNode *ExtLoad) {
692 DebugLoc dl = Load->getDebugLoc();
693 EVT VT = Load->getValueType(0);
694 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, VT, SDValue(ExtLoad, 0));
Evan Cheng4c26e932010-04-19 19:29:22 +0000695
Evan Cheng95c57ea2010-04-24 04:43:44 +0000696 DEBUG(dbgs() << "\nReplacing.9 ";
697 Load->dump(&DAG);
698 dbgs() << "\nWith: ";
699 Trunc.getNode()->dump(&DAG);
700 dbgs() << '\n');
701 WorkListRemover DeadNodes(*this);
702 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 0), Trunc, &DeadNodes);
703 DAG.ReplaceAllUsesOfValueWith(SDValue(Load, 1), SDValue(ExtLoad, 1),
704 &DeadNodes);
705 removeFromWorkList(Load);
706 DAG.DeleteNode(Load);
Evan Chengac7eae52010-04-27 19:48:13 +0000707 AddToWorkList(Trunc.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000708}
709
710SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
711 Replace = false;
Evan Cheng4c26e932010-04-19 19:29:22 +0000712 DebugLoc dl = Op.getDebugLoc();
Evan Chenge5b51ac2010-04-17 06:13:15 +0000713 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) {
Evan Chengac7eae52010-04-27 19:48:13 +0000714 EVT MemVT = LD->getMemoryVT();
715 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000716 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000717 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000718 : LD->getExtensionType();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000719 Replace = true;
Stuart Hastingsa9011292011-02-16 16:23:55 +0000720 return DAG.getExtLoad(ExtType, dl, PVT,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000721 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000722 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000723 MemVT, LD->isVolatile(),
Evan Chenge5b51ac2010-04-17 06:13:15 +0000724 LD->isNonTemporal(), LD->getAlignment());
725 }
726
Evan Cheng4c26e932010-04-19 19:29:22 +0000727 unsigned Opc = Op.getOpcode();
Evan Chengcaf77402010-04-23 19:10:30 +0000728 switch (Opc) {
729 default: break;
730 case ISD::AssertSext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000731 return DAG.getNode(ISD::AssertSext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000732 SExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000733 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000734 case ISD::AssertZext:
Evan Cheng4c26e932010-04-19 19:29:22 +0000735 return DAG.getNode(ISD::AssertZext, dl, PVT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000736 ZExtPromoteOperand(Op.getOperand(0), PVT),
Evan Cheng4c26e932010-04-19 19:29:22 +0000737 Op.getOperand(1));
Evan Chengcaf77402010-04-23 19:10:30 +0000738 case ISD::Constant: {
739 unsigned ExtOpc =
Evan Cheng4c26e932010-04-19 19:29:22 +0000740 Op.getValueType().isByteSized() ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND;
Evan Chengcaf77402010-04-23 19:10:30 +0000741 return DAG.getNode(ExtOpc, dl, PVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000742 }
Evan Chengcaf77402010-04-23 19:10:30 +0000743 }
744
745 if (!TLI.isOperationLegal(ISD::ANY_EXTEND, PVT))
Evan Chenge5b51ac2010-04-17 06:13:15 +0000746 return SDValue();
Evan Chengcaf77402010-04-23 19:10:30 +0000747 return DAG.getNode(ISD::ANY_EXTEND, dl, PVT, Op);
Evan Cheng64b7bf72010-04-16 06:14:10 +0000748}
749
Evan Cheng95c57ea2010-04-24 04:43:44 +0000750SDValue DAGCombiner::SExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000751 if (!TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, PVT))
752 return SDValue();
753 EVT OldVT = Op.getValueType();
754 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000755 bool Replace = false;
756 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
757 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000758 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000759 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000760
761 if (Replace)
762 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
763 return DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NewOp.getValueType(), NewOp,
Evan Chenge5b51ac2010-04-17 06:13:15 +0000764 DAG.getValueType(OldVT));
765}
766
Evan Cheng95c57ea2010-04-24 04:43:44 +0000767SDValue DAGCombiner::ZExtPromoteOperand(SDValue Op, EVT PVT) {
Evan Chenge5b51ac2010-04-17 06:13:15 +0000768 EVT OldVT = Op.getValueType();
769 DebugLoc dl = Op.getDebugLoc();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000770 bool Replace = false;
771 SDValue NewOp = PromoteOperand(Op, PVT, Replace);
772 if (NewOp.getNode() == 0)
Evan Chenge5b51ac2010-04-17 06:13:15 +0000773 return SDValue();
Evan Chengac7eae52010-04-27 19:48:13 +0000774 AddToWorkList(NewOp.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000775
776 if (Replace)
777 ReplaceLoadWithPromotedLoad(Op.getNode(), NewOp.getNode());
778 return DAG.getZeroExtendInReg(NewOp, dl, OldVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000779}
780
Evan Cheng64b7bf72010-04-16 06:14:10 +0000781/// PromoteIntBinOp - Promote the specified integer binary operation if the
782/// target indicates it is beneficial. e.g. On x86, it's usually better to
783/// promote i16 operations to i32 since i16 instructions are longer.
784SDValue DAGCombiner::PromoteIntBinOp(SDValue Op) {
785 if (!LegalOperations)
786 return SDValue();
787
788 EVT VT = Op.getValueType();
789 if (VT.isVector() || !VT.isInteger())
790 return SDValue();
791
Evan Chenge5b51ac2010-04-17 06:13:15 +0000792 // If operation type is 'undesirable', e.g. i16 on x86, consider
793 // promoting it.
794 unsigned Opc = Op.getOpcode();
795 if (TLI.isTypeDesirableForOp(Opc, VT))
796 return SDValue();
797
Evan Cheng64b7bf72010-04-16 06:14:10 +0000798 EVT PVT = VT;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000799 // Consult target whether it is a good idea to promote this operation and
800 // what's the right type to promote it to.
801 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
Evan Cheng64b7bf72010-04-16 06:14:10 +0000802 assert(PVT != VT && "Don't know what type to promote to!");
803
Evan Cheng95c57ea2010-04-24 04:43:44 +0000804 bool Replace0 = false;
805 SDValue N0 = Op.getOperand(0);
806 SDValue NN0 = PromoteOperand(N0, PVT, Replace0);
807 if (NN0.getNode() == 0)
Evan Cheng07c4e102010-04-22 20:19:46 +0000808 return SDValue();
809
Evan Cheng95c57ea2010-04-24 04:43:44 +0000810 bool Replace1 = false;
811 SDValue N1 = Op.getOperand(1);
Evan Chengaad753b2010-05-10 19:03:57 +0000812 SDValue NN1;
813 if (N0 == N1)
814 NN1 = NN0;
815 else {
816 NN1 = PromoteOperand(N1, PVT, Replace1);
817 if (NN1.getNode() == 0)
818 return SDValue();
819 }
Evan Cheng07c4e102010-04-22 20:19:46 +0000820
Evan Cheng95c57ea2010-04-24 04:43:44 +0000821 AddToWorkList(NN0.getNode());
Evan Chengaad753b2010-05-10 19:03:57 +0000822 if (NN1.getNode())
823 AddToWorkList(NN1.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000824
825 if (Replace0)
826 ReplaceLoadWithPromotedLoad(N0.getNode(), NN0.getNode());
827 if (Replace1)
828 ReplaceLoadWithPromotedLoad(N1.getNode(), NN1.getNode());
Evan Cheng07c4e102010-04-22 20:19:46 +0000829
Evan Chengac7eae52010-04-27 19:48:13 +0000830 DEBUG(dbgs() << "\nPromoting ";
831 Op.getNode()->dump(&DAG));
Evan Cheng07c4e102010-04-22 20:19:46 +0000832 DebugLoc dl = Op.getDebugLoc();
833 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng95c57ea2010-04-24 04:43:44 +0000834 DAG.getNode(Opc, dl, PVT, NN0, NN1));
Evan Cheng07c4e102010-04-22 20:19:46 +0000835 }
836 return SDValue();
837}
838
839/// PromoteIntShiftOp - Promote the specified integer shift operation if the
840/// target indicates it is beneficial. e.g. On x86, it's usually better to
841/// promote i16 operations to i32 since i16 instructions are longer.
842SDValue DAGCombiner::PromoteIntShiftOp(SDValue Op) {
843 if (!LegalOperations)
844 return SDValue();
845
846 EVT VT = Op.getValueType();
847 if (VT.isVector() || !VT.isInteger())
848 return SDValue();
849
850 // If operation type is 'undesirable', e.g. i16 on x86, consider
851 // promoting it.
852 unsigned Opc = Op.getOpcode();
853 if (TLI.isTypeDesirableForOp(Opc, VT))
854 return SDValue();
855
856 EVT PVT = VT;
857 // Consult target whether it is a good idea to promote this operation and
858 // what's the right type to promote it to.
859 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
860 assert(PVT != VT && "Don't know what type to promote to!");
861
Evan Cheng95c57ea2010-04-24 04:43:44 +0000862 bool Replace = false;
Evan Chenge5b51ac2010-04-17 06:13:15 +0000863 SDValue N0 = Op.getOperand(0);
864 if (Opc == ISD::SRA)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000865 N0 = SExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000866 else if (Opc == ISD::SRL)
Evan Cheng95c57ea2010-04-24 04:43:44 +0000867 N0 = ZExtPromoteOperand(Op.getOperand(0), PVT);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000868 else
Evan Cheng95c57ea2010-04-24 04:43:44 +0000869 N0 = PromoteOperand(N0, PVT, Replace);
Evan Chenge5b51ac2010-04-17 06:13:15 +0000870 if (N0.getNode() == 0)
871 return SDValue();
Evan Cheng95c57ea2010-04-24 04:43:44 +0000872
Evan Chenge5b51ac2010-04-17 06:13:15 +0000873 AddToWorkList(N0.getNode());
Evan Cheng95c57ea2010-04-24 04:43:44 +0000874 if (Replace)
875 ReplaceLoadWithPromotedLoad(Op.getOperand(0).getNode(), N0.getNode());
Evan Cheng64b7bf72010-04-16 06:14:10 +0000876
Evan Chengac7eae52010-04-27 19:48:13 +0000877 DEBUG(dbgs() << "\nPromoting ";
878 Op.getNode()->dump(&DAG));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000879 DebugLoc dl = Op.getDebugLoc();
880 return DAG.getNode(ISD::TRUNCATE, dl, VT,
Evan Cheng07c4e102010-04-22 20:19:46 +0000881 DAG.getNode(Opc, dl, PVT, N0, Op.getOperand(1)));
Evan Cheng64b7bf72010-04-16 06:14:10 +0000882 }
883 return SDValue();
884}
885
Evan Cheng4c26e932010-04-19 19:29:22 +0000886SDValue DAGCombiner::PromoteExtend(SDValue Op) {
887 if (!LegalOperations)
888 return SDValue();
889
890 EVT VT = Op.getValueType();
891 if (VT.isVector() || !VT.isInteger())
892 return SDValue();
893
894 // If operation type is 'undesirable', e.g. i16 on x86, consider
895 // promoting it.
896 unsigned Opc = Op.getOpcode();
897 if (TLI.isTypeDesirableForOp(Opc, VT))
898 return SDValue();
899
900 EVT PVT = VT;
901 // Consult target whether it is a good idea to promote this operation and
902 // what's the right type to promote it to.
903 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
904 assert(PVT != VT && "Don't know what type to promote to!");
905 // fold (aext (aext x)) -> (aext x)
906 // fold (aext (zext x)) -> (zext x)
907 // fold (aext (sext x)) -> (sext x)
Evan Chengac7eae52010-04-27 19:48:13 +0000908 DEBUG(dbgs() << "\nPromoting ";
909 Op.getNode()->dump(&DAG));
Evan Cheng4c26e932010-04-19 19:29:22 +0000910 return DAG.getNode(Op.getOpcode(), Op.getDebugLoc(), VT, Op.getOperand(0));
911 }
912 return SDValue();
913}
914
915bool DAGCombiner::PromoteLoad(SDValue Op) {
916 if (!LegalOperations)
917 return false;
918
919 EVT VT = Op.getValueType();
920 if (VT.isVector() || !VT.isInteger())
921 return false;
922
923 // If operation type is 'undesirable', e.g. i16 on x86, consider
924 // promoting it.
925 unsigned Opc = Op.getOpcode();
926 if (TLI.isTypeDesirableForOp(Opc, VT))
927 return false;
928
929 EVT PVT = VT;
930 // Consult target whether it is a good idea to promote this operation and
931 // what's the right type to promote it to.
932 if (TLI.IsDesirableToPromoteOp(Op, PVT)) {
933 assert(PVT != VT && "Don't know what type to promote to!");
934
935 DebugLoc dl = Op.getDebugLoc();
936 SDNode *N = Op.getNode();
937 LoadSDNode *LD = cast<LoadSDNode>(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000938 EVT MemVT = LD->getMemoryVT();
939 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(LD)
Owen Anderson95771af2011-02-25 21:41:48 +0000940 ? (TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT) ? ISD::ZEXTLOAD
Eric Christopher503a64d2010-12-09 04:48:06 +0000941 : ISD::EXTLOAD)
Evan Chengac7eae52010-04-27 19:48:13 +0000942 : LD->getExtensionType();
Stuart Hastingsa9011292011-02-16 16:23:55 +0000943 SDValue NewLD = DAG.getExtLoad(ExtType, dl, PVT,
Evan Cheng4c26e932010-04-19 19:29:22 +0000944 LD->getChain(), LD->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000945 LD->getPointerInfo(),
Evan Chengac7eae52010-04-27 19:48:13 +0000946 MemVT, LD->isVolatile(),
Evan Cheng4c26e932010-04-19 19:29:22 +0000947 LD->isNonTemporal(), LD->getAlignment());
948 SDValue Result = DAG.getNode(ISD::TRUNCATE, dl, VT, NewLD);
949
Evan Cheng95c57ea2010-04-24 04:43:44 +0000950 DEBUG(dbgs() << "\nPromoting ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000951 N->dump(&DAG);
Evan Cheng95c57ea2010-04-24 04:43:44 +0000952 dbgs() << "\nTo: ";
Evan Cheng4c26e932010-04-19 19:29:22 +0000953 Result.getNode()->dump(&DAG);
954 dbgs() << '\n');
955 WorkListRemover DeadNodes(*this);
956 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result, &DeadNodes);
957 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), NewLD.getValue(1), &DeadNodes);
958 removeFromWorkList(N);
959 DAG.DeleteNode(N);
Evan Chengac7eae52010-04-27 19:48:13 +0000960 AddToWorkList(Result.getNode());
Evan Cheng4c26e932010-04-19 19:29:22 +0000961 return true;
962 }
963 return false;
964}
965
Evan Chenge5b51ac2010-04-17 06:13:15 +0000966
Chris Lattner29446522007-05-14 22:04:50 +0000967//===----------------------------------------------------------------------===//
968// Main DAG Combiner implementation
969//===----------------------------------------------------------------------===//
970
Duncan Sands25cf2272008-11-24 14:53:14 +0000971void DAGCombiner::Run(CombineLevel AtLevel) {
972 // set the instance variables, so that the various visit routines may use it.
973 Level = AtLevel;
Eli Friedman50185242011-11-12 00:35:34 +0000974 LegalOperations = Level >= AfterLegalizeVectorOps;
975 LegalTypes = Level >= AfterLegalizeTypes;
Nate Begeman4ebd8052005-09-01 23:24:04 +0000976
Evan Cheng17a568b2008-08-29 22:21:44 +0000977 // Add all the dag nodes to the worklist.
Evan Cheng17a568b2008-08-29 22:21:44 +0000978 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
979 E = DAG.allnodes_end(); I != E; ++I)
James Molloy6660c052012-02-16 09:17:04 +0000980 AddToWorkList(I);
Duncan Sands25cf2272008-11-24 14:53:14 +0000981
Evan Cheng17a568b2008-08-29 22:21:44 +0000982 // Create a dummy node (which is not added to allnodes), that adds a reference
983 // to the root node, preventing it from being deleted, and tracking any
984 // changes of the root.
985 HandleSDNode Dummy(DAG.getRoot());
Scott Michelfdc40a02009-02-17 22:15:04 +0000986
Jim Laskey26f7fa72006-10-17 19:33:52 +0000987 // The root of the dag may dangle to deleted nodes until the dag combiner is
988 // done. Set it to null to avoid confusion.
Dan Gohman475871a2008-07-27 21:46:04 +0000989 DAG.setRoot(SDValue());
Scott Michelfdc40a02009-02-17 22:15:04 +0000990
James Molloy6660c052012-02-16 09:17:04 +0000991 // while the worklist isn't empty, find a node and
Evan Cheng17a568b2008-08-29 22:21:44 +0000992 // try and combine it.
James Molloy6660c052012-02-16 09:17:04 +0000993 while (!WorkListContents.empty()) {
994 SDNode *N;
995 // The WorkListOrder holds the SDNodes in order, but it may contain duplicates.
996 // In order to avoid a linear scan, we use a set (O(log N)) to hold what the
997 // worklist *should* contain, and check the node we want to visit is should
998 // actually be visited.
999 do {
1000 N = WorkListOrder.back();
1001 WorkListOrder.pop_back();
1002 } while (!WorkListContents.erase(N));
Scott Michelfdc40a02009-02-17 22:15:04 +00001003
Evan Cheng17a568b2008-08-29 22:21:44 +00001004 // If N has no uses, it is dead. Make sure to revisit all N's operands once
1005 // N is deleted from the DAG, since they too may now be dead or may have a
1006 // reduced number of uses, allowing other xforms.
1007 if (N->use_empty() && N != &Dummy) {
1008 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1009 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001010
Evan Cheng17a568b2008-08-29 22:21:44 +00001011 DAG.DeleteNode(N);
1012 continue;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001013 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001014
Evan Cheng17a568b2008-08-29 22:21:44 +00001015 SDValue RV = combine(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001016
Evan Cheng17a568b2008-08-29 22:21:44 +00001017 if (RV.getNode() == 0)
1018 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001019
Evan Cheng17a568b2008-08-29 22:21:44 +00001020 ++NodesCombined;
Scott Michelfdc40a02009-02-17 22:15:04 +00001021
Evan Cheng17a568b2008-08-29 22:21:44 +00001022 // If we get back the same node we passed in, rather than a new node or
1023 // zero, we know that the node must have defined multiple values and
Scott Michelfdc40a02009-02-17 22:15:04 +00001024 // CombineTo was used. Since CombineTo takes care of the worklist
Evan Cheng17a568b2008-08-29 22:21:44 +00001025 // mechanics for us, we have no work to do in this case.
1026 if (RV.getNode() == N)
1027 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00001028
Evan Cheng17a568b2008-08-29 22:21:44 +00001029 assert(N->getOpcode() != ISD::DELETED_NODE &&
1030 RV.getNode()->getOpcode() != ISD::DELETED_NODE &&
1031 "Node was deleted but visit returned new node!");
Chris Lattner729c6d12006-05-27 00:43:02 +00001032
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001033 DEBUG(dbgs() << "\nReplacing.3 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001034 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001035 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00001036 RV.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00001037 dbgs() << '\n');
Eric Christopher7332e6e2011-07-14 01:12:15 +00001038
Devang Patel9728ea22011-05-23 22:04:42 +00001039 // Transfer debug value.
1040 DAG.TransferDbgValues(SDValue(N, 0), RV);
Evan Cheng17a568b2008-08-29 22:21:44 +00001041 WorkListRemover DeadNodes(*this);
1042 if (N->getNumValues() == RV.getNode()->getNumValues())
1043 DAG.ReplaceAllUsesWith(N, RV.getNode(), &DeadNodes);
1044 else {
1045 assert(N->getValueType(0) == RV.getValueType() &&
1046 N->getNumValues() == 1 && "Type mismatch");
1047 SDValue OpV = RV;
1048 DAG.ReplaceAllUsesWith(N, &OpV, &DeadNodes);
1049 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001050
Evan Cheng17a568b2008-08-29 22:21:44 +00001051 // Push the new node and any users onto the worklist
1052 AddToWorkList(RV.getNode());
1053 AddUsersToWorkList(RV.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001054
Evan Cheng17a568b2008-08-29 22:21:44 +00001055 // Add any uses of the old node to the worklist in case this node is the
1056 // last one that uses them. They may become dead after this node is
1057 // deleted.
1058 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1059 AddToWorkList(N->getOperand(i).getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00001060
Dan Gohmandbe664a2009-01-19 21:44:21 +00001061 // Finally, if the node is now dead, remove it from the graph. The node
1062 // may not be dead if the replacement process recursively simplified to
1063 // something else needing this node.
1064 if (N->use_empty()) {
1065 // Nodes can be reintroduced into the worklist. Make sure we do not
1066 // process a node that has been replaced.
1067 removeFromWorkList(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001068
Dan Gohmandbe664a2009-01-19 21:44:21 +00001069 // Finally, since the node is now dead, remove it from the graph.
1070 DAG.DeleteNode(N);
1071 }
Evan Cheng17a568b2008-08-29 22:21:44 +00001072 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001073
Chris Lattner95038592005-10-05 06:35:28 +00001074 // If the root changed (e.g. it was a dead load, update the root).
1075 DAG.setRoot(Dummy.getValue());
Nate Begeman1d4d4142005-09-01 00:19:25 +00001076}
1077
Dan Gohman475871a2008-07-27 21:46:04 +00001078SDValue DAGCombiner::visit(SDNode *N) {
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001079 switch (N->getOpcode()) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00001080 default: break;
Nate Begeman4942a962005-09-01 00:33:32 +00001081 case ISD::TokenFactor: return visitTokenFactor(N);
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001082 case ISD::MERGE_VALUES: return visitMERGE_VALUES(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001083 case ISD::ADD: return visitADD(N);
1084 case ISD::SUB: return visitSUB(N);
Chris Lattner91153682007-03-04 20:03:15 +00001085 case ISD::ADDC: return visitADDC(N);
Craig Toppercc274522012-01-07 09:06:39 +00001086 case ISD::SUBC: return visitSUBC(N);
Chris Lattner91153682007-03-04 20:03:15 +00001087 case ISD::ADDE: return visitADDE(N);
Craig Toppercc274522012-01-07 09:06:39 +00001088 case ISD::SUBE: return visitSUBE(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001089 case ISD::MUL: return visitMUL(N);
1090 case ISD::SDIV: return visitSDIV(N);
1091 case ISD::UDIV: return visitUDIV(N);
1092 case ISD::SREM: return visitSREM(N);
1093 case ISD::UREM: return visitUREM(N);
1094 case ISD::MULHU: return visitMULHU(N);
1095 case ISD::MULHS: return visitMULHS(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001096 case ISD::SMUL_LOHI: return visitSMUL_LOHI(N);
1097 case ISD::UMUL_LOHI: return visitUMUL_LOHI(N);
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00001098 case ISD::SMULO: return visitSMULO(N);
1099 case ISD::UMULO: return visitUMULO(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001100 case ISD::SDIVREM: return visitSDIVREM(N);
1101 case ISD::UDIVREM: return visitUDIVREM(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001102 case ISD::AND: return visitAND(N);
1103 case ISD::OR: return visitOR(N);
1104 case ISD::XOR: return visitXOR(N);
1105 case ISD::SHL: return visitSHL(N);
1106 case ISD::SRA: return visitSRA(N);
1107 case ISD::SRL: return visitSRL(N);
1108 case ISD::CTLZ: return visitCTLZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001109 case ISD::CTLZ_ZERO_UNDEF: return visitCTLZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001110 case ISD::CTTZ: return visitCTTZ(N);
Chandler Carruth63974b22011-12-13 01:56:10 +00001111 case ISD::CTTZ_ZERO_UNDEF: return visitCTTZ_ZERO_UNDEF(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001112 case ISD::CTPOP: return visitCTPOP(N);
Nate Begeman452d7beb2005-09-16 00:54:12 +00001113 case ISD::SELECT: return visitSELECT(N);
1114 case ISD::SELECT_CC: return visitSELECT_CC(N);
1115 case ISD::SETCC: return visitSETCC(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001116 case ISD::SIGN_EXTEND: return visitSIGN_EXTEND(N);
1117 case ISD::ZERO_EXTEND: return visitZERO_EXTEND(N);
Chris Lattner5ffc0662006-05-05 05:58:59 +00001118 case ISD::ANY_EXTEND: return visitANY_EXTEND(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001119 case ISD::SIGN_EXTEND_INREG: return visitSIGN_EXTEND_INREG(N);
1120 case ISD::TRUNCATE: return visitTRUNCATE(N);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001121 case ISD::BITCAST: return visitBITCAST(N);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00001122 case ISD::BUILD_PAIR: return visitBUILD_PAIR(N);
Chris Lattner01b3d732005-09-28 22:28:18 +00001123 case ISD::FADD: return visitFADD(N);
1124 case ISD::FSUB: return visitFSUB(N);
1125 case ISD::FMUL: return visitFMUL(N);
1126 case ISD::FDIV: return visitFDIV(N);
1127 case ISD::FREM: return visitFREM(N);
Chris Lattner12d83032006-03-05 05:30:57 +00001128 case ISD::FCOPYSIGN: return visitFCOPYSIGN(N);
Nate Begeman646d7e22005-09-02 21:18:40 +00001129 case ISD::SINT_TO_FP: return visitSINT_TO_FP(N);
1130 case ISD::UINT_TO_FP: return visitUINT_TO_FP(N);
1131 case ISD::FP_TO_SINT: return visitFP_TO_SINT(N);
1132 case ISD::FP_TO_UINT: return visitFP_TO_UINT(N);
1133 case ISD::FP_ROUND: return visitFP_ROUND(N);
1134 case ISD::FP_ROUND_INREG: return visitFP_ROUND_INREG(N);
1135 case ISD::FP_EXTEND: return visitFP_EXTEND(N);
1136 case ISD::FNEG: return visitFNEG(N);
1137 case ISD::FABS: return visitFABS(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001138 case ISD::BRCOND: return visitBRCOND(N);
Nate Begeman44728a72005-09-19 22:34:01 +00001139 case ISD::BR_CC: return visitBR_CC(N);
Chris Lattner01a22022005-10-10 22:04:48 +00001140 case ISD::LOAD: return visitLOAD(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00001141 case ISD::STORE: return visitSTORE(N);
Chris Lattnerca242442006-03-19 01:27:56 +00001142 case ISD::INSERT_VECTOR_ELT: return visitINSERT_VECTOR_ELT(N);
Evan Cheng513da432007-10-06 08:19:55 +00001143 case ISD::EXTRACT_VECTOR_ELT: return visitEXTRACT_VECTOR_ELT(N);
Dan Gohman7f321562007-06-25 16:23:39 +00001144 case ISD::BUILD_VECTOR: return visitBUILD_VECTOR(N);
1145 case ISD::CONCAT_VECTORS: return visitCONCAT_VECTORS(N);
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00001146 case ISD::EXTRACT_SUBVECTOR: return visitEXTRACT_SUBVECTOR(N);
Chris Lattner66445d32006-03-28 22:11:53 +00001147 case ISD::VECTOR_SHUFFLE: return visitVECTOR_SHUFFLE(N);
Jim Grosbach9a526492010-06-23 16:07:42 +00001148 case ISD::MEMBARRIER: return visitMEMBARRIER(N);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001149 }
Dan Gohman475871a2008-07-27 21:46:04 +00001150 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001151}
1152
Dan Gohman475871a2008-07-27 21:46:04 +00001153SDValue DAGCombiner::combine(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00001154 SDValue RV = visit(N);
Dan Gohman389079b2007-10-08 17:57:15 +00001155
1156 // If nothing happened, try a target-specific DAG combine.
Gabor Greifba36cb52008-08-28 21:40:38 +00001157 if (RV.getNode() == 0) {
Dan Gohman389079b2007-10-08 17:57:15 +00001158 assert(N->getOpcode() != ISD::DELETED_NODE &&
1159 "Node was deleted but visit returned NULL!");
1160
1161 if (N->getOpcode() >= ISD::BUILTIN_OP_END ||
1162 TLI.hasTargetDAGCombine((ISD::NodeType)N->getOpcode())) {
1163
1164 // Expose the DAG combiner to the target combiner impls.
Scott Michelfdc40a02009-02-17 22:15:04 +00001165 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00001166 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dan Gohman389079b2007-10-08 17:57:15 +00001167
1168 RV = TLI.PerformDAGCombine(N, DagCombineInfo);
1169 }
1170 }
1171
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001172 // If nothing happened still, try promoting the operation.
1173 if (RV.getNode() == 0) {
1174 switch (N->getOpcode()) {
1175 default: break;
1176 case ISD::ADD:
1177 case ISD::SUB:
1178 case ISD::MUL:
1179 case ISD::AND:
1180 case ISD::OR:
1181 case ISD::XOR:
1182 RV = PromoteIntBinOp(SDValue(N, 0));
1183 break;
1184 case ISD::SHL:
1185 case ISD::SRA:
1186 case ISD::SRL:
1187 RV = PromoteIntShiftOp(SDValue(N, 0));
1188 break;
1189 case ISD::SIGN_EXTEND:
1190 case ISD::ZERO_EXTEND:
1191 case ISD::ANY_EXTEND:
1192 RV = PromoteExtend(SDValue(N, 0));
1193 break;
1194 case ISD::LOAD:
1195 if (PromoteLoad(SDValue(N, 0)))
1196 RV = SDValue(N, 0);
1197 break;
1198 }
1199 }
1200
Scott Michelfdc40a02009-02-17 22:15:04 +00001201 // If N is a commutative binary node, try commuting it to enable more
Evan Cheng08b11732008-03-22 01:55:50 +00001202 // sdisel CSE.
Scott Michelfdc40a02009-02-17 22:15:04 +00001203 if (RV.getNode() == 0 &&
Evan Cheng08b11732008-03-22 01:55:50 +00001204 SelectionDAG::isCommutativeBinOp(N->getOpcode()) &&
1205 N->getNumValues() == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00001206 SDValue N0 = N->getOperand(0);
1207 SDValue N1 = N->getOperand(1);
Bill Wendling5c71acf2009-01-30 01:13:16 +00001208
Evan Cheng08b11732008-03-22 01:55:50 +00001209 // Constant operands are canonicalized to RHS.
1210 if (isa<ConstantSDNode>(N0) || !isa<ConstantSDNode>(N1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001211 SDValue Ops[] = { N1, N0 };
Evan Cheng08b11732008-03-22 01:55:50 +00001212 SDNode *CSENode = DAG.getNodeIfExists(N->getOpcode(), N->getVTList(),
1213 Ops, 2);
Evan Chengea100462008-03-24 23:55:16 +00001214 if (CSENode)
Dan Gohman475871a2008-07-27 21:46:04 +00001215 return SDValue(CSENode, 0);
Evan Cheng08b11732008-03-22 01:55:50 +00001216 }
1217 }
1218
Dan Gohman389079b2007-10-08 17:57:15 +00001219 return RV;
Scott Michelfdc40a02009-02-17 22:15:04 +00001220}
Dan Gohman389079b2007-10-08 17:57:15 +00001221
Chris Lattner6270f682006-10-08 22:57:01 +00001222/// getInputChainForNode - Given a node, return its input chain if it has one,
1223/// otherwise return a null sd operand.
Dan Gohman475871a2008-07-27 21:46:04 +00001224static SDValue getInputChainForNode(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001225 if (unsigned NumOps = N->getNumOperands()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001226 if (N->getOperand(0).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001227 return N->getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001228 else if (N->getOperand(NumOps-1).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001229 return N->getOperand(NumOps-1);
1230 for (unsigned i = 1; i < NumOps-1; ++i)
Owen Anderson825b72b2009-08-11 20:47:22 +00001231 if (N->getOperand(i).getValueType() == MVT::Other)
Chris Lattner6270f682006-10-08 22:57:01 +00001232 return N->getOperand(i);
1233 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001234 return SDValue();
Chris Lattner6270f682006-10-08 22:57:01 +00001235}
1236
Dan Gohman475871a2008-07-27 21:46:04 +00001237SDValue DAGCombiner::visitTokenFactor(SDNode *N) {
Chris Lattner6270f682006-10-08 22:57:01 +00001238 // If N has two operands, where one has an input chain equal to the other,
1239 // the 'other' chain is redundant.
1240 if (N->getNumOperands() == 2) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001241 if (getInputChainForNode(N->getOperand(0).getNode()) == N->getOperand(1))
Chris Lattner6270f682006-10-08 22:57:01 +00001242 return N->getOperand(0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001243 if (getInputChainForNode(N->getOperand(1).getNode()) == N->getOperand(0))
Chris Lattner6270f682006-10-08 22:57:01 +00001244 return N->getOperand(1);
1245 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001246
Chris Lattnerc76d4412007-05-16 06:37:59 +00001247 SmallVector<SDNode *, 8> TFs; // List of token factors to visit.
Dan Gohman475871a2008-07-27 21:46:04 +00001248 SmallVector<SDValue, 8> Ops; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001249 SmallPtrSet<SDNode*, 16> SeenOps;
Chris Lattnerc76d4412007-05-16 06:37:59 +00001250 bool Changed = false; // If we should replace this token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00001251
Jim Laskey6ff23e52006-10-04 16:53:27 +00001252 // Start out with this token factor.
Jim Laskey279f0532006-09-25 16:29:54 +00001253 TFs.push_back(N);
Scott Michelfdc40a02009-02-17 22:15:04 +00001254
Jim Laskey71382342006-10-07 23:37:56 +00001255 // Iterate through token factors. The TFs grows when new token factors are
Jim Laskeybc588b82006-10-05 15:07:25 +00001256 // encountered.
1257 for (unsigned i = 0; i < TFs.size(); ++i) {
1258 SDNode *TF = TFs[i];
Scott Michelfdc40a02009-02-17 22:15:04 +00001259
Jim Laskey6ff23e52006-10-04 16:53:27 +00001260 // Check each of the operands.
1261 for (unsigned i = 0, ie = TF->getNumOperands(); i != ie; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001262 SDValue Op = TF->getOperand(i);
Scott Michelfdc40a02009-02-17 22:15:04 +00001263
Jim Laskey6ff23e52006-10-04 16:53:27 +00001264 switch (Op.getOpcode()) {
1265 case ISD::EntryToken:
Jim Laskeybc588b82006-10-05 15:07:25 +00001266 // Entry tokens don't need to be added to the list. They are
1267 // rededundant.
1268 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001269 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001270
Jim Laskey6ff23e52006-10-04 16:53:27 +00001271 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00001272 if (Op.hasOneUse() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001273 std::find(TFs.begin(), TFs.end(), Op.getNode()) == TFs.end()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001274 // Queue up for processing.
Gabor Greifba36cb52008-08-28 21:40:38 +00001275 TFs.push_back(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001276 // Clean up in case the token factor is removed.
Gabor Greifba36cb52008-08-28 21:40:38 +00001277 AddToWorkList(Op.getNode());
Jim Laskey6ff23e52006-10-04 16:53:27 +00001278 Changed = true;
1279 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001280 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001281 // Fall thru
Scott Michelfdc40a02009-02-17 22:15:04 +00001282
Jim Laskey6ff23e52006-10-04 16:53:27 +00001283 default:
Chris Lattnerc76d4412007-05-16 06:37:59 +00001284 // Only add if it isn't already in the list.
Gabor Greifba36cb52008-08-28 21:40:38 +00001285 if (SeenOps.insert(Op.getNode()))
Jim Laskeybc588b82006-10-05 15:07:25 +00001286 Ops.push_back(Op);
Chris Lattnerc76d4412007-05-16 06:37:59 +00001287 else
1288 Changed = true;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001289 break;
Jim Laskey279f0532006-09-25 16:29:54 +00001290 }
1291 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00001292 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001293
Dan Gohman475871a2008-07-27 21:46:04 +00001294 SDValue Result;
Jim Laskey6ff23e52006-10-04 16:53:27 +00001295
1296 // If we've change things around then replace token factor.
1297 if (Changed) {
Dan Gohman30359592008-01-29 13:02:09 +00001298 if (Ops.empty()) {
Jim Laskey6ff23e52006-10-04 16:53:27 +00001299 // The entry token is the only possible outcome.
1300 Result = DAG.getEntryNode();
1301 } else {
1302 // New and improved token factor.
Bill Wendling5c71acf2009-01-30 01:13:16 +00001303 Result = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001304 MVT::Other, &Ops[0], Ops.size());
Nate Begemanded49632005-10-13 03:11:28 +00001305 }
Bill Wendling5c71acf2009-01-30 01:13:16 +00001306
Jim Laskey274062c2006-10-13 23:32:28 +00001307 // Don't add users to work list.
1308 return CombineTo(N, Result, false);
Nate Begemanded49632005-10-13 03:11:28 +00001309 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001310
Jim Laskey6ff23e52006-10-04 16:53:27 +00001311 return Result;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001312}
1313
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001314/// MERGE_VALUES can always be eliminated.
Dan Gohman475871a2008-07-27 21:46:04 +00001315SDValue DAGCombiner::visitMERGE_VALUES(SDNode *N) {
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001316 WorkListRemover DeadNodes(*this);
Dan Gohman00edf392009-08-10 23:43:19 +00001317 // Replacing results may cause a different MERGE_VALUES to suddenly
1318 // be CSE'd with N, and carry its uses with it. Iterate until no
1319 // uses remain, to ensure that the node can be safely deleted.
1320 do {
1321 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
1322 DAG.ReplaceAllUsesOfValueWith(SDValue(N, i), N->getOperand(i),
1323 &DeadNodes);
1324 } while (!N->use_empty());
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001325 removeFromWorkList(N);
1326 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00001327 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnerfec42eb2008-02-13 07:25:05 +00001328}
1329
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001330static
Bill Wendlingd69c3142009-01-30 02:23:43 +00001331SDValue combineShlAddConstant(DebugLoc DL, SDValue N0, SDValue N1,
1332 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00001333 EVT VT = N0.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00001334 SDValue N00 = N0.getOperand(0);
1335 SDValue N01 = N0.getOperand(1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001336 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N01);
Bill Wendlingd69c3142009-01-30 02:23:43 +00001337
Gabor Greifba36cb52008-08-28 21:40:38 +00001338 if (N01C && N00.getOpcode() == ISD::ADD && N00.getNode()->hasOneUse() &&
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001339 isa<ConstantSDNode>(N00.getOperand(1))) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001340 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
1341 N0 = DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT,
1342 DAG.getNode(ISD::SHL, N00.getDebugLoc(), VT,
1343 N00.getOperand(0), N01),
1344 DAG.getNode(ISD::SHL, N01.getDebugLoc(), VT,
1345 N00.getOperand(1), N01));
1346 return DAG.getNode(ISD::ADD, DL, VT, N0, N1);
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001347 }
Bill Wendlingd69c3142009-01-30 02:23:43 +00001348
Dan Gohman475871a2008-07-27 21:46:04 +00001349 return SDValue();
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001350}
1351
Dan Gohman475871a2008-07-27 21:46:04 +00001352SDValue DAGCombiner::visitADD(SDNode *N) {
1353 SDValue N0 = N->getOperand(0);
1354 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001355 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1356 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001357 EVT VT = N0.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00001358
1359 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001360 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001361 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001362 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001363 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001364
Dan Gohman613e0d82007-07-03 14:03:57 +00001365 // fold (add x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001366 if (N0.getOpcode() == ISD::UNDEF)
1367 return N0;
1368 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001369 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001370 // fold (add c1, c2) -> c1+c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001371 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001372 return DAG.FoldConstantArithmetic(ISD::ADD, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001373 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001374 if (N0C && !N1C)
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001375 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001376 // fold (add x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00001377 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001378 return N0;
Dan Gohman6520e202008-10-18 02:06:02 +00001379 // fold (add Sym, c) -> Sym+c
1380 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001381 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA) && N1C &&
Dan Gohman6520e202008-10-18 02:06:02 +00001382 GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001383 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001384 GA->getOffset() +
1385 (uint64_t)N1C->getSExtValue());
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001386 // fold ((c1-A)+c2) -> (c1+c2)-A
1387 if (N1C && N0.getOpcode() == ISD::SUB)
1388 if (ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getOperand(0)))
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001389 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
Dan Gohman002e5d02008-03-13 22:13:53 +00001390 DAG.getConstant(N1C->getAPIntValue()+
1391 N0C->getAPIntValue(), VT),
Chris Lattner4aafb4f2006-01-12 20:22:43 +00001392 N0.getOperand(1));
Nate Begemancd4d58c2006-02-03 06:46:56 +00001393 // reassociate add
Bill Wendling35247c32009-01-30 00:45:56 +00001394 SDValue RADD = ReassociateOps(ISD::ADD, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001395 if (RADD.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001396 return RADD;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001397 // fold ((0-A) + B) -> B-A
1398 if (N0.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N0.getOperand(0)) &&
1399 cast<ConstantSDNode>(N0.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001400 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1, N0.getOperand(1));
Nate Begeman1d4d4142005-09-01 00:19:25 +00001401 // fold (A + (0-B)) -> A-B
1402 if (N1.getOpcode() == ISD::SUB && isa<ConstantSDNode>(N1.getOperand(0)) &&
1403 cast<ConstantSDNode>(N1.getOperand(0))->isNullValue())
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001404 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1.getOperand(1));
Chris Lattner01b3d732005-09-28 22:28:18 +00001405 // fold (A+(B-A)) -> B
1406 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(1))
Nate Begeman83e75ec2005-09-06 04:43:02 +00001407 return N1.getOperand(0);
Dale Johannesen56eca912008-11-27 00:43:21 +00001408 // fold ((B-A)+A) -> B
1409 if (N0.getOpcode() == ISD::SUB && N1 == N0.getOperand(1))
1410 return N0.getOperand(0);
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001411 // fold (A+(B-(A+C))) to (B-C)
1412 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001413 N0 == N1.getOperand(1).getOperand(0))
1414 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001415 N1.getOperand(1).getOperand(1));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001416 // fold (A+(B-(C+A))) to (B-C)
1417 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1).getOpcode() == ISD::ADD &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001418 N0 == N1.getOperand(1).getOperand(1))
1419 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1.getOperand(0),
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001420 N1.getOperand(1).getOperand(0));
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001421 // fold (A+((B-A)+or-C)) to (B+or-C)
Dale Johannesen34d79852008-12-02 18:40:40 +00001422 if ((N1.getOpcode() == ISD::SUB || N1.getOpcode() == ISD::ADD) &&
1423 N1.getOperand(0).getOpcode() == ISD::SUB &&
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001424 N0 == N1.getOperand(0).getOperand(1))
1425 return DAG.getNode(N1.getOpcode(), N->getDebugLoc(), VT,
1426 N1.getOperand(0).getOperand(0), N1.getOperand(1));
Dale Johannesen34d79852008-12-02 18:40:40 +00001427
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001428 // fold (A-B)+(C-D) to (A+C)-(B+D) when A or C is constant
1429 if (N0.getOpcode() == ISD::SUB && N1.getOpcode() == ISD::SUB) {
1430 SDValue N00 = N0.getOperand(0);
1431 SDValue N01 = N0.getOperand(1);
1432 SDValue N10 = N1.getOperand(0);
1433 SDValue N11 = N1.getOperand(1);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001434
1435 if (isa<ConstantSDNode>(N00) || isa<ConstantSDNode>(N10))
1436 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1437 DAG.getNode(ISD::ADD, N0.getDebugLoc(), VT, N00, N10),
1438 DAG.getNode(ISD::ADD, N1.getDebugLoc(), VT, N01, N11));
Dale Johannesen221cd2f2008-12-02 01:30:54 +00001439 }
Chris Lattner947c2892006-03-13 06:51:27 +00001440
Dan Gohman475871a2008-07-27 21:46:04 +00001441 if (!VT.isVector() && SimplifyDemandedBits(SDValue(N, 0)))
1442 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001443
Chris Lattner947c2892006-03-13 06:51:27 +00001444 // fold (a+b) -> (a|b) iff a and b share no bits.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001445 if (VT.isInteger() && !VT.isVector()) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00001446 APInt LHSZero, LHSOne;
1447 APInt RHSZero, RHSOne;
Dan Gohman5b870af2010-03-02 02:14:38 +00001448 APInt Mask = APInt::getAllOnesValue(VT.getScalarType().getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00001449 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001450
Dan Gohman948d8ea2008-02-20 16:33:30 +00001451 if (LHSZero.getBoolValue()) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001452 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001453
Chris Lattner947c2892006-03-13 06:51:27 +00001454 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1455 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1456 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
1457 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
Bill Wendlingf4eb2262009-01-30 02:31:17 +00001458 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1);
Chris Lattner947c2892006-03-13 06:51:27 +00001459 }
1460 }
Evan Cheng3ef554d2006-11-06 08:14:30 +00001461
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001462 // fold (add (shl (add x, c1), c2), ) -> (add (add (shl x, c2), c1<<c2), )
Gabor Greifba36cb52008-08-28 21:40:38 +00001463 if (N0.getOpcode() == ISD::SHL && N0.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001464 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N0, N1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001465 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001466 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001467 if (N1.getOpcode() == ISD::SHL && N1.getNode()->hasOneUse()) {
Bill Wendlingd69c3142009-01-30 02:23:43 +00001468 SDValue Result = combineShlAddConstant(N->getDebugLoc(), N1, N0, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001469 if (Result.getNode()) return Result;
Evan Cheng42d7ccf2007-01-19 17:51:44 +00001470 }
1471
Dan Gohmancd9e1552010-01-19 23:30:49 +00001472 // fold (add x, shl(0 - y, n)) -> sub(x, shl(y, n))
1473 if (N1.getOpcode() == ISD::SHL &&
1474 N1.getOperand(0).getOpcode() == ISD::SUB)
1475 if (ConstantSDNode *C =
1476 dyn_cast<ConstantSDNode>(N1.getOperand(0).getOperand(0)))
1477 if (C->getAPIntValue() == 0)
1478 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0,
1479 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1480 N1.getOperand(0).getOperand(1),
1481 N1.getOperand(1)));
1482 if (N0.getOpcode() == ISD::SHL &&
1483 N0.getOperand(0).getOpcode() == ISD::SUB)
1484 if (ConstantSDNode *C =
1485 dyn_cast<ConstantSDNode>(N0.getOperand(0).getOperand(0)))
1486 if (C->getAPIntValue() == 0)
1487 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N1,
1488 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1489 N0.getOperand(0).getOperand(1),
1490 N0.getOperand(1)));
1491
Owen Andersonbc146b02010-09-21 20:42:50 +00001492 if (N1.getOpcode() == ISD::AND) {
1493 SDValue AndOp0 = N1.getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001494 ConstantSDNode *AndOp1 = dyn_cast<ConstantSDNode>(N1->getOperand(1));
Owen Andersonbc146b02010-09-21 20:42:50 +00001495 unsigned NumSignBits = DAG.ComputeNumSignBits(AndOp0);
1496 unsigned DestBits = VT.getScalarType().getSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001497
Owen Andersonbc146b02010-09-21 20:42:50 +00001498 // (add z, (and (sbbl x, x), 1)) -> (sub z, (sbbl x, x))
1499 // and similar xforms where the inner op is either ~0 or 0.
1500 if (NumSignBits == DestBits && AndOp1 && AndOp1->isOne()) {
1501 DebugLoc DL = N->getDebugLoc();
1502 return DAG.getNode(ISD::SUB, DL, VT, N->getOperand(0), AndOp0);
1503 }
1504 }
1505
Benjamin Kramerf50125e2010-12-22 23:17:45 +00001506 // add (sext i1), X -> sub X, (zext i1)
1507 if (N0.getOpcode() == ISD::SIGN_EXTEND &&
1508 N0.getOperand(0).getValueType() == MVT::i1 &&
1509 !TLI.isOperationLegal(ISD::SIGN_EXTEND, MVT::i1)) {
1510 DebugLoc DL = N->getDebugLoc();
1511 SDValue ZExt = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0));
1512 return DAG.getNode(ISD::SUB, DL, VT, N1, ZExt);
1513 }
1514
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001515 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001516}
1517
Dan Gohman475871a2008-07-27 21:46:04 +00001518SDValue DAGCombiner::visitADDC(SDNode *N) {
1519 SDValue N0 = N->getOperand(0);
1520 SDValue N1 = N->getOperand(1);
Chris Lattner91153682007-03-04 20:03:15 +00001521 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1522 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001523 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001524
Chris Lattner91153682007-03-04 20:03:15 +00001525 // If the flag result is dead, turn this into an ADD.
Craig Topper704e1a02012-01-07 18:31:09 +00001526 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001527 return CombineTo(N, DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001528 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001529 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001530
Chris Lattner91153682007-03-04 20:03:15 +00001531 // canonicalize constant to RHS.
Dan Gohman0a4627d2008-06-23 15:29:14 +00001532 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001533 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N1, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001534
Chris Lattnerb6541762007-03-04 20:40:38 +00001535 // fold (addc x, 0) -> x + no carry out
1536 if (N1C && N1C->isNullValue())
Dale Johannesen874ae252009-06-02 03:12:52 +00001537 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001538 N->getDebugLoc(), MVT::Glue));
Scott Michelfdc40a02009-02-17 22:15:04 +00001539
Dale Johannesen874ae252009-06-02 03:12:52 +00001540 // fold (addc a, b) -> (or a, b), CARRY_FALSE iff a and b share no bits.
Dan Gohman948d8ea2008-02-20 16:33:30 +00001541 APInt LHSZero, LHSOne;
1542 APInt RHSZero, RHSOne;
Dan Gohman5b870af2010-03-02 02:14:38 +00001543 APInt Mask = APInt::getAllOnesValue(VT.getScalarType().getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00001544 DAG.ComputeMaskedBits(N0, Mask, LHSZero, LHSOne);
Bill Wendling14036c02009-01-30 02:38:00 +00001545
Dan Gohman948d8ea2008-02-20 16:33:30 +00001546 if (LHSZero.getBoolValue()) {
Dan Gohmanea859be2007-06-22 14:59:07 +00001547 DAG.ComputeMaskedBits(N1, Mask, RHSZero, RHSOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00001548
Chris Lattnerb6541762007-03-04 20:40:38 +00001549 // If all possibly-set bits on the LHS are clear on the RHS, return an OR.
1550 // If all possibly-set bits on the RHS are clear on the LHS, return an OR.
1551 if ((RHSZero & (~LHSZero & Mask)) == (~LHSZero & Mask) ||
1552 (LHSZero & (~RHSZero & Mask)) == (~RHSZero & Mask))
Bill Wendling14036c02009-01-30 02:38:00 +00001553 return CombineTo(N, DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N1),
Dale Johannesen874ae252009-06-02 03:12:52 +00001554 DAG.getNode(ISD::CARRY_FALSE,
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001555 N->getDebugLoc(), MVT::Glue));
Chris Lattnerb6541762007-03-04 20:40:38 +00001556 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001557
Dan Gohman475871a2008-07-27 21:46:04 +00001558 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001559}
1560
Dan Gohman475871a2008-07-27 21:46:04 +00001561SDValue DAGCombiner::visitADDE(SDNode *N) {
1562 SDValue N0 = N->getOperand(0);
1563 SDValue N1 = N->getOperand(1);
1564 SDValue CarryIn = N->getOperand(2);
Chris Lattner91153682007-03-04 20:03:15 +00001565 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1566 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001567
Chris Lattner91153682007-03-04 20:03:15 +00001568 // canonicalize constant to RHS
Dan Gohman0a4627d2008-06-23 15:29:14 +00001569 if (N0C && !N1C)
Bill Wendling14036c02009-01-30 02:38:00 +00001570 return DAG.getNode(ISD::ADDE, N->getDebugLoc(), N->getVTList(),
1571 N1, N0, CarryIn);
Scott Michelfdc40a02009-02-17 22:15:04 +00001572
Chris Lattnerb6541762007-03-04 20:40:38 +00001573 // fold (adde x, y, false) -> (addc x, y)
Dale Johannesen874ae252009-06-02 03:12:52 +00001574 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
Craig Toppercc274522012-01-07 09:06:39 +00001575 return DAG.getNode(ISD::ADDC, N->getDebugLoc(), N->getVTList(), N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00001576
Dan Gohman475871a2008-07-27 21:46:04 +00001577 return SDValue();
Chris Lattner91153682007-03-04 20:03:15 +00001578}
1579
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001580// Since it may not be valid to emit a fold to zero for vector initializers
1581// check if we can before folding.
1582static SDValue tryFoldToZero(DebugLoc DL, const TargetLowering &TLI, EVT VT,
Owen Anderson95771af2011-02-25 21:41:48 +00001583 SelectionDAG &DAG, bool LegalOperations) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001584 if (!VT.isVector()) {
1585 return DAG.getConstant(0, VT);
Dan Gohman71dc7c92011-05-17 22:20:36 +00001586 }
1587 if (!LegalOperations || TLI.isOperationLegal(ISD::BUILD_VECTOR, VT)) {
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001588 // Produce a vector of zeros.
1589 SDValue El = DAG.getConstant(0, VT.getVectorElementType());
1590 std::vector<SDValue> Ops(VT.getVectorNumElements(), El);
1591 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT,
1592 &Ops[0], Ops.size());
1593 }
1594 return SDValue();
1595}
1596
Dan Gohman475871a2008-07-27 21:46:04 +00001597SDValue DAGCombiner::visitSUB(SDNode *N) {
1598 SDValue N0 = N->getOperand(0);
1599 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001600 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1601 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Eric Christopher7332e6e2011-07-14 01:12:15 +00001602 ConstantSDNode *N1C1 = N1.getOpcode() != ISD::ADD ? 0 :
1603 dyn_cast<ConstantSDNode>(N1.getOperand(1).getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001604 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001605
Dan Gohman7f321562007-06-25 16:23:39 +00001606 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001607 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001608 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001609 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001610 }
Bill Wendling2476e5d2008-12-10 22:36:00 +00001611
Chris Lattner854077d2005-10-17 01:07:11 +00001612 // fold (sub x, x) -> 0
Eric Christopher169e1552011-02-16 01:10:03 +00001613 // FIXME: Refactor this and xor and other similar operations together.
Eric Christopher7bccf6a2011-02-16 04:50:12 +00001614 if (N0 == N1)
1615 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001616 // fold (sub c1, c2) -> c1-c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001617 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001618 return DAG.FoldConstantArithmetic(ISD::SUB, VT, N0C, N1C);
Chris Lattner05b57432005-10-11 06:07:15 +00001619 // fold (sub x, c) -> (add x, -c)
1620 if (N1C)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001621 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001622 DAG.getConstant(-N1C->getAPIntValue(), VT));
Evan Cheng1ad0e8b2010-01-18 21:38:44 +00001623 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1)
1624 if (N0C && N0C->isAllOnesValue())
1625 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Benjamin Kramer2c94b422011-01-29 12:34:05 +00001626 // fold A-(A-B) -> B
1627 if (N1.getOpcode() == ISD::SUB && N0 == N1.getOperand(0))
1628 return N1.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001629 // fold (A+B)-A -> B
Chris Lattner01b3d732005-09-28 22:28:18 +00001630 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00001631 return N0.getOperand(1);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001632 // fold (A+B)-B -> A
Chris Lattner01b3d732005-09-28 22:28:18 +00001633 if (N0.getOpcode() == ISD::ADD && N0.getOperand(1) == N1)
Scott Michelfdc40a02009-02-17 22:15:04 +00001634 return N0.getOperand(0);
Eric Christopher7332e6e2011-07-14 01:12:15 +00001635 // fold C2-(A+C1) -> (C2-C1)-A
1636 if (N1.getOpcode() == ISD::ADD && N0C && N1C1) {
1637 SDValue NewC = DAG.getConstant((N0C->getAPIntValue() - N1C1->getAPIntValue()), VT);
1638 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, NewC,
1639 N1.getOperand(0));
1640 }
Dale Johannesen7c7bc722008-12-23 23:47:22 +00001641 // fold ((A+(B+or-C))-B) -> A+or-C
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001642 if (N0.getOpcode() == ISD::ADD &&
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001643 (N0.getOperand(1).getOpcode() == ISD::SUB ||
1644 N0.getOperand(1).getOpcode() == ISD::ADD) &&
Dale Johannesenfd3b7b72008-12-16 22:13:49 +00001645 N0.getOperand(1).getOperand(0) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001646 return DAG.getNode(N0.getOperand(1).getOpcode(), N->getDebugLoc(), VT,
1647 N0.getOperand(0), N0.getOperand(1).getOperand(1));
Dale Johannesenf9cbc1f2008-12-23 23:01:27 +00001648 // fold ((A+(C+B))-B) -> A+C
1649 if (N0.getOpcode() == ISD::ADD &&
1650 N0.getOperand(1).getOpcode() == ISD::ADD &&
1651 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001652 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1653 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Dale Johannesen58e39b02008-12-23 01:59:54 +00001654 // fold ((A-(B-C))-C) -> A-B
1655 if (N0.getOpcode() == ISD::SUB &&
1656 N0.getOperand(1).getOpcode() == ISD::SUB &&
1657 N0.getOperand(1).getOperand(1) == N1)
Bill Wendlingb0702e02009-01-30 02:42:10 +00001658 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1659 N0.getOperand(0), N0.getOperand(1).getOperand(0));
Bill Wendlingb0702e02009-01-30 02:42:10 +00001660
Dan Gohman613e0d82007-07-03 14:03:57 +00001661 // If either operand of a sub is undef, the result is undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00001662 if (N0.getOpcode() == ISD::UNDEF)
1663 return N0;
1664 if (N1.getOpcode() == ISD::UNDEF)
1665 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001666
Dan Gohman6520e202008-10-18 02:06:02 +00001667 // If the relocation model supports it, consider symbol offsets.
1668 if (GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(N0))
Duncan Sands25cf2272008-11-24 14:53:14 +00001669 if (!LegalOperations && TLI.isOffsetFoldingLegal(GA)) {
Dan Gohman6520e202008-10-18 02:06:02 +00001670 // fold (sub Sym, c) -> Sym-c
1671 if (N1C && GA->getOpcode() == ISD::GlobalAddress)
Devang Patel0d881da2010-07-06 22:08:15 +00001672 return DAG.getGlobalAddress(GA->getGlobal(), N1C->getDebugLoc(), VT,
Dan Gohman6520e202008-10-18 02:06:02 +00001673 GA->getOffset() -
1674 (uint64_t)N1C->getSExtValue());
1675 // fold (sub Sym+c1, Sym+c2) -> c1-c2
1676 if (GlobalAddressSDNode *GB = dyn_cast<GlobalAddressSDNode>(N1))
1677 if (GA->getGlobal() == GB->getGlobal())
1678 return DAG.getConstant((uint64_t)GA->getOffset() - GB->getOffset(),
1679 VT);
1680 }
1681
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001682 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001683}
1684
Craig Toppercc274522012-01-07 09:06:39 +00001685SDValue DAGCombiner::visitSUBC(SDNode *N) {
1686 SDValue N0 = N->getOperand(0);
1687 SDValue N1 = N->getOperand(1);
1688 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1689 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
1690 EVT VT = N0.getValueType();
1691
1692 // If the flag result is dead, turn this into an SUB.
Craig Topper704e1a02012-01-07 18:31:09 +00001693 if (!N->hasAnyUseOfValue(1))
Craig Toppercc274522012-01-07 09:06:39 +00001694 return CombineTo(N, DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, N1),
1695 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1696 MVT::Glue));
1697
1698 // fold (subc x, x) -> 0 + no borrow
1699 if (N0 == N1)
1700 return CombineTo(N, DAG.getConstant(0, VT),
1701 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1702 MVT::Glue));
1703
1704 // fold (subc x, 0) -> x + no borrow
1705 if (N1C && N1C->isNullValue())
1706 return CombineTo(N, N0, DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1707 MVT::Glue));
1708
1709 // Canonicalize (sub -1, x) -> ~x, i.e. (xor x, -1) + no borrow
1710 if (N0C && N0C->isAllOnesValue())
1711 return CombineTo(N, DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0),
1712 DAG.getNode(ISD::CARRY_FALSE, N->getDebugLoc(),
1713 MVT::Glue));
1714
1715 return SDValue();
1716}
1717
1718SDValue DAGCombiner::visitSUBE(SDNode *N) {
1719 SDValue N0 = N->getOperand(0);
1720 SDValue N1 = N->getOperand(1);
1721 SDValue CarryIn = N->getOperand(2);
1722
1723 // fold (sube x, y, false) -> (subc x, y)
1724 if (CarryIn.getOpcode() == ISD::CARRY_FALSE)
1725 return DAG.getNode(ISD::SUBC, N->getDebugLoc(), N->getVTList(), N0, N1);
1726
1727 return SDValue();
1728}
1729
Dan Gohman475871a2008-07-27 21:46:04 +00001730SDValue DAGCombiner::visitMUL(SDNode *N) {
1731 SDValue N0 = N->getOperand(0);
1732 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001733 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1734 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001735 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00001736
Dan Gohman7f321562007-06-25 16:23:39 +00001737 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001738 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001739 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001740 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001741 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001742
Dan Gohman613e0d82007-07-03 14:03:57 +00001743 // fold (mul x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00001744 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00001745 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001746 // fold (mul c1, c2) -> c1*c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001747 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001748 return DAG.FoldConstantArithmetic(ISD::MUL, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00001749 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00001750 if (N0C && !N1C)
Bill Wendling9c8148a2009-01-30 02:45:56 +00001751 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001752 // fold (mul x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00001753 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00001754 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00001755 // fold (mul x, -1) -> 0-x
Nate Begeman646d7e22005-09-02 21:18:40 +00001756 if (N1C && N1C->isAllOnesValue())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001757 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1758 DAG.getConstant(0, VT), N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001759 // fold (mul x, (1 << c)) -> x << c
Dan Gohman002e5d02008-03-13 22:13:53 +00001760 if (N1C && N1C->getAPIntValue().isPowerOf2())
Bill Wendling9c8148a2009-01-30 02:45:56 +00001761 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001762 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001763 getShiftAmountTy(N0.getValueType())));
Chris Lattner3e6099b2005-10-30 06:41:49 +00001764 // fold (mul x, -(1 << c)) -> -(x << c) or (-x) << c
Chris Lattner66b8bc32009-03-09 20:22:18 +00001765 if (N1C && (-N1C->getAPIntValue()).isPowerOf2()) {
1766 unsigned Log2Val = (-N1C->getAPIntValue()).logBase2();
Scott Michelfdc40a02009-02-17 22:15:04 +00001767 // FIXME: If the input is something that is easily negated (e.g. a
Chris Lattner3e6099b2005-10-30 06:41:49 +00001768 // single-use add), we should put the negate there.
Bill Wendling9c8148a2009-01-30 02:45:56 +00001769 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1770 DAG.getConstant(0, VT),
Bill Wendling73e16b22009-01-30 02:49:26 +00001771 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Owen Anderson95771af2011-02-25 21:41:48 +00001772 DAG.getConstant(Log2Val,
1773 getShiftAmountTy(N0.getValueType()))));
Chris Lattner66b8bc32009-03-09 20:22:18 +00001774 }
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001775 // (mul (shl X, c1), c2) -> (mul X, c2 << c1)
Bill Wendling73e16b22009-01-30 02:49:26 +00001776 if (N1C && N0.getOpcode() == ISD::SHL &&
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001777 isa<ConstantSDNode>(N0.getOperand(1))) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001778 SDValue C3 = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1779 N1, N0.getOperand(1));
Gabor Greifba36cb52008-08-28 21:40:38 +00001780 AddToWorkList(C3.getNode());
Bill Wendling9c8148a2009-01-30 02:45:56 +00001781 return DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1782 N0.getOperand(0), C3);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001783 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001784
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001785 // Change (mul (shl X, C), Y) -> (shl (mul X, Y), C) when the shift has one
1786 // use.
1787 {
Dan Gohman475871a2008-07-27 21:46:04 +00001788 SDValue Sh(0,0), Y(0,0);
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001789 // Check for both (mul (shl X, C), Y) and (mul Y, (shl X, C)).
1790 if (N0.getOpcode() == ISD::SHL && isa<ConstantSDNode>(N0.getOperand(1)) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001791 N0.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001792 Sh = N0; Y = N1;
Scott Michelfdc40a02009-02-17 22:15:04 +00001793 } else if (N1.getOpcode() == ISD::SHL &&
Gabor Greif12632d22008-08-30 19:29:20 +00001794 isa<ConstantSDNode>(N1.getOperand(1)) &&
1795 N1.getNode()->hasOneUse()) {
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001796 Sh = N1; Y = N0;
1797 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001798
Gabor Greifba36cb52008-08-28 21:40:38 +00001799 if (Sh.getNode()) {
Bill Wendling9c8148a2009-01-30 02:45:56 +00001800 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1801 Sh.getOperand(0), Y);
1802 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT,
1803 Mul, Sh.getOperand(1));
Chris Lattner0b1a85f2006-03-01 03:44:24 +00001804 }
1805 }
Bill Wendling73e16b22009-01-30 02:49:26 +00001806
Chris Lattnera1deca32006-03-04 23:33:26 +00001807 // fold (mul (add x, c1), c2) -> (add (mul x, c2), c1*c2)
Scott Michelfdc40a02009-02-17 22:15:04 +00001808 if (N1C && N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse() &&
Bill Wendling9c8148a2009-01-30 02:45:56 +00001809 isa<ConstantSDNode>(N0.getOperand(1)))
1810 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT,
1811 DAG.getNode(ISD::MUL, N0.getDebugLoc(), VT,
1812 N0.getOperand(0), N1),
1813 DAG.getNode(ISD::MUL, N1.getDebugLoc(), VT,
1814 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001815
Nate Begemancd4d58c2006-02-03 06:46:56 +00001816 // reassociate mul
Bill Wendling35247c32009-01-30 00:45:56 +00001817 SDValue RMUL = ReassociateOps(ISD::MUL, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001818 if (RMUL.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00001819 return RMUL;
Dan Gohman7f321562007-06-25 16:23:39 +00001820
Evan Chengb3a3d5e2010-04-28 07:10:39 +00001821 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001822}
1823
Dan Gohman475871a2008-07-27 21:46:04 +00001824SDValue DAGCombiner::visitSDIV(SDNode *N) {
1825 SDValue N0 = N->getOperand(0);
1826 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001827 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1828 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001829 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001830
Dan Gohman7f321562007-06-25 16:23:39 +00001831 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001832 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001833 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001834 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001835 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001836
Nate Begeman1d4d4142005-09-01 00:19:25 +00001837 // fold (sdiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001838 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001839 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001840 // fold (sdiv X, 1) -> X
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001841 if (N1C && N1C->getAPIntValue() == 1LL)
Nate Begeman405e3ec2005-10-21 00:02:42 +00001842 return N0;
1843 // fold (sdiv X, -1) -> 0-X
1844 if (N1C && N1C->isAllOnesValue())
Bill Wendling944d34b2009-01-30 02:52:17 +00001845 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1846 DAG.getConstant(0, VT), N0);
Chris Lattner094c8fc2005-10-07 06:10:46 +00001847 // If we know the sign bits of both operands are zero, strength reduce to a
1848 // udiv instead. Handles (X&15) /s 4 -> X&15 >> 2
Duncan Sands83ec4b62008-06-06 12:08:01 +00001849 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001850 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling944d34b2009-01-30 02:52:17 +00001851 return DAG.getNode(ISD::UDIV, N->getDebugLoc(), N1.getValueType(),
1852 N0, N1);
Chris Lattnerf32aac32008-01-27 23:32:17 +00001853 }
Nate Begemancd6a6ed2006-02-17 07:26:20 +00001854 // fold (sdiv X, pow2) -> simple ops after legalize
Eli Friedman1c663fe2011-12-07 03:55:52 +00001855 if (N1C && !N1C->isNullValue() &&
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001856 (N1C->getAPIntValue().isPowerOf2() ||
1857 (-N1C->getAPIntValue()).isPowerOf2())) {
Nate Begeman405e3ec2005-10-21 00:02:42 +00001858 // If dividing by powers of two is cheap, then don't perform the following
1859 // fold.
1860 if (TLI.isPow2DivCheap())
Dan Gohman475871a2008-07-27 21:46:04 +00001861 return SDValue();
Bill Wendling944d34b2009-01-30 02:52:17 +00001862
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001863 unsigned lg2 = N1C->getAPIntValue().countTrailingZeros();
Bill Wendling944d34b2009-01-30 02:52:17 +00001864
Chris Lattner8f4880b2006-02-16 08:02:36 +00001865 // Splat the sign bit into the register
Bill Wendling944d34b2009-01-30 02:52:17 +00001866 SDValue SGN = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
1867 DAG.getConstant(VT.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00001868 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00001869 AddToWorkList(SGN.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001870
Chris Lattner8f4880b2006-02-16 08:02:36 +00001871 // Add (N0 < 0) ? abs2 - 1 : 0;
Bill Wendling944d34b2009-01-30 02:52:17 +00001872 SDValue SRL = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, SGN,
1873 DAG.getConstant(VT.getSizeInBits() - lg2,
Owen Anderson95771af2011-02-25 21:41:48 +00001874 getShiftAmountTy(SGN.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001875 SDValue ADD = DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, SRL);
Gabor Greifba36cb52008-08-28 21:40:38 +00001876 AddToWorkList(SRL.getNode());
1877 AddToWorkList(ADD.getNode()); // Divide by pow2
Bill Wendling944d34b2009-01-30 02:52:17 +00001878 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, ADD,
Owen Anderson95771af2011-02-25 21:41:48 +00001879 DAG.getConstant(lg2, getShiftAmountTy(ADD.getValueType())));
Bill Wendling944d34b2009-01-30 02:52:17 +00001880
Nate Begeman405e3ec2005-10-21 00:02:42 +00001881 // If we're dividing by a positive value, we're done. Otherwise, we must
1882 // negate the result.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001883 if (N1C->getAPIntValue().isNonNegative())
Nate Begeman405e3ec2005-10-21 00:02:42 +00001884 return SRA;
Bill Wendling944d34b2009-01-30 02:52:17 +00001885
Gabor Greifba36cb52008-08-28 21:40:38 +00001886 AddToWorkList(SRA.getNode());
Bill Wendling944d34b2009-01-30 02:52:17 +00001887 return DAG.getNode(ISD::SUB, N->getDebugLoc(), VT,
1888 DAG.getConstant(0, VT), SRA);
Nate Begeman405e3ec2005-10-21 00:02:42 +00001889 }
Bill Wendling944d34b2009-01-30 02:52:17 +00001890
Nate Begeman69575232005-10-20 02:15:44 +00001891 // if integer divide is expensive and we satisfy the requirements, emit an
1892 // alternate sequence.
Eli Friedmanfd58cd72011-10-27 02:06:39 +00001893 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001894 SDValue Op = BuildSDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001895 if (Op.getNode()) return Op;
Nate Begeman69575232005-10-20 02:15:44 +00001896 }
Dan Gohman7f321562007-06-25 16:23:39 +00001897
Dan Gohman613e0d82007-07-03 14:03:57 +00001898 // undef / X -> 0
1899 if (N0.getOpcode() == ISD::UNDEF)
1900 return DAG.getConstant(0, VT);
1901 // X / undef -> undef
1902 if (N1.getOpcode() == ISD::UNDEF)
1903 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001904
Dan Gohman475871a2008-07-27 21:46:04 +00001905 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001906}
1907
Dan Gohman475871a2008-07-27 21:46:04 +00001908SDValue DAGCombiner::visitUDIV(SDNode *N) {
1909 SDValue N0 = N->getOperand(0);
1910 SDValue N1 = N->getOperand(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001911 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0.getNode());
1912 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
Owen Andersone50ed302009-08-10 22:56:29 +00001913 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001914
Dan Gohman7f321562007-06-25 16:23:39 +00001915 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00001916 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001917 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001918 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00001919 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001920
Nate Begeman1d4d4142005-09-01 00:19:25 +00001921 // fold (udiv c1, c2) -> c1/c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001922 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001923 return DAG.FoldConstantArithmetic(ISD::UDIV, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00001924 // fold (udiv x, (1 << c)) -> x >>u c
Dan Gohman002e5d02008-03-13 22:13:53 +00001925 if (N1C && N1C->getAPIntValue().isPowerOf2())
Scott Michelfdc40a02009-02-17 22:15:04 +00001926 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00001927 DAG.getConstant(N1C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00001928 getShiftAmountTy(N0.getValueType())));
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001929 // fold (udiv x, (shl c, y)) -> x >>u (log2(c)+y) iff c is power of 2
1930 if (N1.getOpcode() == ISD::SHL) {
1931 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00001932 if (SHC->getAPIntValue().isPowerOf2()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001933 EVT ADDVT = N1.getOperand(1).getValueType();
Bill Wendling07d85142009-01-30 02:55:25 +00001934 SDValue Add = DAG.getNode(ISD::ADD, N->getDebugLoc(), ADDVT,
1935 N1.getOperand(1),
1936 DAG.getConstant(SHC->getAPIntValue()
1937 .logBase2(),
1938 ADDVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00001939 AddToWorkList(Add.getNode());
Bill Wendling07d85142009-01-30 02:55:25 +00001940 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, Add);
Nate Begemanfb5e4bd2006-02-05 07:20:23 +00001941 }
1942 }
1943 }
Nate Begeman69575232005-10-20 02:15:44 +00001944 // fold (udiv x, c) -> alternate
Dan Gohman002e5d02008-03-13 22:13:53 +00001945 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001946 SDValue Op = BuildUDIV(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00001947 if (Op.getNode()) return Op;
Chris Lattnere9936d12005-10-22 18:50:15 +00001948 }
Dan Gohman7f321562007-06-25 16:23:39 +00001949
Dan Gohman613e0d82007-07-03 14:03:57 +00001950 // undef / X -> 0
1951 if (N0.getOpcode() == ISD::UNDEF)
1952 return DAG.getConstant(0, VT);
1953 // X / undef -> undef
1954 if (N1.getOpcode() == ISD::UNDEF)
1955 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001956
Dan Gohman475871a2008-07-27 21:46:04 +00001957 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00001958}
1959
Dan Gohman475871a2008-07-27 21:46:04 +00001960SDValue DAGCombiner::visitSREM(SDNode *N) {
1961 SDValue N0 = N->getOperand(0);
1962 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00001963 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
1964 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00001965 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00001966
Nate Begeman1d4d4142005-09-01 00:19:25 +00001967 // fold (srem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00001968 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00001969 return DAG.FoldConstantArithmetic(ISD::SREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00001970 // If we know the sign bits of both operands are zero, strength reduce to a
1971 // urem instead. Handles (X & 0x0FFFFFFF) %s 16 -> X&15
Duncan Sands83ec4b62008-06-06 12:08:01 +00001972 if (!VT.isVector()) {
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001973 if (DAG.SignBitIsZero(N1) && DAG.SignBitIsZero(N0))
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001974 return DAG.getNode(ISD::UREM, N->getDebugLoc(), VT, N0, N1);
Chris Lattneree339f42008-01-27 23:21:58 +00001975 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001976
Dan Gohman77003042007-11-26 23:46:11 +00001977 // If X/C can be simplified by the division-by-constant logic, lower
1978 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00001979 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001980 SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001981 AddToWorkList(Div.getNode());
1982 SDValue OptimizedDiv = combine(Div.getNode());
1983 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00001984 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
1985 OptimizedDiv, N1);
1986 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00001987 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00001988 return Sub;
1989 }
Chris Lattner26d29902006-10-12 20:58:32 +00001990 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001991
Dan Gohman613e0d82007-07-03 14:03:57 +00001992 // undef % X -> 0
1993 if (N0.getOpcode() == ISD::UNDEF)
1994 return DAG.getConstant(0, VT);
1995 // X % undef -> undef
1996 if (N1.getOpcode() == ISD::UNDEF)
1997 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00001998
Dan Gohman475871a2008-07-27 21:46:04 +00001999 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002000}
2001
Dan Gohman475871a2008-07-27 21:46:04 +00002002SDValue DAGCombiner::visitUREM(SDNode *N) {
2003 SDValue N0 = N->getOperand(0);
2004 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002005 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2006 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002007 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002008
Nate Begeman1d4d4142005-09-01 00:19:25 +00002009 // fold (urem c1, c2) -> c1%c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002010 if (N0C && N1C && !N1C->isNullValue())
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002011 return DAG.FoldConstantArithmetic(ISD::UREM, VT, N0C, N1C);
Nate Begeman07ed4172005-10-10 21:26:48 +00002012 // fold (urem x, pow2) -> (and x, pow2-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002013 if (N1C && !N1C->isNullValue() && N1C->getAPIntValue().isPowerOf2())
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002014 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0,
Dan Gohman002e5d02008-03-13 22:13:53 +00002015 DAG.getConstant(N1C->getAPIntValue()-1,VT));
Nate Begemanc031e332006-02-05 07:36:48 +00002016 // fold (urem x, (shl pow2, y)) -> (and x, (add (shl pow2, y), -1))
2017 if (N1.getOpcode() == ISD::SHL) {
2018 if (ConstantSDNode *SHC = dyn_cast<ConstantSDNode>(N1.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00002019 if (SHC->getAPIntValue().isPowerOf2()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002020 SDValue Add =
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002021 DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00002022 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()),
Dan Gohman002e5d02008-03-13 22:13:53 +00002023 VT));
Gabor Greifba36cb52008-08-28 21:40:38 +00002024 AddToWorkList(Add.getNode());
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002025 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, Add);
Nate Begemanc031e332006-02-05 07:36:48 +00002026 }
2027 }
2028 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002029
Dan Gohman77003042007-11-26 23:46:11 +00002030 // If X/C can be simplified by the division-by-constant logic, lower
2031 // X%C to the equivalent of X-X/C*C.
Chris Lattner26d29902006-10-12 20:58:32 +00002032 if (N1C && !N1C->isNullValue()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002033 SDValue Div = DAG.getNode(ISD::UDIV, N->getDebugLoc(), VT, N0, N1);
Dan Gohman942ca7f2008-09-08 16:59:01 +00002034 AddToWorkList(Div.getNode());
Gabor Greifba36cb52008-08-28 21:40:38 +00002035 SDValue OptimizedDiv = combine(Div.getNode());
2036 if (OptimizedDiv.getNode() && OptimizedDiv.getNode() != Div.getNode()) {
Bill Wendling6d3bf8c2009-01-30 02:57:00 +00002037 SDValue Mul = DAG.getNode(ISD::MUL, N->getDebugLoc(), VT,
2038 OptimizedDiv, N1);
2039 SDValue Sub = DAG.getNode(ISD::SUB, N->getDebugLoc(), VT, N0, Mul);
Gabor Greifba36cb52008-08-28 21:40:38 +00002040 AddToWorkList(Mul.getNode());
Dan Gohman77003042007-11-26 23:46:11 +00002041 return Sub;
2042 }
Chris Lattner26d29902006-10-12 20:58:32 +00002043 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002044
Dan Gohman613e0d82007-07-03 14:03:57 +00002045 // undef % X -> 0
2046 if (N0.getOpcode() == ISD::UNDEF)
2047 return DAG.getConstant(0, VT);
2048 // X % undef -> undef
2049 if (N1.getOpcode() == ISD::UNDEF)
2050 return N1;
Dan Gohman7f321562007-06-25 16:23:39 +00002051
Dan Gohman475871a2008-07-27 21:46:04 +00002052 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002053}
2054
Dan Gohman475871a2008-07-27 21:46:04 +00002055SDValue DAGCombiner::visitMULHS(SDNode *N) {
2056 SDValue N0 = N->getOperand(0);
2057 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002058 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002059 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002060 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002061
Nate Begeman1d4d4142005-09-01 00:19:25 +00002062 // fold (mulhs x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002063 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002064 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002065 // fold (mulhs x, 1) -> (sra x, size(x)-1)
Dan Gohman002e5d02008-03-13 22:13:53 +00002066 if (N1C && N1C->getAPIntValue() == 1)
Bill Wendling326411d2009-01-30 03:00:18 +00002067 return DAG.getNode(ISD::SRA, N->getDebugLoc(), N0.getValueType(), N0,
2068 DAG.getConstant(N0.getValueType().getSizeInBits() - 1,
Owen Anderson95771af2011-02-25 21:41:48 +00002069 getShiftAmountTy(N0.getValueType())));
Dan Gohman613e0d82007-07-03 14:03:57 +00002070 // fold (mulhs x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002071 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002072 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002073
Chris Lattnerde1c3602010-12-13 08:39:01 +00002074 // If the type twice as wide is legal, transform the mulhs to a wider multiply
2075 // plus a shift.
2076 if (VT.isSimple() && !VT.isVector()) {
2077 MVT Simple = VT.getSimpleVT();
2078 unsigned SimpleSize = Simple.getSizeInBits();
2079 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2080 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2081 N0 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N0);
2082 N1 = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N1);
2083 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
Chris Lattner1a0fbe22010-12-15 05:51:39 +00002084 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002085 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002086 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2087 }
2088 }
Owen Anderson95771af2011-02-25 21:41:48 +00002089
Dan Gohman475871a2008-07-27 21:46:04 +00002090 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002091}
2092
Dan Gohman475871a2008-07-27 21:46:04 +00002093SDValue DAGCombiner::visitMULHU(SDNode *N) {
2094 SDValue N0 = N->getOperand(0);
2095 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00002096 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002097 EVT VT = N->getValueType(0);
Chris Lattnerde1c3602010-12-13 08:39:01 +00002098 DebugLoc DL = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00002099
Nate Begeman1d4d4142005-09-01 00:19:25 +00002100 // fold (mulhu x, 0) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00002101 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002102 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002103 // fold (mulhu x, 1) -> 0
Dan Gohman002e5d02008-03-13 22:13:53 +00002104 if (N1C && N1C->getAPIntValue() == 1)
Nate Begeman83e75ec2005-09-06 04:43:02 +00002105 return DAG.getConstant(0, N0.getValueType());
Dan Gohman613e0d82007-07-03 14:03:57 +00002106 // fold (mulhu x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002107 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002108 return DAG.getConstant(0, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00002109
Chris Lattnerde1c3602010-12-13 08:39:01 +00002110 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2111 // plus a shift.
2112 if (VT.isSimple() && !VT.isVector()) {
2113 MVT Simple = VT.getSimpleVT();
2114 unsigned SimpleSize = Simple.getSizeInBits();
2115 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2116 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2117 N0 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N0);
2118 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N1);
2119 N1 = DAG.getNode(ISD::MUL, DL, NewVT, N0, N1);
2120 N1 = DAG.getNode(ISD::SRL, DL, NewVT, N1,
Owen Anderson95771af2011-02-25 21:41:48 +00002121 DAG.getConstant(SimpleSize, getShiftAmountTy(N1.getValueType())));
Chris Lattnerde1c3602010-12-13 08:39:01 +00002122 return DAG.getNode(ISD::TRUNCATE, DL, VT, N1);
2123 }
2124 }
Owen Anderson95771af2011-02-25 21:41:48 +00002125
Dan Gohman475871a2008-07-27 21:46:04 +00002126 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002127}
2128
Dan Gohman389079b2007-10-08 17:57:15 +00002129/// SimplifyNodeWithTwoResults - Perform optimizations common to nodes that
2130/// compute two values. LoOp and HiOp give the opcodes for the two computations
2131/// that are being performed. Return true if a simplification was made.
2132///
Scott Michelfdc40a02009-02-17 22:15:04 +00002133SDValue DAGCombiner::SimplifyNodeWithTwoResults(SDNode *N, unsigned LoOp,
Dan Gohman475871a2008-07-27 21:46:04 +00002134 unsigned HiOp) {
Dan Gohman389079b2007-10-08 17:57:15 +00002135 // If the high half is not needed, just compute the low half.
Evan Cheng44711942007-11-08 09:25:29 +00002136 bool HiExists = N->hasAnyUseOfValue(1);
2137 if (!HiExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002138 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002139 TLI.isOperationLegal(LoOp, N->getValueType(0)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002140 SDValue Res = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2141 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002142 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002143 }
2144
2145 // If the low half is not needed, just compute the high half.
Evan Cheng44711942007-11-08 09:25:29 +00002146 bool LoExists = N->hasAnyUseOfValue(0);
2147 if (!LoExists &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002148 (!LegalOperations ||
Dan Gohman389079b2007-10-08 17:57:15 +00002149 TLI.isOperationLegal(HiOp, N->getValueType(1)))) {
Bill Wendling826d1142009-01-30 03:08:40 +00002150 SDValue Res = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
2151 N->op_begin(), N->getNumOperands());
Chris Lattner5eee4272008-01-26 01:09:19 +00002152 return CombineTo(N, Res, Res);
Dan Gohman389079b2007-10-08 17:57:15 +00002153 }
2154
Evan Cheng44711942007-11-08 09:25:29 +00002155 // If both halves are used, return as it is.
2156 if (LoExists && HiExists)
Dan Gohman475871a2008-07-27 21:46:04 +00002157 return SDValue();
Evan Cheng44711942007-11-08 09:25:29 +00002158
2159 // If the two computed results can be simplified separately, separate them.
Evan Cheng44711942007-11-08 09:25:29 +00002160 if (LoExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002161 SDValue Lo = DAG.getNode(LoOp, N->getDebugLoc(), N->getValueType(0),
2162 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002163 AddToWorkList(Lo.getNode());
2164 SDValue LoOpt = combine(Lo.getNode());
2165 if (LoOpt.getNode() && LoOpt.getNode() != Lo.getNode() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002166 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002167 TLI.isOperationLegal(LoOpt.getOpcode(), LoOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002168 return CombineTo(N, LoOpt, LoOpt);
Dan Gohman389079b2007-10-08 17:57:15 +00002169 }
2170
Evan Cheng44711942007-11-08 09:25:29 +00002171 if (HiExists) {
Bill Wendling826d1142009-01-30 03:08:40 +00002172 SDValue Hi = DAG.getNode(HiOp, N->getDebugLoc(), N->getValueType(1),
Duncan Sands25cf2272008-11-24 14:53:14 +00002173 N->op_begin(), N->getNumOperands());
Gabor Greifba36cb52008-08-28 21:40:38 +00002174 AddToWorkList(Hi.getNode());
2175 SDValue HiOpt = combine(Hi.getNode());
2176 if (HiOpt.getNode() && HiOpt != Hi &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002177 (!LegalOperations ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002178 TLI.isOperationLegal(HiOpt.getOpcode(), HiOpt.getValueType())))
Chris Lattner5eee4272008-01-26 01:09:19 +00002179 return CombineTo(N, HiOpt, HiOpt);
Evan Cheng44711942007-11-08 09:25:29 +00002180 }
Bill Wendling826d1142009-01-30 03:08:40 +00002181
Dan Gohman475871a2008-07-27 21:46:04 +00002182 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002183}
2184
Dan Gohman475871a2008-07-27 21:46:04 +00002185SDValue DAGCombiner::visitSMUL_LOHI(SDNode *N) {
2186 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHS);
Gabor Greifba36cb52008-08-28 21:40:38 +00002187 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002188
Chris Lattner33e77d32010-12-15 06:04:19 +00002189 EVT VT = N->getValueType(0);
2190 DebugLoc DL = N->getDebugLoc();
2191
2192 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2193 // plus a shift.
2194 if (VT.isSimple() && !VT.isVector()) {
2195 MVT Simple = VT.getSimpleVT();
2196 unsigned SimpleSize = Simple.getSizeInBits();
2197 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2198 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2199 SDValue Lo = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(0));
2200 SDValue Hi = DAG.getNode(ISD::SIGN_EXTEND, DL, NewVT, N->getOperand(1));
2201 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2202 // Compute the high part as N1.
2203 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002204 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002205 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2206 // Compute the low part as N0.
2207 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2208 return CombineTo(N, Lo, Hi);
2209 }
2210 }
Owen Anderson95771af2011-02-25 21:41:48 +00002211
Dan Gohman475871a2008-07-27 21:46:04 +00002212 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002213}
2214
Dan Gohman475871a2008-07-27 21:46:04 +00002215SDValue DAGCombiner::visitUMUL_LOHI(SDNode *N) {
2216 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::MUL, ISD::MULHU);
Gabor Greifba36cb52008-08-28 21:40:38 +00002217 if (Res.getNode()) return Res;
Dan Gohman389079b2007-10-08 17:57:15 +00002218
Chris Lattner33e77d32010-12-15 06:04:19 +00002219 EVT VT = N->getValueType(0);
2220 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00002221
Chris Lattner33e77d32010-12-15 06:04:19 +00002222 // If the type twice as wide is legal, transform the mulhu to a wider multiply
2223 // plus a shift.
2224 if (VT.isSimple() && !VT.isVector()) {
2225 MVT Simple = VT.getSimpleVT();
2226 unsigned SimpleSize = Simple.getSizeInBits();
2227 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), SimpleSize*2);
2228 if (TLI.isOperationLegal(ISD::MUL, NewVT)) {
2229 SDValue Lo = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(0));
2230 SDValue Hi = DAG.getNode(ISD::ZERO_EXTEND, DL, NewVT, N->getOperand(1));
2231 Lo = DAG.getNode(ISD::MUL, DL, NewVT, Lo, Hi);
2232 // Compute the high part as N1.
2233 Hi = DAG.getNode(ISD::SRL, DL, NewVT, Lo,
Owen Anderson95771af2011-02-25 21:41:48 +00002234 DAG.getConstant(SimpleSize, getShiftAmountTy(Lo.getValueType())));
Chris Lattner33e77d32010-12-15 06:04:19 +00002235 Hi = DAG.getNode(ISD::TRUNCATE, DL, VT, Hi);
2236 // Compute the low part as N0.
2237 Lo = DAG.getNode(ISD::TRUNCATE, DL, VT, Lo);
2238 return CombineTo(N, Lo, Hi);
2239 }
2240 }
Owen Anderson95771af2011-02-25 21:41:48 +00002241
Dan Gohman475871a2008-07-27 21:46:04 +00002242 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002243}
2244
Benjamin Kramerf55d26e2011-05-21 18:31:55 +00002245SDValue DAGCombiner::visitSMULO(SDNode *N) {
2246 // (smulo x, 2) -> (saddo x, x)
2247 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2248 if (C2->getAPIntValue() == 2)
2249 return DAG.getNode(ISD::SADDO, N->getDebugLoc(), N->getVTList(),
2250 N->getOperand(0), N->getOperand(0));
2251
2252 return SDValue();
2253}
2254
2255SDValue DAGCombiner::visitUMULO(SDNode *N) {
2256 // (umulo x, 2) -> (uaddo x, x)
2257 if (ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N->getOperand(1)))
2258 if (C2->getAPIntValue() == 2)
2259 return DAG.getNode(ISD::UADDO, N->getDebugLoc(), N->getVTList(),
2260 N->getOperand(0), N->getOperand(0));
2261
2262 return SDValue();
2263}
2264
Dan Gohman475871a2008-07-27 21:46:04 +00002265SDValue DAGCombiner::visitSDIVREM(SDNode *N) {
2266 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002267 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002268
Dan Gohman475871a2008-07-27 21:46:04 +00002269 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002270}
2271
Dan Gohman475871a2008-07-27 21:46:04 +00002272SDValue DAGCombiner::visitUDIVREM(SDNode *N) {
2273 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::UDIV, ISD::UREM);
Gabor Greifba36cb52008-08-28 21:40:38 +00002274 if (Res.getNode()) return Res;
Scott Michelfdc40a02009-02-17 22:15:04 +00002275
Dan Gohman475871a2008-07-27 21:46:04 +00002276 return SDValue();
Dan Gohman389079b2007-10-08 17:57:15 +00002277}
2278
Chris Lattner35e5c142006-05-05 05:51:50 +00002279/// SimplifyBinOpWithSameOpcodeHands - If this is a binary operator with
2280/// two operands of the same opcode, try to simplify it.
Dan Gohman475871a2008-07-27 21:46:04 +00002281SDValue DAGCombiner::SimplifyBinOpWithSameOpcodeHands(SDNode *N) {
2282 SDValue N0 = N->getOperand(0), N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00002283 EVT VT = N0.getValueType();
Chris Lattner35e5c142006-05-05 05:51:50 +00002284 assert(N0.getOpcode() == N1.getOpcode() && "Bad input!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002285
Dan Gohmanff00a552010-01-14 03:08:49 +00002286 // Bail early if none of these transforms apply.
2287 if (N0.getNode()->getNumOperands() == 0) return SDValue();
2288
Chris Lattner540121f2006-05-05 06:31:05 +00002289 // For each of OP in AND/OR/XOR:
2290 // fold (OP (zext x), (zext y)) -> (zext (OP x, y))
2291 // fold (OP (sext x), (sext y)) -> (sext (OP x, y))
2292 // fold (OP (aext x), (aext y)) -> (aext (OP x, y))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002293 // fold (OP (trunc x), (trunc y)) -> (trunc (OP x, y)) (if trunc isn't free)
Nate Begeman93e0ed32009-12-03 07:11:29 +00002294 //
2295 // do not sink logical op inside of a vector extend, since it may combine
2296 // into a vsetcc.
Evan Chengd40d03e2010-01-06 19:38:29 +00002297 EVT Op0VT = N0.getOperand(0).getValueType();
2298 if ((N0.getOpcode() == ISD::ZERO_EXTEND ||
Dan Gohman97121ba2009-04-08 00:15:30 +00002299 N0.getOpcode() == ISD::SIGN_EXTEND ||
Evan Chenge5b51ac2010-04-17 06:13:15 +00002300 // Avoid infinite looping with PromoteIntBinOp.
2301 (N0.getOpcode() == ISD::ANY_EXTEND &&
2302 (!LegalTypes || TLI.isTypeDesirableForOp(N->getOpcode(), Op0VT))) ||
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002303 (N0.getOpcode() == ISD::TRUNCATE &&
2304 (!TLI.isZExtFree(VT, Op0VT) ||
2305 !TLI.isTruncateFree(Op0VT, VT)) &&
2306 TLI.isTypeLegal(Op0VT))) &&
Nate Begeman93e0ed32009-12-03 07:11:29 +00002307 !VT.isVector() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00002308 Op0VT == N1.getOperand(0).getValueType() &&
2309 (!LegalOperations || TLI.isOperationLegal(N->getOpcode(), Op0VT))) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002310 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2311 N0.getOperand(0).getValueType(),
2312 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002313 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002314 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, ORNode);
Chris Lattner35e5c142006-05-05 05:51:50 +00002315 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002316
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002317 // For each of OP in SHL/SRL/SRA/AND...
2318 // fold (and (OP x, z), (OP y, z)) -> (OP (and x, y), z)
2319 // fold (or (OP x, z), (OP y, z)) -> (OP (or x, y), z)
2320 // fold (xor (OP x, z), (OP y, z)) -> (OP (xor x, y), z)
Chris Lattner35e5c142006-05-05 05:51:50 +00002321 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL ||
Chris Lattnera3dc3f62006-05-05 06:10:43 +00002322 N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::AND) &&
Chris Lattner35e5c142006-05-05 05:51:50 +00002323 N0.getOperand(1) == N1.getOperand(1)) {
Bill Wendlingb74c8672009-01-30 19:25:47 +00002324 SDValue ORNode = DAG.getNode(N->getOpcode(), N0.getDebugLoc(),
2325 N0.getOperand(0).getValueType(),
2326 N0.getOperand(0), N1.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00002327 AddToWorkList(ORNode.getNode());
Bill Wendlingb74c8672009-01-30 19:25:47 +00002328 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
2329 ORNode, N0.getOperand(1));
Chris Lattner35e5c142006-05-05 05:51:50 +00002330 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002331
Dan Gohman475871a2008-07-27 21:46:04 +00002332 return SDValue();
Chris Lattner35e5c142006-05-05 05:51:50 +00002333}
2334
Dan Gohman475871a2008-07-27 21:46:04 +00002335SDValue DAGCombiner::visitAND(SDNode *N) {
2336 SDValue N0 = N->getOperand(0);
2337 SDValue N1 = N->getOperand(1);
2338 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002339 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2340 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002341 EVT VT = N1.getValueType();
Dan Gohman6900a392010-03-04 00:23:16 +00002342 unsigned BitWidth = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002343
Dan Gohman7f321562007-06-25 16:23:39 +00002344 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002345 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002346 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002347 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002348 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002349
Dan Gohman613e0d82007-07-03 14:03:57 +00002350 // fold (and x, undef) -> 0
Dan Gohmand595b5f2007-07-10 14:20:37 +00002351 if (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00002352 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002353 // fold (and c1, c2) -> c1&c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002354 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002355 return DAG.FoldConstantArithmetic(ISD::AND, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002356 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002357 if (N0C && !N1C)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00002358 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002359 // fold (and x, -1) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002360 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002361 return N0;
2362 // if (and x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00002363 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002364 APInt::getAllOnesValue(BitWidth)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002365 return DAG.getConstant(0, VT);
Nate Begemancd4d58c2006-02-03 06:46:56 +00002366 // reassociate and
Bill Wendling35247c32009-01-30 00:45:56 +00002367 SDValue RAND = ReassociateOps(ISD::AND, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002368 if (RAND.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002369 return RAND;
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002370 // fold (and (or x, C), D) -> D if (C & D) == D
Nate Begeman5dc7e862005-11-02 18:42:59 +00002371 if (N1C && N0.getOpcode() == ISD::OR)
Nate Begeman1d4d4142005-09-01 00:19:25 +00002372 if (ConstantSDNode *ORI = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman002e5d02008-03-13 22:13:53 +00002373 if ((ORI->getAPIntValue() & N1C->getAPIntValue()) == N1C->getAPIntValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002374 return N1;
Chris Lattner3603cd62006-02-02 07:17:31 +00002375 // fold (and (any_ext V), c) -> (zero_ext V) if 'and' only clears top bits.
2376 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
Dan Gohman475871a2008-07-27 21:46:04 +00002377 SDValue N0Op0 = N0.getOperand(0);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002378 APInt Mask = ~N1C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00002379 Mask = Mask.trunc(N0Op0.getValueSizeInBits());
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002380 if (DAG.MaskedValueIsZero(N0Op0, Mask)) {
Bill Wendling2627a882009-01-30 20:43:18 +00002381 SDValue Zext = DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(),
2382 N0.getValueType(), N0Op0);
Scott Michelfdc40a02009-02-17 22:15:04 +00002383
Chris Lattner1ec05d12006-03-01 21:47:21 +00002384 // Replace uses of the AND with uses of the Zero extend node.
2385 CombineTo(N, Zext);
Scott Michelfdc40a02009-02-17 22:15:04 +00002386
Chris Lattner3603cd62006-02-02 07:17:31 +00002387 // We actually want to replace all uses of the any_extend with the
2388 // zero_extend, to avoid duplicating things. This will later cause this
2389 // AND to be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +00002390 CombineTo(N0.getNode(), Zext);
Dan Gohman475871a2008-07-27 21:46:04 +00002391 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner3603cd62006-02-02 07:17:31 +00002392 }
2393 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002394 // fold (and (setcc x), (setcc y)) -> (setcc (and x, y))
2395 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2396 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2397 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002398
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002399 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002400 LL.getValueType().isInteger()) {
Bill Wendling2627a882009-01-30 20:43:18 +00002401 // fold (and (seteq X, 0), (seteq Y, 0)) -> (seteq (or X, Y), 0)
Dan Gohman002e5d02008-03-13 22:13:53 +00002402 if (cast<ConstantSDNode>(LR)->isNullValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002403 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2404 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002405 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002406 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002407 }
Bill Wendling2627a882009-01-30 20:43:18 +00002408 // fold (and (seteq X, -1), (seteq Y, -1)) -> (seteq (and X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002409 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETEQ) {
Bill Wendling2627a882009-01-30 20:43:18 +00002410 SDValue ANDNode = DAG.getNode(ISD::AND, N0.getDebugLoc(),
2411 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002412 AddToWorkList(ANDNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002413 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002414 }
Bill Wendling2627a882009-01-30 20:43:18 +00002415 // fold (and (setgt X, -1), (setgt Y, -1)) -> (setgt (or X, Y), -1)
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002416 if (cast<ConstantSDNode>(LR)->isAllOnesValue() && Op1 == ISD::SETGT) {
Bill Wendling2627a882009-01-30 20:43:18 +00002417 SDValue ORNode = DAG.getNode(ISD::OR, N0.getDebugLoc(),
2418 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002419 AddToWorkList(ORNode.getNode());
Bill Wendling2627a882009-01-30 20:43:18 +00002420 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002421 }
2422 }
2423 // canonicalize equivalent to ll == rl
2424 if (LL == RR && LR == RL) {
2425 Op1 = ISD::getSetCCSwappedOperands(Op1);
2426 std::swap(RL, RR);
2427 }
2428 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002429 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002430 ISD::CondCode Result = ISD::getSetCCAndOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002431 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002432 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling2627a882009-01-30 20:43:18 +00002433 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2434 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002435 }
2436 }
Chris Lattner35e5c142006-05-05 05:51:50 +00002437
Bill Wendling2627a882009-01-30 20:43:18 +00002438 // Simplify: (and (op x...), (op y...)) -> (op (and x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002439 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002440 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002441 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002442 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002443
Nate Begemande996292006-02-03 22:24:05 +00002444 // fold (and (sign_extend_inreg x, i16 to i32), 1) -> (and x, 1)
2445 // fold (and (sra)) -> (and (srl)) when possible.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002446 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00002447 SimplifyDemandedBits(SDValue(N, 0)))
2448 return SDValue(N, 0);
Evan Chengd40d03e2010-01-06 19:38:29 +00002449
Nate Begemanded49632005-10-13 03:11:28 +00002450 // fold (zext_inreg (extload x)) -> (zextload x)
Gabor Greifba36cb52008-08-28 21:40:38 +00002451 if (ISD::isEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode())) {
Evan Cheng466685d2006-10-09 20:57:25 +00002452 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002453 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002454 // If we zero all the possible extended bits, then we can turn this into
2455 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002456 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002457 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002458 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002459 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002460 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002461 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002462 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002463 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00002464 LN0->isVolatile(), LN0->isNonTemporal(),
2465 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002466 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002467 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002468 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002469 }
2470 }
2471 // fold (zext_inreg (sextload x)) -> (zextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00002472 if (ISD::isSEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00002473 N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002474 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00002475 EVT MemVT = LN0->getMemoryVT();
Nate Begemanbfd65a02005-10-13 18:34:58 +00002476 // If we zero all the possible extended bits, then we can turn this into
2477 // a zextload if we are running before legalize or the operation is legal.
Dan Gohman6900a392010-03-04 00:23:16 +00002478 unsigned BitWidth = N1.getValueType().getScalarType().getSizeInBits();
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002479 if (DAG.MaskedValueIsZero(N1, APInt::getHighBitsSet(BitWidth,
Dan Gohman6900a392010-03-04 00:23:16 +00002480 BitWidth - MemVT.getScalarType().getSizeInBits())) &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002481 ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00002482 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT))) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00002483 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N0.getDebugLoc(), VT,
Bill Wendling2627a882009-01-30 20:43:18 +00002484 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002485 LN0->getBasePtr(), LN0->getPointerInfo(),
2486 MemVT,
David Greene1e559442010-02-15 17:00:31 +00002487 LN0->isVolatile(), LN0->isNonTemporal(),
2488 LN0->getAlignment());
Chris Lattner5750df92006-03-01 04:03:14 +00002489 AddToWorkList(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002490 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00002491 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00002492 }
2493 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002494
Chris Lattner35a9f5a2006-02-28 06:49:37 +00002495 // fold (and (load x), 255) -> (zextload x, i8)
2496 // fold (and (extload x, i16), 255) -> (zextload x, i8)
Evan Chengd40d03e2010-01-06 19:38:29 +00002497 // fold (and (any_ext (extload x, i16)), 255) -> (zextload x, i8)
2498 if (N1C && (N0.getOpcode() == ISD::LOAD ||
2499 (N0.getOpcode() == ISD::ANY_EXTEND &&
2500 N0.getOperand(0).getOpcode() == ISD::LOAD))) {
2501 bool HasAnyExt = N0.getOpcode() == ISD::ANY_EXTEND;
2502 LoadSDNode *LN0 = HasAnyExt
2503 ? cast<LoadSDNode>(N0.getOperand(0))
2504 : cast<LoadSDNode>(N0);
Evan Cheng466685d2006-10-09 20:57:25 +00002505 if (LN0->getExtensionType() != ISD::SEXTLOAD &&
Chris Lattnerbd1fccf2010-01-07 21:59:23 +00002506 LN0->isUnindexed() && N0.hasOneUse() && LN0->hasOneUse()) {
Duncan Sands8eab8a22008-06-09 11:32:28 +00002507 uint32_t ActiveBits = N1C->getAPIntValue().getActiveBits();
Evan Chengd40d03e2010-01-06 19:38:29 +00002508 if (ActiveBits > 0 && APIntOps::isMask(ActiveBits, N1C->getAPIntValue())){
2509 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), ActiveBits);
2510 EVT LoadedVT = LN0->getMemoryVT();
Duncan Sands8eab8a22008-06-09 11:32:28 +00002511
Evan Chengd40d03e2010-01-06 19:38:29 +00002512 if (ExtVT == LoadedVT &&
2513 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
Chris Lattneref7634c2010-01-07 21:53:27 +00002514 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002515
2516 SDValue NewLoad =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002517 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002518 LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002519 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002520 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2521 LN0->getAlignment());
Chris Lattneref7634c2010-01-07 21:53:27 +00002522 AddToWorkList(N);
2523 CombineTo(LN0, NewLoad, NewLoad.getValue(1));
2524 return SDValue(N, 0); // Return N so it doesn't get rechecked!
2525 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002526
Chris Lattneref7634c2010-01-07 21:53:27 +00002527 // Do not change the width of a volatile load.
2528 // Do not generate loads of non-round integer types since these can
2529 // be expensive (and would be wrong if the type is not byte sized).
2530 if (!LN0->isVolatile() && LoadedVT.bitsGT(ExtVT) && ExtVT.isRound() &&
2531 (!LegalOperations || TLI.isLoadExtLegal(ISD::ZEXTLOAD, ExtVT))) {
2532 EVT PtrType = LN0->getOperand(1).getValueType();
Bill Wendling2627a882009-01-30 20:43:18 +00002533
Chris Lattneref7634c2010-01-07 21:53:27 +00002534 unsigned Alignment = LN0->getAlignment();
2535 SDValue NewPtr = LN0->getBasePtr();
2536
2537 // For big endian targets, we need to add an offset to the pointer
2538 // to load the correct bytes. For little endian systems, we merely
2539 // need to read fewer bytes from the same pointer.
2540 if (TLI.isBigEndian()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00002541 unsigned LVTStoreBytes = LoadedVT.getStoreSize();
2542 unsigned EVTStoreBytes = ExtVT.getStoreSize();
2543 unsigned PtrOff = LVTStoreBytes - EVTStoreBytes;
Chris Lattneref7634c2010-01-07 21:53:27 +00002544 NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(), PtrType,
2545 NewPtr, DAG.getConstant(PtrOff, PtrType));
2546 Alignment = MinAlign(Alignment, PtrOff);
Evan Chengd40d03e2010-01-06 19:38:29 +00002547 }
Chris Lattneref7634c2010-01-07 21:53:27 +00002548
2549 AddToWorkList(NewPtr.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002550
Chris Lattneref7634c2010-01-07 21:53:27 +00002551 EVT LoadResultTy = HasAnyExt ? LN0->getValueType(0) : VT;
2552 SDValue Load =
Stuart Hastingsa9011292011-02-16 16:23:55 +00002553 DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), LoadResultTy,
Chris Lattneref7634c2010-01-07 21:53:27 +00002554 LN0->getChain(), NewPtr,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00002555 LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00002556 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
2557 Alignment);
Chris Lattneref7634c2010-01-07 21:53:27 +00002558 AddToWorkList(N);
2559 CombineTo(LN0, Load, Load.getValue(1));
2560 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsdc846502007-10-28 12:59:45 +00002561 }
Evan Cheng466685d2006-10-09 20:57:25 +00002562 }
Chris Lattner15045b62006-02-28 06:35:35 +00002563 }
2564 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002565
Evan Chengb3a3d5e2010-04-28 07:10:39 +00002566 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002567}
2568
Evan Cheng9568e5c2011-06-21 06:01:08 +00002569/// MatchBSwapHWord - Match (a >> 8) | (a << 8) as (bswap a) >> 16
2570///
2571SDValue DAGCombiner::MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
2572 bool DemandHighBits) {
2573 if (!LegalOperations)
2574 return SDValue();
2575
2576 EVT VT = N->getValueType(0);
2577 if (VT != MVT::i64 && VT != MVT::i32 && VT != MVT::i16)
2578 return SDValue();
2579 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2580 return SDValue();
2581
2582 // Recognize (and (shl a, 8), 0xff), (and (srl a, 8), 0xff00)
2583 bool LookPassAnd0 = false;
2584 bool LookPassAnd1 = false;
2585 if (N0.getOpcode() == ISD::AND && N0.getOperand(0).getOpcode() == ISD::SRL)
2586 std::swap(N0, N1);
2587 if (N1.getOpcode() == ISD::AND && N1.getOperand(0).getOpcode() == ISD::SHL)
2588 std::swap(N0, N1);
2589 if (N0.getOpcode() == ISD::AND) {
2590 if (!N0.getNode()->hasOneUse())
2591 return SDValue();
2592 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2593 if (!N01C || N01C->getZExtValue() != 0xFF00)
2594 return SDValue();
2595 N0 = N0.getOperand(0);
2596 LookPassAnd0 = true;
2597 }
2598
2599 if (N1.getOpcode() == ISD::AND) {
2600 if (!N1.getNode()->hasOneUse())
2601 return SDValue();
2602 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2603 if (!N11C || N11C->getZExtValue() != 0xFF)
2604 return SDValue();
2605 N1 = N1.getOperand(0);
2606 LookPassAnd1 = true;
2607 }
2608
2609 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
2610 std::swap(N0, N1);
2611 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
2612 return SDValue();
2613 if (!N0.getNode()->hasOneUse() ||
2614 !N1.getNode()->hasOneUse())
2615 return SDValue();
2616
2617 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2618 ConstantSDNode *N11C = dyn_cast<ConstantSDNode>(N1.getOperand(1));
2619 if (!N01C || !N11C)
2620 return SDValue();
2621 if (N01C->getZExtValue() != 8 || N11C->getZExtValue() != 8)
2622 return SDValue();
2623
2624 // Look for (shl (and a, 0xff), 8), (srl (and a, 0xff00), 8)
2625 SDValue N00 = N0->getOperand(0);
2626 if (!LookPassAnd0 && N00.getOpcode() == ISD::AND) {
2627 if (!N00.getNode()->hasOneUse())
2628 return SDValue();
2629 ConstantSDNode *N001C = dyn_cast<ConstantSDNode>(N00.getOperand(1));
2630 if (!N001C || N001C->getZExtValue() != 0xFF)
2631 return SDValue();
2632 N00 = N00.getOperand(0);
2633 LookPassAnd0 = true;
2634 }
2635
2636 SDValue N10 = N1->getOperand(0);
2637 if (!LookPassAnd1 && N10.getOpcode() == ISD::AND) {
2638 if (!N10.getNode()->hasOneUse())
2639 return SDValue();
2640 ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N10.getOperand(1));
2641 if (!N101C || N101C->getZExtValue() != 0xFF00)
2642 return SDValue();
2643 N10 = N10.getOperand(0);
2644 LookPassAnd1 = true;
2645 }
2646
2647 if (N00 != N10)
2648 return SDValue();
2649
2650 // Make sure everything beyond the low halfword is zero since the SRL 16
2651 // will clear the top bits.
2652 unsigned OpSizeInBits = VT.getSizeInBits();
2653 if (DemandHighBits && OpSizeInBits > 16 &&
2654 (!LookPassAnd0 || !LookPassAnd1) &&
2655 !DAG.MaskedValueIsZero(N10, APInt::getHighBitsSet(OpSizeInBits, 16)))
2656 return SDValue();
Eric Christopher7332e6e2011-07-14 01:12:15 +00002657
Evan Cheng9568e5c2011-06-21 06:01:08 +00002658 SDValue Res = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT, N00);
2659 if (OpSizeInBits > 16)
2660 Res = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, Res,
2661 DAG.getConstant(OpSizeInBits-16, getShiftAmountTy(VT)));
2662 return Res;
2663}
2664
2665/// isBSwapHWordElement - Return true if the specified node is an element
2666/// that makes up a 32-bit packed halfword byteswap. i.e.
2667/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2668static bool isBSwapHWordElement(SDValue N, SmallVector<SDNode*,4> &Parts) {
2669 if (!N.getNode()->hasOneUse())
2670 return false;
2671
2672 unsigned Opc = N.getOpcode();
2673 if (Opc != ISD::AND && Opc != ISD::SHL && Opc != ISD::SRL)
2674 return false;
2675
2676 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2677 if (!N1C)
2678 return false;
2679
2680 unsigned Num;
2681 switch (N1C->getZExtValue()) {
2682 default:
2683 return false;
2684 case 0xFF: Num = 0; break;
2685 case 0xFF00: Num = 1; break;
2686 case 0xFF0000: Num = 2; break;
2687 case 0xFF000000: Num = 3; break;
2688 }
2689
2690 // Look for (x & 0xff) << 8 as well as ((x << 8) & 0xff00).
2691 SDValue N0 = N.getOperand(0);
2692 if (Opc == ISD::AND) {
2693 if (Num == 0 || Num == 2) {
2694 // (x >> 8) & 0xff
2695 // (x >> 8) & 0xff0000
2696 if (N0.getOpcode() != ISD::SRL)
2697 return false;
2698 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2699 if (!C || C->getZExtValue() != 8)
2700 return false;
2701 } else {
2702 // (x << 8) & 0xff00
2703 // (x << 8) & 0xff000000
2704 if (N0.getOpcode() != ISD::SHL)
2705 return false;
2706 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
2707 if (!C || C->getZExtValue() != 8)
2708 return false;
2709 }
2710 } else if (Opc == ISD::SHL) {
2711 // (x & 0xff) << 8
2712 // (x & 0xff0000) << 8
2713 if (Num != 0 && Num != 2)
2714 return false;
2715 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2716 if (!C || C->getZExtValue() != 8)
2717 return false;
2718 } else { // Opc == ISD::SRL
2719 // (x & 0xff00) >> 8
2720 // (x & 0xff000000) >> 8
2721 if (Num != 1 && Num != 3)
2722 return false;
2723 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N.getOperand(1));
2724 if (!C || C->getZExtValue() != 8)
2725 return false;
2726 }
2727
2728 if (Parts[Num])
2729 return false;
2730
2731 Parts[Num] = N0.getOperand(0).getNode();
2732 return true;
2733}
2734
2735/// MatchBSwapHWord - Match a 32-bit packed halfword bswap. That is
2736/// ((x&0xff)<<8)|((x&0xff00)>>8)|((x&0x00ff0000)<<8)|((x&0xff000000)>>8)
2737/// => (rotl (bswap x), 16)
2738SDValue DAGCombiner::MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1) {
2739 if (!LegalOperations)
2740 return SDValue();
2741
2742 EVT VT = N->getValueType(0);
2743 if (VT != MVT::i32)
2744 return SDValue();
2745 if (!TLI.isOperationLegal(ISD::BSWAP, VT))
2746 return SDValue();
2747
2748 SmallVector<SDNode*,4> Parts(4, (SDNode*)0);
2749 // Look for either
2750 // (or (or (and), (and)), (or (and), (and)))
2751 // (or (or (or (and), (and)), (and)), (and))
2752 if (N0.getOpcode() != ISD::OR)
2753 return SDValue();
2754 SDValue N00 = N0.getOperand(0);
2755 SDValue N01 = N0.getOperand(1);
2756
2757 if (N1.getOpcode() == ISD::OR) {
2758 // (or (or (and), (and)), (or (and), (and)))
2759 SDValue N000 = N00.getOperand(0);
2760 if (!isBSwapHWordElement(N000, Parts))
2761 return SDValue();
2762
2763 SDValue N001 = N00.getOperand(1);
2764 if (!isBSwapHWordElement(N001, Parts))
2765 return SDValue();
2766 SDValue N010 = N01.getOperand(0);
2767 if (!isBSwapHWordElement(N010, Parts))
2768 return SDValue();
2769 SDValue N011 = N01.getOperand(1);
2770 if (!isBSwapHWordElement(N011, Parts))
2771 return SDValue();
2772 } else {
2773 // (or (or (or (and), (and)), (and)), (and))
2774 if (!isBSwapHWordElement(N1, Parts))
2775 return SDValue();
2776 if (!isBSwapHWordElement(N01, Parts))
2777 return SDValue();
2778 if (N00.getOpcode() != ISD::OR)
2779 return SDValue();
2780 SDValue N000 = N00.getOperand(0);
2781 if (!isBSwapHWordElement(N000, Parts))
2782 return SDValue();
2783 SDValue N001 = N00.getOperand(1);
2784 if (!isBSwapHWordElement(N001, Parts))
2785 return SDValue();
2786 }
2787
2788 // Make sure the parts are all coming from the same node.
2789 if (Parts[0] != Parts[1] || Parts[0] != Parts[2] || Parts[0] != Parts[3])
2790 return SDValue();
2791
2792 SDValue BSwap = DAG.getNode(ISD::BSWAP, N->getDebugLoc(), VT,
2793 SDValue(Parts[0],0));
2794
2795 // Result of the bswap should be rotated by 16. If it's not legal, than
2796 // do (x << 16) | (x >> 16).
2797 SDValue ShAmt = DAG.getConstant(16, getShiftAmountTy(VT));
2798 if (TLI.isOperationLegalOrCustom(ISD::ROTL, VT))
2799 return DAG.getNode(ISD::ROTL, N->getDebugLoc(), VT, BSwap, ShAmt);
2800 else if (TLI.isOperationLegalOrCustom(ISD::ROTR, VT))
2801 return DAG.getNode(ISD::ROTR, N->getDebugLoc(), VT, BSwap, ShAmt);
2802 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT,
2803 DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, BSwap, ShAmt),
2804 DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, BSwap, ShAmt));
2805}
2806
Dan Gohman475871a2008-07-27 21:46:04 +00002807SDValue DAGCombiner::visitOR(SDNode *N) {
2808 SDValue N0 = N->getOperand(0);
2809 SDValue N1 = N->getOperand(1);
2810 SDValue LL, LR, RL, RR, CC0, CC1;
Nate Begeman646d7e22005-09-02 21:18:40 +00002811 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
2812 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00002813 EVT VT = N1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00002814
Dan Gohman7f321562007-06-25 16:23:39 +00002815 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00002816 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002817 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002818 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00002819 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002820
Dan Gohman613e0d82007-07-03 14:03:57 +00002821 // fold (or x, undef) -> -1
Bob Wilson86749492010-06-28 23:40:25 +00002822 if (!LegalOperations &&
2823 (N0.getOpcode() == ISD::UNDEF || N1.getOpcode() == ISD::UNDEF)) {
Nate Begeman93e0ed32009-12-03 07:11:29 +00002824 EVT EltVT = VT.isVector() ? VT.getVectorElementType() : VT;
2825 return DAG.getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT);
2826 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00002827 // fold (or c1, c2) -> c1|c2
Nate Begeman646d7e22005-09-02 21:18:40 +00002828 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00002829 return DAG.FoldConstantArithmetic(ISD::OR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00002830 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00002831 if (N0C && !N1C)
Bill Wendling09025642009-01-30 20:59:34 +00002832 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00002833 // fold (or x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00002834 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002835 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00002836 // fold (or x, -1) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00002837 if (N1C && N1C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00002838 return N1;
2839 // fold (or x, c) -> c iff (x & ~c) == 0
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002840 if (N1C && DAG.MaskedValueIsZero(N0, ~N1C->getAPIntValue()))
Nate Begeman83e75ec2005-09-06 04:43:02 +00002841 return N1;
Evan Cheng9568e5c2011-06-21 06:01:08 +00002842
2843 // Recognize halfword bswaps as (bswap + rotl 16) or (bswap + shl 16)
2844 SDValue BSwap = MatchBSwapHWord(N, N0, N1);
2845 if (BSwap.getNode() != 0)
2846 return BSwap;
2847 BSwap = MatchBSwapHWordLow(N, N0, N1);
2848 if (BSwap.getNode() != 0)
2849 return BSwap;
2850
Nate Begemancd4d58c2006-02-03 06:46:56 +00002851 // reassociate or
Bill Wendling35247c32009-01-30 00:45:56 +00002852 SDValue ROR = ReassociateOps(ISD::OR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00002853 if (ROR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00002854 return ROR;
2855 // Canonicalize (or (and X, c1), c2) -> (and (or X, c2), c1|c2)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002856 // iff (c1 & c2) == 0.
Gabor Greifba36cb52008-08-28 21:40:38 +00002857 if (N1C && N0.getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
Chris Lattner731d3482005-10-27 05:06:38 +00002858 isa<ConstantSDNode>(N0.getOperand(1))) {
Chris Lattner731d3482005-10-27 05:06:38 +00002859 ConstantSDNode *C1 = cast<ConstantSDNode>(N0.getOperand(1));
Bill Wendling32f9eb22010-03-03 01:58:01 +00002860 if ((C1->getAPIntValue() & N1C->getAPIntValue()) != 0)
Bill Wendling7d9f2b92010-03-03 00:35:56 +00002861 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
2862 DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
2863 N0.getOperand(0), N1),
2864 DAG.FoldConstantArithmetic(ISD::OR, VT, N1C, C1));
Nate Begeman223df222005-09-08 20:18:10 +00002865 }
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002866 // fold (or (setcc x), (setcc y)) -> (setcc (or x, y))
2867 if (isSetCCEquivalent(N0, LL, LR, CC0) && isSetCCEquivalent(N1, RL, RR, CC1)){
2868 ISD::CondCode Op0 = cast<CondCodeSDNode>(CC0)->get();
2869 ISD::CondCode Op1 = cast<CondCodeSDNode>(CC1)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00002870
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002871 if (LR == RR && isa<ConstantSDNode>(LR) && Op0 == Op1 &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00002872 LL.getValueType().isInteger()) {
Bill Wendling09025642009-01-30 20:59:34 +00002873 // fold (or (setne X, 0), (setne Y, 0)) -> (setne (or X, Y), 0)
2874 // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002875 if (cast<ConstantSDNode>(LR)->isNullValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002876 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
Bill Wendling09025642009-01-30 20:59:34 +00002877 SDValue ORNode = DAG.getNode(ISD::OR, LR.getDebugLoc(),
2878 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002879 AddToWorkList(ORNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00002880 return DAG.getSetCC(N->getDebugLoc(), VT, ORNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002881 }
Bill Wendling09025642009-01-30 20:59:34 +00002882 // fold (or (setne X, -1), (setne Y, -1)) -> (setne (and X, Y), -1)
2883 // fold (or (setgt X, -1), (setgt Y -1)) -> (setgt (and X, Y), -1)
Scott Michelfdc40a02009-02-17 22:15:04 +00002884 if (cast<ConstantSDNode>(LR)->isAllOnesValue() &&
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002885 (Op1 == ISD::SETNE || Op1 == ISD::SETGT)) {
Bill Wendling09025642009-01-30 20:59:34 +00002886 SDValue ANDNode = DAG.getNode(ISD::AND, LR.getDebugLoc(),
2887 LR.getValueType(), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00002888 AddToWorkList(ANDNode.getNode());
Bill Wendling09025642009-01-30 20:59:34 +00002889 return DAG.getSetCC(N->getDebugLoc(), VT, ANDNode, LR, Op1);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002890 }
2891 }
2892 // canonicalize equivalent to ll == rl
2893 if (LL == RR && LR == RL) {
2894 Op1 = ISD::getSetCCSwappedOperands(Op1);
2895 std::swap(RL, RR);
2896 }
2897 if (LL == RL && LR == RR) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002898 bool isInteger = LL.getValueType().isInteger();
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002899 ISD::CondCode Result = ISD::getSetCCOrOperation(Op0, Op1, isInteger);
Chris Lattner6e1c6232008-10-28 07:11:07 +00002900 if (Result != ISD::SETCC_INVALID &&
Duncan Sands25cf2272008-11-24 14:53:14 +00002901 (!LegalOperations || TLI.isCondCodeLegal(Result, LL.getValueType())))
Bill Wendling09025642009-01-30 20:59:34 +00002902 return DAG.getSetCC(N->getDebugLoc(), N0.getValueType(),
2903 LL, LR, Result);
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002904 }
2905 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002906
Bill Wendling09025642009-01-30 20:59:34 +00002907 // Simplify: (or (op x...), (op y...)) -> (op (or x, y))
Chris Lattner35e5c142006-05-05 05:51:50 +00002908 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002909 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00002910 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00002911 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002912
Bill Wendling09025642009-01-30 20:59:34 +00002913 // (or (and X, C1), (and Y, C2)) -> (and (or X, Y), C3) if possible.
Chris Lattner1ec72732006-09-14 21:11:37 +00002914 if (N0.getOpcode() == ISD::AND &&
2915 N1.getOpcode() == ISD::AND &&
2916 N0.getOperand(1).getOpcode() == ISD::Constant &&
2917 N1.getOperand(1).getOpcode() == ISD::Constant &&
2918 // Don't increase # computations.
Gabor Greifba36cb52008-08-28 21:40:38 +00002919 (N0.getNode()->hasOneUse() || N1.getNode()->hasOneUse())) {
Chris Lattner1ec72732006-09-14 21:11:37 +00002920 // We can only do this xform if we know that bits from X that are set in C2
2921 // but not in C1 are already zero. Likewise for Y.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002922 const APInt &LHSMask =
2923 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
2924 const APInt &RHSMask =
2925 cast<ConstantSDNode>(N1.getOperand(1))->getAPIntValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00002926
Dan Gohmanea859be2007-06-22 14:59:07 +00002927 if (DAG.MaskedValueIsZero(N0.getOperand(0), RHSMask&~LHSMask) &&
2928 DAG.MaskedValueIsZero(N1.getOperand(0), LHSMask&~RHSMask)) {
Bill Wendling09025642009-01-30 20:59:34 +00002929 SDValue X = DAG.getNode(ISD::OR, N0.getDebugLoc(), VT,
2930 N0.getOperand(0), N1.getOperand(0));
2931 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, X,
2932 DAG.getConstant(LHSMask | RHSMask, VT));
Chris Lattner1ec72732006-09-14 21:11:37 +00002933 }
2934 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002935
Chris Lattner516b9622006-09-14 20:50:57 +00002936 // See if this is some rotate idiom.
Bill Wendling317bd702009-01-30 21:14:50 +00002937 if (SDNode *Rot = MatchRotate(N0, N1, N->getDebugLoc()))
Dan Gohman475871a2008-07-27 21:46:04 +00002938 return SDValue(Rot, 0);
Chris Lattner35e5c142006-05-05 05:51:50 +00002939
Dan Gohman4e39e9d2010-06-24 14:30:44 +00002940 // Simplify the operands using demanded-bits information.
2941 if (!VT.isVector() &&
2942 SimplifyDemandedBits(SDValue(N, 0)))
2943 return SDValue(N, 0);
2944
Evan Chengb3a3d5e2010-04-28 07:10:39 +00002945 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00002946}
2947
Chris Lattner516b9622006-09-14 20:50:57 +00002948/// MatchRotateHalf - Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00002949static bool MatchRotateHalf(SDValue Op, SDValue &Shift, SDValue &Mask) {
Chris Lattner516b9622006-09-14 20:50:57 +00002950 if (Op.getOpcode() == ISD::AND) {
Reid Spencer3ed469c2006-11-02 20:25:50 +00002951 if (isa<ConstantSDNode>(Op.getOperand(1))) {
Chris Lattner516b9622006-09-14 20:50:57 +00002952 Mask = Op.getOperand(1);
2953 Op = Op.getOperand(0);
2954 } else {
2955 return false;
2956 }
2957 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002958
Chris Lattner516b9622006-09-14 20:50:57 +00002959 if (Op.getOpcode() == ISD::SRL || Op.getOpcode() == ISD::SHL) {
2960 Shift = Op;
2961 return true;
2962 }
Bill Wendling09025642009-01-30 20:59:34 +00002963
Scott Michelfdc40a02009-02-17 22:15:04 +00002964 return false;
Chris Lattner516b9622006-09-14 20:50:57 +00002965}
2966
Chris Lattner516b9622006-09-14 20:50:57 +00002967// MatchRotate - Handle an 'or' of two operands. If this is one of the many
2968// idioms for rotate, and if the target supports rotation instructions, generate
2969// a rot[lr].
Bill Wendling317bd702009-01-30 21:14:50 +00002970SDNode *DAGCombiner::MatchRotate(SDValue LHS, SDValue RHS, DebugLoc DL) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002971 // Must be a legal type. Expanded 'n promoted things won't work with rotates.
Owen Andersone50ed302009-08-10 22:56:29 +00002972 EVT VT = LHS.getValueType();
Chris Lattner516b9622006-09-14 20:50:57 +00002973 if (!TLI.isTypeLegal(VT)) return 0;
2974
2975 // The target must have at least one rotate flavor.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00002976 bool HasROTL = TLI.isOperationLegalOrCustom(ISD::ROTL, VT);
2977 bool HasROTR = TLI.isOperationLegalOrCustom(ISD::ROTR, VT);
Chris Lattner516b9622006-09-14 20:50:57 +00002978 if (!HasROTL && !HasROTR) return 0;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002979
Chris Lattner516b9622006-09-14 20:50:57 +00002980 // Match "(X shl/srl V1) & V2" where V2 may not be present.
Dan Gohman475871a2008-07-27 21:46:04 +00002981 SDValue LHSShift; // The shift.
2982 SDValue LHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00002983 if (!MatchRotateHalf(LHS, LHSShift, LHSMask))
2984 return 0; // Not part of a rotate.
2985
Dan Gohman475871a2008-07-27 21:46:04 +00002986 SDValue RHSShift; // The shift.
2987 SDValue RHSMask; // AND value if any.
Chris Lattner516b9622006-09-14 20:50:57 +00002988 if (!MatchRotateHalf(RHS, RHSShift, RHSMask))
2989 return 0; // Not part of a rotate.
Scott Michelfdc40a02009-02-17 22:15:04 +00002990
Chris Lattner516b9622006-09-14 20:50:57 +00002991 if (LHSShift.getOperand(0) != RHSShift.getOperand(0))
2992 return 0; // Not shifting the same value.
2993
2994 if (LHSShift.getOpcode() == RHSShift.getOpcode())
2995 return 0; // Shifts must disagree.
Scott Michelfdc40a02009-02-17 22:15:04 +00002996
Chris Lattner516b9622006-09-14 20:50:57 +00002997 // Canonicalize shl to left side in a shl/srl pair.
2998 if (RHSShift.getOpcode() == ISD::SHL) {
2999 std::swap(LHS, RHS);
3000 std::swap(LHSShift, RHSShift);
3001 std::swap(LHSMask , RHSMask );
3002 }
3003
Duncan Sands83ec4b62008-06-06 12:08:01 +00003004 unsigned OpSizeInBits = VT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003005 SDValue LHSShiftArg = LHSShift.getOperand(0);
3006 SDValue LHSShiftAmt = LHSShift.getOperand(1);
3007 SDValue RHSShiftAmt = RHSShift.getOperand(1);
Chris Lattner516b9622006-09-14 20:50:57 +00003008
3009 // fold (or (shl x, C1), (srl x, C2)) -> (rotl x, C1)
3010 // fold (or (shl x, C1), (srl x, C2)) -> (rotr x, C2)
Scott Michelc9dc1142007-04-02 21:36:32 +00003011 if (LHSShiftAmt.getOpcode() == ISD::Constant &&
3012 RHSShiftAmt.getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003013 uint64_t LShVal = cast<ConstantSDNode>(LHSShiftAmt)->getZExtValue();
3014 uint64_t RShVal = cast<ConstantSDNode>(RHSShiftAmt)->getZExtValue();
Chris Lattner516b9622006-09-14 20:50:57 +00003015 if ((LShVal + RShVal) != OpSizeInBits)
3016 return 0;
3017
Dan Gohman475871a2008-07-27 21:46:04 +00003018 SDValue Rot;
Chris Lattner516b9622006-09-14 20:50:57 +00003019 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003020 Rot = DAG.getNode(ISD::ROTL, DL, VT, LHSShiftArg, LHSShiftAmt);
Chris Lattner516b9622006-09-14 20:50:57 +00003021 else
Bill Wendling317bd702009-01-30 21:14:50 +00003022 Rot = DAG.getNode(ISD::ROTR, DL, VT, LHSShiftArg, RHSShiftAmt);
Scott Michelfdc40a02009-02-17 22:15:04 +00003023
Chris Lattner516b9622006-09-14 20:50:57 +00003024 // If there is an AND of either shifted operand, apply it to the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00003025 if (LHSMask.getNode() || RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003026 APInt Mask = APInt::getAllOnesValue(OpSizeInBits);
Scott Michelfdc40a02009-02-17 22:15:04 +00003027
Gabor Greifba36cb52008-08-28 21:40:38 +00003028 if (LHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003029 APInt RHSBits = APInt::getLowBitsSet(OpSizeInBits, LShVal);
3030 Mask &= cast<ConstantSDNode>(LHSMask)->getAPIntValue() | RHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003031 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003032 if (RHSMask.getNode()) {
Dan Gohman220a8232008-03-03 23:51:38 +00003033 APInt LHSBits = APInt::getHighBitsSet(OpSizeInBits, RShVal);
3034 Mask &= cast<ConstantSDNode>(RHSMask)->getAPIntValue() | LHSBits;
Chris Lattner516b9622006-09-14 20:50:57 +00003035 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003036
Bill Wendling317bd702009-01-30 21:14:50 +00003037 Rot = DAG.getNode(ISD::AND, DL, VT, Rot, DAG.getConstant(Mask, VT));
Chris Lattner516b9622006-09-14 20:50:57 +00003038 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003039
Gabor Greifba36cb52008-08-28 21:40:38 +00003040 return Rot.getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003041 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003042
Chris Lattner516b9622006-09-14 20:50:57 +00003043 // If there is a mask here, and we have a variable shift, we can't be sure
3044 // that we're masking out the right stuff.
Gabor Greifba36cb52008-08-28 21:40:38 +00003045 if (LHSMask.getNode() || RHSMask.getNode())
Chris Lattner516b9622006-09-14 20:50:57 +00003046 return 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00003047
Chris Lattner516b9622006-09-14 20:50:57 +00003048 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotl x, y)
3049 // fold (or (shl x, y), (srl x, (sub 32, y))) -> (rotr x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003050 if (RHSShiftAmt.getOpcode() == ISD::SUB &&
3051 LHSShiftAmt == RHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003052 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003053 dyn_cast<ConstantSDNode>(RHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003054 if (SUBC->getAPIntValue() == OpSizeInBits) {
Chris Lattner516b9622006-09-14 20:50:57 +00003055 if (HasROTL)
Bill Wendling317bd702009-01-30 21:14:50 +00003056 return DAG.getNode(ISD::ROTL, DL, VT,
3057 LHSShiftArg, LHSShiftAmt).getNode();
Chris Lattner516b9622006-09-14 20:50:57 +00003058 else
Bill Wendling317bd702009-01-30 21:14:50 +00003059 return DAG.getNode(ISD::ROTR, DL, VT,
3060 LHSShiftArg, RHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003061 }
Chris Lattner516b9622006-09-14 20:50:57 +00003062 }
3063 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003064
Chris Lattner516b9622006-09-14 20:50:57 +00003065 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotr x, y)
3066 // fold (or (shl x, (sub 32, y)), (srl x, r)) -> (rotl x, (sub 32, y))
Scott Michelc9dc1142007-04-02 21:36:32 +00003067 if (LHSShiftAmt.getOpcode() == ISD::SUB &&
3068 RHSShiftAmt == LHSShiftAmt.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003069 if (ConstantSDNode *SUBC =
Scott Michelc9dc1142007-04-02 21:36:32 +00003070 dyn_cast<ConstantSDNode>(LHSShiftAmt.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003071 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling2692d592008-08-31 01:13:31 +00003072 if (HasROTR)
Bill Wendling317bd702009-01-30 21:14:50 +00003073 return DAG.getNode(ISD::ROTR, DL, VT,
3074 LHSShiftArg, RHSShiftAmt).getNode();
Bill Wendling2692d592008-08-31 01:13:31 +00003075 else
Bill Wendling317bd702009-01-30 21:14:50 +00003076 return DAG.getNode(ISD::ROTL, DL, VT,
3077 LHSShiftArg, LHSShiftAmt).getNode();
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003078 }
Scott Michelc9dc1142007-04-02 21:36:32 +00003079 }
3080 }
3081
Dan Gohman74feef22008-10-17 01:23:35 +00003082 // Look for sign/zext/any-extended or truncate cases:
Scott Michelc9dc1142007-04-02 21:36:32 +00003083 if ((LHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3084 || LHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003085 || LHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3086 || LHSShiftAmt.getOpcode() == ISD::TRUNCATE) &&
Scott Michelc9dc1142007-04-02 21:36:32 +00003087 (RHSShiftAmt.getOpcode() == ISD::SIGN_EXTEND
3088 || RHSShiftAmt.getOpcode() == ISD::ZERO_EXTEND
Dan Gohman74feef22008-10-17 01:23:35 +00003089 || RHSShiftAmt.getOpcode() == ISD::ANY_EXTEND
3090 || RHSShiftAmt.getOpcode() == ISD::TRUNCATE)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003091 SDValue LExtOp0 = LHSShiftAmt.getOperand(0);
3092 SDValue RExtOp0 = RHSShiftAmt.getOperand(0);
Scott Michelc9dc1142007-04-02 21:36:32 +00003093 if (RExtOp0.getOpcode() == ISD::SUB &&
3094 RExtOp0.getOperand(1) == LExtOp0) {
3095 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003096 // (rotl x, y)
Scott Michelc9dc1142007-04-02 21:36:32 +00003097 // fold (or (shl x, (*ext y)), (srl x, (*ext (sub 32, y)))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003098 // (rotr x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003099 if (ConstantSDNode *SUBC =
3100 dyn_cast<ConstantSDNode>(RExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003101 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003102 return DAG.getNode(HasROTL ? ISD::ROTL : ISD::ROTR, DL, VT,
3103 LHSShiftArg,
Gabor Greif12632d22008-08-30 19:29:20 +00003104 HasROTL ? LHSShiftAmt : RHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003105 }
3106 }
3107 } else if (LExtOp0.getOpcode() == ISD::SUB &&
3108 RExtOp0 == LExtOp0.getOperand(1)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003109 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003110 // (rotr x, y)
Bill Wendling353dea22008-08-31 01:04:56 +00003111 // fold (or (shl x, (*ext (sub 32, y))), (srl x, (*ext y))) ->
Bill Wendlingc5cbda12008-08-31 00:37:27 +00003112 // (rotl x, (sub 32, y))
Dan Gohman74feef22008-10-17 01:23:35 +00003113 if (ConstantSDNode *SUBC =
3114 dyn_cast<ConstantSDNode>(LExtOp0.getOperand(0))) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003115 if (SUBC->getAPIntValue() == OpSizeInBits) {
Bill Wendling317bd702009-01-30 21:14:50 +00003116 return DAG.getNode(HasROTR ? ISD::ROTR : ISD::ROTL, DL, VT,
3117 LHSShiftArg,
Bill Wendling353dea22008-08-31 01:04:56 +00003118 HasROTR ? RHSShiftAmt : LHSShiftAmt).getNode();
Scott Michelc9dc1142007-04-02 21:36:32 +00003119 }
3120 }
Chris Lattner516b9622006-09-14 20:50:57 +00003121 }
3122 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003123
Chris Lattner516b9622006-09-14 20:50:57 +00003124 return 0;
3125}
3126
Dan Gohman475871a2008-07-27 21:46:04 +00003127SDValue DAGCombiner::visitXOR(SDNode *N) {
3128 SDValue N0 = N->getOperand(0);
3129 SDValue N1 = N->getOperand(1);
3130 SDValue LHS, RHS, CC;
Nate Begeman646d7e22005-09-02 21:18:40 +00003131 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3132 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003133 EVT VT = N0.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003134
Dan Gohman7f321562007-06-25 16:23:39 +00003135 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00003136 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003137 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003138 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00003139 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003140
Evan Cheng26471c42008-03-25 20:08:07 +00003141 // fold (xor undef, undef) -> 0. This is a common idiom (misuse).
3142 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
3143 return DAG.getConstant(0, VT);
Dan Gohman613e0d82007-07-03 14:03:57 +00003144 // fold (xor x, undef) -> undef
Dan Gohman70fb1ae2007-07-10 15:19:29 +00003145 if (N0.getOpcode() == ISD::UNDEF)
3146 return N0;
3147 if (N1.getOpcode() == ISD::UNDEF)
Dan Gohman613e0d82007-07-03 14:03:57 +00003148 return N1;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003149 // fold (xor c1, c2) -> c1^c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003150 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003151 return DAG.FoldConstantArithmetic(ISD::XOR, VT, N0C, N1C);
Nate Begeman99801192005-09-07 23:25:52 +00003152 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00003153 if (N0C && !N1C)
Bill Wendling317bd702009-01-30 21:14:50 +00003154 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N1, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003155 // fold (xor x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003156 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003157 return N0;
Nate Begemancd4d58c2006-02-03 06:46:56 +00003158 // reassociate xor
Bill Wendling35247c32009-01-30 00:45:56 +00003159 SDValue RXOR = ReassociateOps(ISD::XOR, N->getDebugLoc(), N0, N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00003160 if (RXOR.getNode() != 0)
Nate Begemancd4d58c2006-02-03 06:46:56 +00003161 return RXOR;
Bill Wendlingae89bb12008-11-11 08:25:46 +00003162
Nate Begeman1d4d4142005-09-01 00:19:25 +00003163 // fold !(x cc y) -> (x !cc y)
Dan Gohman002e5d02008-03-13 22:13:53 +00003164 if (N1C && N1C->getAPIntValue() == 1 && isSetCCEquivalent(N0, LHS, RHS, CC)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003165 bool isInt = LHS.getValueType().isInteger();
Nate Begeman646d7e22005-09-02 21:18:40 +00003166 ISD::CondCode NotCC = ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
3167 isInt);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003168
Duncan Sands25cf2272008-11-24 14:53:14 +00003169 if (!LegalOperations || TLI.isCondCodeLegal(NotCC, LHS.getValueType())) {
Bill Wendlingae89bb12008-11-11 08:25:46 +00003170 switch (N0.getOpcode()) {
3171 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00003172 llvm_unreachable("Unhandled SetCC Equivalent!");
Bill Wendlingae89bb12008-11-11 08:25:46 +00003173 case ISD::SETCC:
Bill Wendling317bd702009-01-30 21:14:50 +00003174 return DAG.getSetCC(N->getDebugLoc(), VT, LHS, RHS, NotCC);
Bill Wendlingae89bb12008-11-11 08:25:46 +00003175 case ISD::SELECT_CC:
Bill Wendling317bd702009-01-30 21:14:50 +00003176 return DAG.getSelectCC(N->getDebugLoc(), LHS, RHS, N0.getOperand(2),
Bill Wendlingae89bb12008-11-11 08:25:46 +00003177 N0.getOperand(3), NotCC);
3178 }
3179 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003180 }
Bill Wendlingae89bb12008-11-11 08:25:46 +00003181
Chris Lattner61c5ff42007-09-10 21:39:07 +00003182 // fold (not (zext (setcc x, y))) -> (zext (not (setcc x, y)))
Dan Gohman002e5d02008-03-13 22:13:53 +00003183 if (N1C && N1C->getAPIntValue() == 1 && N0.getOpcode() == ISD::ZERO_EXTEND &&
Gabor Greif12632d22008-08-30 19:29:20 +00003184 N0.getNode()->hasOneUse() &&
3185 isSetCCEquivalent(N0.getOperand(0), LHS, RHS, CC)){
Dan Gohman475871a2008-07-27 21:46:04 +00003186 SDValue V = N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003187 V = DAG.getNode(ISD::XOR, N0.getDebugLoc(), V.getValueType(), V,
Duncan Sands272dce02007-10-10 09:54:50 +00003188 DAG.getConstant(1, V.getValueType()));
Gabor Greifba36cb52008-08-28 21:40:38 +00003189 AddToWorkList(V.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003190 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, V);
Chris Lattner61c5ff42007-09-10 21:39:07 +00003191 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003192
Bill Wendling317bd702009-01-30 21:14:50 +00003193 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are setcc
Owen Anderson825b72b2009-08-11 20:47:22 +00003194 if (N1C && N1C->getAPIntValue() == 1 && VT == MVT::i1 &&
Nate Begeman99801192005-09-07 23:25:52 +00003195 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003196 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003197 if (isOneUseSetCC(RHS) || isOneUseSetCC(LHS)) {
3198 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003199 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3200 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003201 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003202 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003203 }
3204 }
Bill Wendling317bd702009-01-30 21:14:50 +00003205 // fold (not (or x, y)) -> (and (not x), (not y)) iff x or y are constants
Scott Michelfdc40a02009-02-17 22:15:04 +00003206 if (N1C && N1C->isAllOnesValue() &&
Nate Begeman99801192005-09-07 23:25:52 +00003207 (N0.getOpcode() == ISD::OR || N0.getOpcode() == ISD::AND)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003208 SDValue LHS = N0.getOperand(0), RHS = N0.getOperand(1);
Nate Begeman99801192005-09-07 23:25:52 +00003209 if (isa<ConstantSDNode>(RHS) || isa<ConstantSDNode>(LHS)) {
3210 unsigned NewOpcode = N0.getOpcode() == ISD::AND ? ISD::OR : ISD::AND;
Bill Wendling317bd702009-01-30 21:14:50 +00003211 LHS = DAG.getNode(ISD::XOR, LHS.getDebugLoc(), VT, LHS, N1); // LHS = ~LHS
3212 RHS = DAG.getNode(ISD::XOR, RHS.getDebugLoc(), VT, RHS, N1); // RHS = ~RHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003213 AddToWorkList(LHS.getNode()); AddToWorkList(RHS.getNode());
Bill Wendling317bd702009-01-30 21:14:50 +00003214 return DAG.getNode(NewOpcode, N->getDebugLoc(), VT, LHS, RHS);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003215 }
3216 }
Bill Wendling317bd702009-01-30 21:14:50 +00003217 // fold (xor (xor x, c1), c2) -> (xor x, (xor c1, c2))
Nate Begeman223df222005-09-08 20:18:10 +00003218 if (N1C && N0.getOpcode() == ISD::XOR) {
3219 ConstantSDNode *N00C = dyn_cast<ConstantSDNode>(N0.getOperand(0));
3220 ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3221 if (N00C)
Bill Wendling317bd702009-01-30 21:14:50 +00003222 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(1),
3223 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003224 N00C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003225 if (N01C)
Bill Wendling317bd702009-01-30 21:14:50 +00003226 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT, N0.getOperand(0),
3227 DAG.getConstant(N1C->getAPIntValue() ^
Dan Gohman002e5d02008-03-13 22:13:53 +00003228 N01C->getAPIntValue(), VT));
Nate Begeman223df222005-09-08 20:18:10 +00003229 }
3230 // fold (xor x, x) -> 0
Eric Christopher7bccf6a2011-02-16 04:50:12 +00003231 if (N0 == N1)
3232 return tryFoldToZero(N->getDebugLoc(), TLI, VT, DAG, LegalOperations);
Scott Michelfdc40a02009-02-17 22:15:04 +00003233
Chris Lattner35e5c142006-05-05 05:51:50 +00003234 // Simplify: xor (op x...), (op y...) -> (op (xor x, y))
3235 if (N0.getOpcode() == N1.getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003236 SDValue Tmp = SimplifyBinOpWithSameOpcodeHands(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00003237 if (Tmp.getNode()) return Tmp;
Nate Begeman39ee1ac2005-09-09 19:49:52 +00003238 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003239
Chris Lattner3e104b12006-04-08 04:15:24 +00003240 // Simplify the expression using non-local knowledge.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003241 if (!VT.isVector() &&
Dan Gohman475871a2008-07-27 21:46:04 +00003242 SimplifyDemandedBits(SDValue(N, 0)))
3243 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003244
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003245 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003246}
3247
Chris Lattnere70da202007-12-06 07:33:36 +00003248/// visitShiftByConstant - Handle transforms common to the three shifts, when
3249/// the shift amount is a constant.
Dan Gohman475871a2008-07-27 21:46:04 +00003250SDValue DAGCombiner::visitShiftByConstant(SDNode *N, unsigned Amt) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003251 SDNode *LHS = N->getOperand(0).getNode();
Dan Gohman475871a2008-07-27 21:46:04 +00003252 if (!LHS->hasOneUse()) return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003253
Chris Lattnere70da202007-12-06 07:33:36 +00003254 // We want to pull some binops through shifts, so that we have (and (shift))
3255 // instead of (shift (and)), likewise for add, or, xor, etc. This sort of
3256 // thing happens with address calculations, so it's important to canonicalize
3257 // it.
3258 bool HighBitSet = false; // Can we transform this if the high bit is set?
Scott Michelfdc40a02009-02-17 22:15:04 +00003259
Chris Lattnere70da202007-12-06 07:33:36 +00003260 switch (LHS->getOpcode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003261 default: return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003262 case ISD::OR:
3263 case ISD::XOR:
3264 HighBitSet = false; // We can only transform sra if the high bit is clear.
3265 break;
3266 case ISD::AND:
3267 HighBitSet = true; // We can only transform sra if the high bit is set.
3268 break;
3269 case ISD::ADD:
Scott Michelfdc40a02009-02-17 22:15:04 +00003270 if (N->getOpcode() != ISD::SHL)
Dan Gohman475871a2008-07-27 21:46:04 +00003271 return SDValue(); // only shl(add) not sr[al](add).
Chris Lattnere70da202007-12-06 07:33:36 +00003272 HighBitSet = false; // We can only transform sra if the high bit is clear.
3273 break;
3274 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003275
Chris Lattnere70da202007-12-06 07:33:36 +00003276 // We require the RHS of the binop to be a constant as well.
3277 ConstantSDNode *BinOpCst = dyn_cast<ConstantSDNode>(LHS->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00003278 if (!BinOpCst) return SDValue();
Bill Wendling88103372009-01-30 21:37:17 +00003279
3280 // FIXME: disable this unless the input to the binop is a shift by a constant.
3281 // If it is not a shift, it pessimizes some common cases like:
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003282 //
Bill Wendling88103372009-01-30 21:37:17 +00003283 // void foo(int *X, int i) { X[i & 1235] = 1; }
3284 // int bar(int *X, int i) { return X[i & 255]; }
Gabor Greifba36cb52008-08-28 21:40:38 +00003285 SDNode *BinOpLHSVal = LHS->getOperand(0).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00003286 if ((BinOpLHSVal->getOpcode() != ISD::SHL &&
Chris Lattnerd3fd6d22007-12-06 07:47:55 +00003287 BinOpLHSVal->getOpcode() != ISD::SRA &&
3288 BinOpLHSVal->getOpcode() != ISD::SRL) ||
3289 !isa<ConstantSDNode>(BinOpLHSVal->getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00003290 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00003291
Owen Andersone50ed302009-08-10 22:56:29 +00003292 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003293
Bill Wendling88103372009-01-30 21:37:17 +00003294 // If this is a signed shift right, and the high bit is modified by the
3295 // logical operation, do not perform the transformation. The highBitSet
3296 // boolean indicates the value of the high bit of the constant which would
3297 // cause it to be modified for this operation.
Chris Lattnere70da202007-12-06 07:33:36 +00003298 if (N->getOpcode() == ISD::SRA) {
Dan Gohman220a8232008-03-03 23:51:38 +00003299 bool BinOpRHSSignSet = BinOpCst->getAPIntValue().isNegative();
3300 if (BinOpRHSSignSet != HighBitSet)
Dan Gohman475871a2008-07-27 21:46:04 +00003301 return SDValue();
Chris Lattnere70da202007-12-06 07:33:36 +00003302 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003303
Chris Lattnere70da202007-12-06 07:33:36 +00003304 // Fold the constants, shifting the binop RHS by the shift amount.
Bill Wendling88103372009-01-30 21:37:17 +00003305 SDValue NewRHS = DAG.getNode(N->getOpcode(), LHS->getOperand(1).getDebugLoc(),
3306 N->getValueType(0),
3307 LHS->getOperand(1), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003308
3309 // Create the new shift.
Eric Christopher503a64d2010-12-09 04:48:06 +00003310 SDValue NewShift = DAG.getNode(N->getOpcode(),
3311 LHS->getOperand(0).getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003312 VT, LHS->getOperand(0), N->getOperand(1));
Chris Lattnere70da202007-12-06 07:33:36 +00003313
3314 // Create the new binop.
Bill Wendling88103372009-01-30 21:37:17 +00003315 return DAG.getNode(LHS->getOpcode(), N->getDebugLoc(), VT, NewShift, NewRHS);
Chris Lattnere70da202007-12-06 07:33:36 +00003316}
3317
Dan Gohman475871a2008-07-27 21:46:04 +00003318SDValue DAGCombiner::visitSHL(SDNode *N) {
3319 SDValue N0 = N->getOperand(0);
3320 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003321 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3322 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003323 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003324 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003325
Nate Begeman1d4d4142005-09-01 00:19:25 +00003326 // fold (shl c1, c2) -> c1<<c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003327 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003328 return DAG.FoldConstantArithmetic(ISD::SHL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003329 // fold (shl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003330 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003331 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003332 // fold (shl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003333 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003334 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003335 // fold (shl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003336 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003337 return N0;
Chad Rosier92bcd962011-06-14 22:29:10 +00003338 // fold (shl undef, x) -> 0
3339 if (N0.getOpcode() == ISD::UNDEF)
3340 return DAG.getConstant(0, VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003341 // if (shl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003342 if (DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman87862e72009-12-11 21:31:27 +00003343 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003344 return DAG.getConstant(0, VT);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003345 // fold (shl x, (trunc (and y, c))) -> (shl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003346 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003347 N1.getOperand(0).getOpcode() == ISD::AND &&
3348 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003349 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003350 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003351 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003352 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003353 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003354 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003355 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00003356 DAG.getNode(ISD::AND, N->getDebugLoc(), TruncVT,
3357 DAG.getNode(ISD::TRUNCATE,
3358 N->getDebugLoc(),
3359 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003360 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003361 }
3362 }
3363
Dan Gohman475871a2008-07-27 21:46:04 +00003364 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3365 return SDValue(N, 0);
Bill Wendling88103372009-01-30 21:37:17 +00003366
3367 // fold (shl (shl x, c1), c2) -> 0 or (shl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003368 if (N1C && N0.getOpcode() == ISD::SHL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003369 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003370 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3371 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003372 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003373 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003374 return DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003375 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003376 }
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003377
3378 // fold (shl (ext (shl x, c1)), c2) -> (ext (shl x, (add c1, c2)))
3379 // For this to be valid, the second form must not preserve any of the bits
3380 // that are shifted out by the inner shift in the first form. This means
3381 // the outer shift size must be >= the number of bits added by the ext.
3382 // As a corollary, we don't care what kind of ext it is.
3383 if (N1C && (N0.getOpcode() == ISD::ZERO_EXTEND ||
3384 N0.getOpcode() == ISD::ANY_EXTEND ||
3385 N0.getOpcode() == ISD::SIGN_EXTEND) &&
3386 N0.getOperand(0).getOpcode() == ISD::SHL &&
3387 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003388 uint64_t c1 =
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003389 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3390 uint64_t c2 = N1C->getZExtValue();
3391 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3392 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
3393 if (c2 >= OpSizeInBits - InnerShiftSize) {
3394 if (c1 + c2 >= OpSizeInBits)
3395 return DAG.getConstant(0, VT);
3396 return DAG.getNode(ISD::SHL, N0->getDebugLoc(), VT,
3397 DAG.getNode(N0.getOpcode(), N0->getDebugLoc(), VT,
3398 N0.getOperand(0)->getOperand(0)),
3399 DAG.getConstant(c1 + c2, N1.getValueType()));
3400 }
3401 }
3402
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003403 // fold (shl (srl x, c1), c2) -> (and (shl x, (sub c2, c1), MASK) or
3404 // (and (srl x, (sub c1, c2), MASK)
Chandler Carruth62dfc512012-01-05 11:05:55 +00003405 // Only fold this if the inner shift has no other uses -- if it does, folding
3406 // this will increase the total number of instructions.
3407 if (N1C && N0.getOpcode() == ISD::SRL && N0.hasOneUse() &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003408 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003409 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
Evan Chengd101a722009-07-21 05:40:15 +00003410 if (c1 < VT.getSizeInBits()) {
3411 uint64_t c2 = N1C->getZExtValue();
Eli Friedman2a6d9eb2011-06-09 22:14:44 +00003412 APInt Mask = APInt::getHighBitsSet(VT.getSizeInBits(),
3413 VT.getSizeInBits() - c1);
3414 SDValue Shift;
3415 if (c2 > c1) {
3416 Mask = Mask.shl(c2-c1);
3417 Shift = DAG.getNode(ISD::SHL, N->getDebugLoc(), VT, N0.getOperand(0),
3418 DAG.getConstant(c2-c1, N1.getValueType()));
3419 } else {
3420 Mask = Mask.lshr(c1-c2);
3421 Shift = DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
3422 DAG.getConstant(c1-c2, N1.getValueType()));
3423 }
3424 return DAG.getNode(ISD::AND, N0.getDebugLoc(), VT, Shift,
3425 DAG.getConstant(Mask, VT));
Evan Chengd101a722009-07-21 05:40:15 +00003426 }
Nate Begeman1d4d4142005-09-01 00:19:25 +00003427 }
Bill Wendling88103372009-01-30 21:37:17 +00003428 // fold (shl (sra x, c1), c1) -> (and x, (shl -1, c1))
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003429 if (N1C && N0.getOpcode() == ISD::SRA && N1 == N0.getOperand(1)) {
3430 SDValue HiBitsMask =
3431 DAG.getConstant(APInt::getHighBitsSet(VT.getSizeInBits(),
3432 VT.getSizeInBits() -
3433 N1C->getZExtValue()),
3434 VT);
Bill Wendling88103372009-01-30 21:37:17 +00003435 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00003436 HiBitsMask);
3437 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003438
Evan Chenge5b51ac2010-04-17 06:13:15 +00003439 if (N1C) {
3440 SDValue NewSHL = visitShiftByConstant(N, N1C->getZExtValue());
3441 if (NewSHL.getNode())
3442 return NewSHL;
3443 }
3444
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003445 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003446}
3447
Dan Gohman475871a2008-07-27 21:46:04 +00003448SDValue DAGCombiner::visitSRA(SDNode *N) {
3449 SDValue N0 = N->getOperand(0);
3450 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003451 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3452 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003453 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003454 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003455
Bill Wendling88103372009-01-30 21:37:17 +00003456 // fold (sra c1, c2) -> (sra c1, c2)
Nate Begeman646d7e22005-09-02 21:18:40 +00003457 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003458 return DAG.FoldConstantArithmetic(ISD::SRA, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003459 // fold (sra 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003460 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003461 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003462 // fold (sra -1, x) -> -1
Nate Begeman646d7e22005-09-02 21:18:40 +00003463 if (N0C && N0C->isAllOnesValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003464 return N0;
Bill Wendling88103372009-01-30 21:37:17 +00003465 // fold (sra x, (setge c, size(x))) -> undef
Dan Gohman87862e72009-12-11 21:31:27 +00003466 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003467 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003468 // fold (sra x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003469 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003470 return N0;
Nate Begemanfb7217b2006-02-17 19:54:08 +00003471 // fold (sra (shl x, c1), c1) -> sext_inreg for some c1 and target supports
3472 // sext_inreg.
3473 if (N1C && N0.getOpcode() == ISD::SHL && N1 == N0.getOperand(1)) {
Dan Gohman87862e72009-12-11 21:31:27 +00003474 unsigned LowBits = OpSizeInBits - (unsigned)N1C->getZExtValue();
Dan Gohmand1996362010-01-09 02:13:55 +00003475 EVT ExtVT = EVT::getIntegerVT(*DAG.getContext(), LowBits);
3476 if (VT.isVector())
3477 ExtVT = EVT::getVectorVT(*DAG.getContext(),
3478 ExtVT, VT.getVectorNumElements());
3479 if ((!LegalOperations ||
3480 TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG, ExtVT)))
Bill Wendling88103372009-01-30 21:37:17 +00003481 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
Dan Gohmand1996362010-01-09 02:13:55 +00003482 N0.getOperand(0), DAG.getValueType(ExtVT));
Nate Begemanfb7217b2006-02-17 19:54:08 +00003483 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003484
Bill Wendling88103372009-01-30 21:37:17 +00003485 // fold (sra (sra x, c1), c2) -> (sra x, (add c1, c2))
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003486 if (N1C && N0.getOpcode() == ISD::SRA) {
3487 if (ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003488 unsigned Sum = N1C->getZExtValue() + C1->getZExtValue();
Dan Gohman87862e72009-12-11 21:31:27 +00003489 if (Sum >= OpSizeInBits) Sum = OpSizeInBits-1;
Bill Wendling88103372009-01-30 21:37:17 +00003490 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner71d9ebc2006-02-28 06:23:04 +00003491 DAG.getConstant(Sum, N1C->getValueType(0)));
3492 }
3493 }
Christopher Lamb15cbde32008-03-19 08:30:06 +00003494
Bill Wendling88103372009-01-30 21:37:17 +00003495 // fold (sra (shl X, m), (sub result_size, n))
3496 // -> (sign_extend (trunc (shl X, (sub (sub result_size, n), m)))) for
Scott Michelfdc40a02009-02-17 22:15:04 +00003497 // result_size - n != m.
3498 // If truncate is free for the target sext(shl) is likely to result in better
Christopher Lambb9b04282008-03-20 04:31:39 +00003499 // code.
Christopher Lamb15cbde32008-03-19 08:30:06 +00003500 if (N0.getOpcode() == ISD::SHL) {
3501 // Get the two constanst of the shifts, CN0 = m, CN = n.
3502 const ConstantSDNode *N01C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
3503 if (N01C && N1C) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003504 // Determine what the truncate's result bitsize and type would be.
Owen Andersone50ed302009-08-10 22:56:29 +00003505 EVT TruncVT =
Eric Christopher503a64d2010-12-09 04:48:06 +00003506 EVT::getIntegerVT(*DAG.getContext(),
3507 OpSizeInBits - N1C->getZExtValue());
Christopher Lambb9b04282008-03-20 04:31:39 +00003508 // Determine the residual right-shift amount.
Torok Edwin6bb49582009-05-23 17:29:48 +00003509 signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue();
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003510
Scott Michelfdc40a02009-02-17 22:15:04 +00003511 // If the shift is not a no-op (in which case this should be just a sign
3512 // extend already), the truncated to type is legal, sign_extend is legal
Dan Gohmanf451cb82010-02-10 16:03:48 +00003513 // on that type, and the truncate to that type is both legal and free,
Christopher Lambb9b04282008-03-20 04:31:39 +00003514 // perform the transform.
Torok Edwin6bb49582009-05-23 17:29:48 +00003515 if ((ShiftAmt > 0) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003516 TLI.isOperationLegalOrCustom(ISD::SIGN_EXTEND, TruncVT) &&
3517 TLI.isOperationLegalOrCustom(ISD::TRUNCATE, VT) &&
Evan Cheng260e07e2008-03-20 02:18:41 +00003518 TLI.isTruncateFree(VT, TruncVT)) {
Christopher Lambb9b04282008-03-20 04:31:39 +00003519
Owen Anderson95771af2011-02-25 21:41:48 +00003520 SDValue Amt = DAG.getConstant(ShiftAmt,
3521 getShiftAmountTy(N0.getOperand(0).getValueType()));
Bill Wendling88103372009-01-30 21:37:17 +00003522 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT,
3523 N0.getOperand(0), Amt);
3524 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), TruncVT,
3525 Shift);
3526 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(),
3527 N->getValueType(0), Trunc);
Christopher Lamb15cbde32008-03-19 08:30:06 +00003528 }
3529 }
3530 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003531
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003532 // fold (sra x, (trunc (and y, c))) -> (sra x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003533 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003534 N1.getOperand(0).getOpcode() == ISD::AND &&
3535 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003536 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003537 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003538 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003539 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003540 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003541 TruncC = TruncC.trunc(TruncVT.getScalarType().getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003542 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003543 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003544 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003545 DAG.getNode(ISD::TRUNCATE,
3546 N->getDebugLoc(),
3547 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003548 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003549 }
3550 }
3551
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003552 // fold (sra (trunc (sr x, c1)), c2) -> (trunc (sra x, c1+c2))
3553 // if c1 is equal to the number of bits the trunc removes
3554 if (N0.getOpcode() == ISD::TRUNCATE &&
3555 (N0.getOperand(0).getOpcode() == ISD::SRL ||
3556 N0.getOperand(0).getOpcode() == ISD::SRA) &&
3557 N0.getOperand(0).hasOneUse() &&
3558 N0.getOperand(0).getOperand(1).hasOneUse() &&
3559 N1C && isa<ConstantSDNode>(N0.getOperand(0).getOperand(1))) {
3560 EVT LargeVT = N0.getOperand(0).getValueType();
3561 ConstantSDNode *LargeShiftAmt =
3562 cast<ConstantSDNode>(N0.getOperand(0).getOperand(1));
3563
3564 if (LargeVT.getScalarType().getSizeInBits() - OpSizeInBits ==
3565 LargeShiftAmt->getZExtValue()) {
3566 SDValue Amt =
3567 DAG.getConstant(LargeShiftAmt->getZExtValue() + N1C->getZExtValue(),
Owen Anderson95771af2011-02-25 21:41:48 +00003568 getShiftAmountTy(N0.getOperand(0).getOperand(0).getValueType()));
Benjamin Kramer9b108a32011-01-30 16:38:43 +00003569 SDValue SRA = DAG.getNode(ISD::SRA, N->getDebugLoc(), LargeVT,
3570 N0.getOperand(0).getOperand(0), Amt);
3571 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, SRA);
3572 }
3573 }
3574
Scott Michelfdc40a02009-02-17 22:15:04 +00003575 // Simplify, based on bits shifted out of the LHS.
Dan Gohman475871a2008-07-27 21:46:04 +00003576 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3577 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003578
3579
Nate Begeman1d4d4142005-09-01 00:19:25 +00003580 // If the sign bit is known to be zero, switch this to a SRL.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003581 if (DAG.SignBitIsZero(N0))
Bill Wendling88103372009-01-30 21:37:17 +00003582 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0, N1);
Chris Lattnere70da202007-12-06 07:33:36 +00003583
Evan Chenge5b51ac2010-04-17 06:13:15 +00003584 if (N1C) {
3585 SDValue NewSRA = visitShiftByConstant(N, N1C->getZExtValue());
3586 if (NewSRA.getNode())
3587 return NewSRA;
3588 }
3589
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003590 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003591}
3592
Dan Gohman475871a2008-07-27 21:46:04 +00003593SDValue DAGCombiner::visitSRL(SDNode *N) {
3594 SDValue N0 = N->getOperand(0);
3595 SDValue N1 = N->getOperand(1);
Nate Begeman646d7e22005-09-02 21:18:40 +00003596 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3597 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00003598 EVT VT = N0.getValueType();
Dan Gohman87862e72009-12-11 21:31:27 +00003599 unsigned OpSizeInBits = VT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00003600
Nate Begeman1d4d4142005-09-01 00:19:25 +00003601 // fold (srl c1, c2) -> c1 >>u c2
Nate Begeman646d7e22005-09-02 21:18:40 +00003602 if (N0C && N1C)
Bill Wendlingf3cbca22008-09-24 10:25:02 +00003603 return DAG.FoldConstantArithmetic(ISD::SRL, VT, N0C, N1C);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003604 // fold (srl 0, x) -> 0
Nate Begeman646d7e22005-09-02 21:18:40 +00003605 if (N0C && N0C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003606 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003607 // fold (srl x, c >= size(x)) -> undef
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003608 if (N1C && N1C->getZExtValue() >= OpSizeInBits)
Dale Johannesene8d72302009-02-06 23:05:02 +00003609 return DAG.getUNDEF(VT);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003610 // fold (srl x, 0) -> x
Nate Begeman646d7e22005-09-02 21:18:40 +00003611 if (N1C && N1C->isNullValue())
Nate Begeman83e75ec2005-09-06 04:43:02 +00003612 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00003613 // if (srl x, c) is known to be zero, return 0
Dan Gohman475871a2008-07-27 21:46:04 +00003614 if (N1C && DAG.MaskedValueIsZero(SDValue(N, 0),
Dan Gohman2e68b6f2008-02-25 21:11:39 +00003615 APInt::getAllOnesValue(OpSizeInBits)))
Nate Begeman83e75ec2005-09-06 04:43:02 +00003616 return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003617
Bill Wendling88103372009-01-30 21:37:17 +00003618 // fold (srl (srl x, c1), c2) -> 0 or (srl x, (add c1, c2))
Scott Michelfdc40a02009-02-17 22:15:04 +00003619 if (N1C && N0.getOpcode() == ISD::SRL &&
Nate Begeman1d4d4142005-09-01 00:19:25 +00003620 N0.getOperand(1).getOpcode() == ISD::Constant) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003621 uint64_t c1 = cast<ConstantSDNode>(N0.getOperand(1))->getZExtValue();
3622 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003623 if (c1 + c2 >= OpSizeInBits)
Nate Begeman83e75ec2005-09-06 04:43:02 +00003624 return DAG.getConstant(0, VT);
Bill Wendling88103372009-01-30 21:37:17 +00003625 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0),
Nate Begeman83e75ec2005-09-06 04:43:02 +00003626 DAG.getConstant(c1 + c2, N1.getValueType()));
Nate Begeman1d4d4142005-09-01 00:19:25 +00003627 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003628
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003629 // fold (srl (trunc (srl x, c1)), c2) -> 0 or (trunc (srl x, (add c1, c2)))
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003630 if (N1C && N0.getOpcode() == ISD::TRUNCATE &&
3631 N0.getOperand(0).getOpcode() == ISD::SRL &&
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003632 isa<ConstantSDNode>(N0.getOperand(0)->getOperand(1))) {
Owen Anderson95771af2011-02-25 21:41:48 +00003633 uint64_t c1 =
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003634 cast<ConstantSDNode>(N0.getOperand(0)->getOperand(1))->getZExtValue();
3635 uint64_t c2 = N1C->getZExtValue();
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003636 EVT InnerShiftVT = N0.getOperand(0).getValueType();
3637 EVT ShiftCountVT = N0.getOperand(0)->getOperand(1).getValueType();
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003638 uint64_t InnerShiftSize = InnerShiftVT.getScalarType().getSizeInBits();
Dale Johannesen025cc6e2010-12-20 20:10:50 +00003639 // This is only valid if the OpSizeInBits + c1 = size of inner shift.
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003640 if (c1 + OpSizeInBits == InnerShiftSize) {
3641 if (c1 + c2 >= InnerShiftSize)
3642 return DAG.getConstant(0, VT);
3643 return DAG.getNode(ISD::TRUNCATE, N0->getDebugLoc(), VT,
Owen Anderson95771af2011-02-25 21:41:48 +00003644 DAG.getNode(ISD::SRL, N0->getDebugLoc(), InnerShiftVT,
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003645 N0.getOperand(0)->getOperand(0),
Dale Johannesenc72b18c2010-12-21 21:55:50 +00003646 DAG.getConstant(c1 + c2, ShiftCountVT)));
Dale Johannesenf5daf8b2010-12-17 21:45:49 +00003647 }
3648 }
3649
Chris Lattnerefcddc32010-04-15 05:28:43 +00003650 // fold (srl (shl x, c), c) -> (and x, cst2)
3651 if (N1C && N0.getOpcode() == ISD::SHL && N0.getOperand(1) == N1 &&
3652 N0.getValueSizeInBits() <= 64) {
3653 uint64_t ShAmt = N1C->getZExtValue()+64-N0.getValueSizeInBits();
3654 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0.getOperand(0),
3655 DAG.getConstant(~0ULL >> ShAmt, VT));
3656 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003657
Scott Michelfdc40a02009-02-17 22:15:04 +00003658
Chris Lattner06afe072006-05-05 22:53:17 +00003659 // fold (srl (anyextend x), c) -> (anyextend (srl x, c))
3660 if (N1C && N0.getOpcode() == ISD::ANY_EXTEND) {
3661 // Shifting in all undef bits?
Owen Andersone50ed302009-08-10 22:56:29 +00003662 EVT SmallVT = N0.getOperand(0).getValueType();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003663 if (N1C->getZExtValue() >= SmallVT.getSizeInBits())
Dale Johannesene8d72302009-02-06 23:05:02 +00003664 return DAG.getUNDEF(VT);
Chris Lattner06afe072006-05-05 22:53:17 +00003665
Evan Chenge5b51ac2010-04-17 06:13:15 +00003666 if (!LegalTypes || TLI.isTypeDesirableForOp(ISD::SRL, SmallVT)) {
Owen Andersona34d9362011-04-14 17:30:49 +00003667 uint64_t ShiftAmt = N1C->getZExtValue();
Evan Chenge5b51ac2010-04-17 06:13:15 +00003668 SDValue SmallShift = DAG.getNode(ISD::SRL, N0.getDebugLoc(), SmallVT,
Owen Andersona34d9362011-04-14 17:30:49 +00003669 N0.getOperand(0),
3670 DAG.getConstant(ShiftAmt, getShiftAmountTy(SmallVT)));
Evan Chenge5b51ac2010-04-17 06:13:15 +00003671 AddToWorkList(SmallShift.getNode());
3672 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, SmallShift);
3673 }
Chris Lattner06afe072006-05-05 22:53:17 +00003674 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003675
Chris Lattner3657ffe2006-10-12 20:23:19 +00003676 // fold (srl (sra X, Y), 31) -> (srl X, 31). This srl only looks at the sign
3677 // bit, which is unmodified by sra.
Bill Wendling88103372009-01-30 21:37:17 +00003678 if (N1C && N1C->getZExtValue() + 1 == VT.getSizeInBits()) {
Chris Lattner3657ffe2006-10-12 20:23:19 +00003679 if (N0.getOpcode() == ISD::SRA)
Bill Wendling88103372009-01-30 21:37:17 +00003680 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0.getOperand(0), N1);
Chris Lattner3657ffe2006-10-12 20:23:19 +00003681 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003682
Chris Lattner350bec02006-04-02 06:11:11 +00003683 // fold (srl (ctlz x), "5") -> x iff x has one bit set (the low bit).
Scott Michelfdc40a02009-02-17 22:15:04 +00003684 if (N1C && N0.getOpcode() == ISD::CTLZ &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00003685 N1C->getAPIntValue() == Log2_32(VT.getSizeInBits())) {
Dan Gohman948d8ea2008-02-20 16:33:30 +00003686 APInt KnownZero, KnownOne;
Dan Gohman5b870af2010-03-02 02:14:38 +00003687 APInt Mask = APInt::getAllOnesValue(VT.getScalarType().getSizeInBits());
Dan Gohmanea859be2007-06-22 14:59:07 +00003688 DAG.ComputeMaskedBits(N0.getOperand(0), Mask, KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00003689
Chris Lattner350bec02006-04-02 06:11:11 +00003690 // If any of the input bits are KnownOne, then the input couldn't be all
3691 // zeros, thus the result of the srl will always be zero.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003692 if (KnownOne.getBoolValue()) return DAG.getConstant(0, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003693
Chris Lattner350bec02006-04-02 06:11:11 +00003694 // If all of the bits input the to ctlz node are known to be zero, then
3695 // the result of the ctlz is "32" and the result of the shift is one.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003696 APInt UnknownBits = ~KnownZero & Mask;
Chris Lattner350bec02006-04-02 06:11:11 +00003697 if (UnknownBits == 0) return DAG.getConstant(1, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00003698
Chris Lattner350bec02006-04-02 06:11:11 +00003699 // Otherwise, check to see if there is exactly one bit input to the ctlz.
Bill Wendling88103372009-01-30 21:37:17 +00003700 if ((UnknownBits & (UnknownBits - 1)) == 0) {
Chris Lattner350bec02006-04-02 06:11:11 +00003701 // Okay, we know that only that the single bit specified by UnknownBits
Bill Wendling88103372009-01-30 21:37:17 +00003702 // could be set on input to the CTLZ node. If this bit is set, the SRL
3703 // will return 0, if it is clear, it returns 1. Change the CTLZ/SRL pair
3704 // to an SRL/XOR pair, which is likely to simplify more.
Dan Gohman948d8ea2008-02-20 16:33:30 +00003705 unsigned ShAmt = UnknownBits.countTrailingZeros();
Dan Gohman475871a2008-07-27 21:46:04 +00003706 SDValue Op = N0.getOperand(0);
Bill Wendling88103372009-01-30 21:37:17 +00003707
Chris Lattner350bec02006-04-02 06:11:11 +00003708 if (ShAmt) {
Bill Wendling88103372009-01-30 21:37:17 +00003709 Op = DAG.getNode(ISD::SRL, N0.getDebugLoc(), VT, Op,
Owen Anderson95771af2011-02-25 21:41:48 +00003710 DAG.getConstant(ShAmt, getShiftAmountTy(Op.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00003711 AddToWorkList(Op.getNode());
Chris Lattner350bec02006-04-02 06:11:11 +00003712 }
Bill Wendling88103372009-01-30 21:37:17 +00003713
3714 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
3715 Op, DAG.getConstant(1, VT));
Chris Lattner350bec02006-04-02 06:11:11 +00003716 }
3717 }
Evan Chengeb9f8922008-08-30 02:03:58 +00003718
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003719 // fold (srl x, (trunc (and y, c))) -> (srl x, (and (trunc y), (trunc c))).
Evan Chengeb9f8922008-08-30 02:03:58 +00003720 if (N1.getOpcode() == ISD::TRUNCATE &&
Evan Cheng242ebd12008-09-22 18:19:24 +00003721 N1.getOperand(0).getOpcode() == ISD::AND &&
3722 N1.hasOneUse() && N1.getOperand(0).hasOneUse()) {
Evan Chengeb9f8922008-08-30 02:03:58 +00003723 SDValue N101 = N1.getOperand(0).getOperand(1);
Evan Cheng242ebd12008-09-22 18:19:24 +00003724 if (ConstantSDNode *N101C = dyn_cast<ConstantSDNode>(N101)) {
Owen Andersone50ed302009-08-10 22:56:29 +00003725 EVT TruncVT = N1.getValueType();
Evan Cheng242ebd12008-09-22 18:19:24 +00003726 SDValue N100 = N1.getOperand(0).getOperand(0);
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00003727 APInt TruncC = N101C->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00003728 TruncC = TruncC.trunc(TruncVT.getSizeInBits());
Bill Wendling88103372009-01-30 21:37:17 +00003729 return DAG.getNode(ISD::SRL, N->getDebugLoc(), VT, N0,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003730 DAG.getNode(ISD::AND, N->getDebugLoc(),
Bill Wendling88103372009-01-30 21:37:17 +00003731 TruncVT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00003732 DAG.getNode(ISD::TRUNCATE,
3733 N->getDebugLoc(),
3734 TruncVT, N100),
Dan Gohmance9bc122009-01-27 20:39:34 +00003735 DAG.getConstant(TruncC, TruncVT)));
Evan Chengeb9f8922008-08-30 02:03:58 +00003736 }
3737 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003738
Chris Lattner61a4c072007-04-18 03:06:49 +00003739 // fold operands of srl based on knowledge that the low bits are not
3740 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00003741 if (N1C && SimplifyDemandedBits(SDValue(N, 0)))
3742 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003743
Evan Cheng9ab2b982009-12-18 21:31:31 +00003744 if (N1C) {
3745 SDValue NewSRL = visitShiftByConstant(N, N1C->getZExtValue());
3746 if (NewSRL.getNode())
3747 return NewSRL;
3748 }
3749
Dan Gohman4e39e9d2010-06-24 14:30:44 +00003750 // Attempt to convert a srl of a load into a narrower zero-extending load.
3751 SDValue NarrowLoad = ReduceLoadWidth(N);
3752 if (NarrowLoad.getNode())
3753 return NarrowLoad;
3754
Evan Cheng9ab2b982009-12-18 21:31:31 +00003755 // Here is a common situation. We want to optimize:
3756 //
3757 // %a = ...
3758 // %b = and i32 %a, 2
3759 // %c = srl i32 %b, 1
3760 // brcond i32 %c ...
3761 //
3762 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003763 //
Evan Cheng9ab2b982009-12-18 21:31:31 +00003764 // %a = ...
3765 // %b = and %a, 2
3766 // %c = setcc eq %b, 0
3767 // brcond %c ...
3768 //
3769 // However when after the source operand of SRL is optimized into AND, the SRL
3770 // itself may not be optimized further. Look for it and add the BRCOND into
3771 // the worklist.
Evan Chengd40d03e2010-01-06 19:38:29 +00003772 if (N->hasOneUse()) {
3773 SDNode *Use = *N->use_begin();
3774 if (Use->getOpcode() == ISD::BRCOND)
3775 AddToWorkList(Use);
3776 else if (Use->getOpcode() == ISD::TRUNCATE && Use->hasOneUse()) {
3777 // Also look pass the truncate.
3778 Use = *Use->use_begin();
3779 if (Use->getOpcode() == ISD::BRCOND)
3780 AddToWorkList(Use);
3781 }
3782 }
Evan Cheng9ab2b982009-12-18 21:31:31 +00003783
Evan Chengb3a3d5e2010-04-28 07:10:39 +00003784 return SDValue();
Evan Cheng4c26e932010-04-19 19:29:22 +00003785}
3786
Dan Gohman475871a2008-07-27 21:46:04 +00003787SDValue DAGCombiner::visitCTLZ(SDNode *N) {
3788 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003789 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00003790
3791 // fold (ctlz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003792 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003793 return DAG.getNode(ISD::CTLZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003794 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003795}
3796
Chandler Carruth63974b22011-12-13 01:56:10 +00003797SDValue DAGCombiner::visitCTLZ_ZERO_UNDEF(SDNode *N) {
3798 SDValue N0 = N->getOperand(0);
3799 EVT VT = N->getValueType(0);
3800
3801 // fold (ctlz_zero_undef c1) -> c2
3802 if (isa<ConstantSDNode>(N0))
3803 return DAG.getNode(ISD::CTLZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
3804 return SDValue();
3805}
3806
Dan Gohman475871a2008-07-27 21:46:04 +00003807SDValue DAGCombiner::visitCTTZ(SDNode *N) {
3808 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003809 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003810
Nate Begeman1d4d4142005-09-01 00:19:25 +00003811 // fold (cttz c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003812 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003813 return DAG.getNode(ISD::CTTZ, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003814 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003815}
3816
Chandler Carruth63974b22011-12-13 01:56:10 +00003817SDValue DAGCombiner::visitCTTZ_ZERO_UNDEF(SDNode *N) {
3818 SDValue N0 = N->getOperand(0);
3819 EVT VT = N->getValueType(0);
3820
3821 // fold (cttz_zero_undef c1) -> c2
3822 if (isa<ConstantSDNode>(N0))
3823 return DAG.getNode(ISD::CTTZ_ZERO_UNDEF, N->getDebugLoc(), VT, N0);
3824 return SDValue();
3825}
3826
Dan Gohman475871a2008-07-27 21:46:04 +00003827SDValue DAGCombiner::visitCTPOP(SDNode *N) {
3828 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00003829 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003830
Nate Begeman1d4d4142005-09-01 00:19:25 +00003831 // fold (ctpop c1) -> c2
Chris Lattner310b5782006-05-06 23:06:26 +00003832 if (isa<ConstantSDNode>(N0))
Bill Wendling34584e62009-01-30 22:02:18 +00003833 return DAG.getNode(ISD::CTPOP, N->getDebugLoc(), VT, N0);
Dan Gohman475871a2008-07-27 21:46:04 +00003834 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00003835}
3836
Dan Gohman475871a2008-07-27 21:46:04 +00003837SDValue DAGCombiner::visitSELECT(SDNode *N) {
3838 SDValue N0 = N->getOperand(0);
3839 SDValue N1 = N->getOperand(1);
3840 SDValue N2 = N->getOperand(2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00003841 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
3842 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
3843 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2);
Owen Andersone50ed302009-08-10 22:56:29 +00003844 EVT VT = N->getValueType(0);
3845 EVT VT0 = N0.getValueType();
Nate Begeman44728a72005-09-19 22:34:01 +00003846
Bill Wendling34584e62009-01-30 22:02:18 +00003847 // fold (select C, X, X) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00003848 if (N1 == N2)
3849 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00003850 // fold (select true, X, Y) -> X
Nate Begeman452d7beb2005-09-16 00:54:12 +00003851 if (N0C && !N0C->isNullValue())
3852 return N1;
Bill Wendling34584e62009-01-30 22:02:18 +00003853 // fold (select false, X, Y) -> Y
Nate Begeman452d7beb2005-09-16 00:54:12 +00003854 if (N0C && N0C->isNullValue())
3855 return N2;
Bill Wendling34584e62009-01-30 22:02:18 +00003856 // fold (select C, 1, X) -> (or C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00003857 if (VT == MVT::i1 && N1C && N1C->getAPIntValue() == 1)
Bill Wendling34584e62009-01-30 22:02:18 +00003858 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
3859 // fold (select C, 0, 1) -> (xor C, 1)
Bob Wilson67ba2232009-01-22 22:05:48 +00003860 if (VT.isInteger() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00003861 (VT0 == MVT::i1 ||
Bob Wilson67ba2232009-01-22 22:05:48 +00003862 (VT0.isInteger() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00003863 TLI.getBooleanContents(false) == TargetLowering::ZeroOrOneBooleanContent)) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00003864 N1C && N2C && N1C->isNullValue() && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00003865 SDValue XORNode;
Evan Cheng571c4782007-08-18 05:57:05 +00003866 if (VT == VT0)
Bill Wendling34584e62009-01-30 22:02:18 +00003867 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT0,
3868 N0, DAG.getConstant(1, VT0));
3869 XORNode = DAG.getNode(ISD::XOR, N0.getDebugLoc(), VT0,
3870 N0, DAG.getConstant(1, VT0));
Gabor Greifba36cb52008-08-28 21:40:38 +00003871 AddToWorkList(XORNode.getNode());
Duncan Sands8e4eb092008-06-08 20:54:56 +00003872 if (VT.bitsGT(VT0))
Bill Wendling34584e62009-01-30 22:02:18 +00003873 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, XORNode);
3874 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, XORNode);
Evan Cheng571c4782007-08-18 05:57:05 +00003875 }
Bill Wendling34584e62009-01-30 22:02:18 +00003876 // fold (select C, 0, X) -> (and (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00003877 if (VT == VT0 && VT == MVT::i1 && N1C && N1C->isNullValue()) {
Bill Wendling7581bfa2009-01-30 23:03:19 +00003878 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00003879 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00003880 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, NOTNode, N2);
Nate Begeman452d7beb2005-09-16 00:54:12 +00003881 }
Bill Wendling34584e62009-01-30 22:02:18 +00003882 // fold (select C, X, 1) -> (or (not C), X)
Owen Anderson825b72b2009-08-11 20:47:22 +00003883 if (VT == VT0 && VT == MVT::i1 && N2C && N2C->getAPIntValue() == 1) {
Bill Wendling34584e62009-01-30 22:02:18 +00003884 SDValue NOTNode = DAG.getNOT(N0.getDebugLoc(), N0, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00003885 AddToWorkList(NOTNode.getNode());
Bill Wendling7581bfa2009-01-30 23:03:19 +00003886 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, NOTNode, N1);
Nate Begeman452d7beb2005-09-16 00:54:12 +00003887 }
Bill Wendling34584e62009-01-30 22:02:18 +00003888 // fold (select C, X, 0) -> (and C, X)
Owen Anderson825b72b2009-08-11 20:47:22 +00003889 if (VT == MVT::i1 && N2C && N2C->isNullValue())
Bill Wendling34584e62009-01-30 22:02:18 +00003890 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
3891 // fold (select X, X, Y) -> (or X, Y)
3892 // fold (select X, 1, Y) -> (or X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00003893 if (VT == MVT::i1 && (N0 == N1 || (N1C && N1C->getAPIntValue() == 1)))
Bill Wendling34584e62009-01-30 22:02:18 +00003894 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, N0, N2);
3895 // fold (select X, Y, X) -> (and X, Y)
3896 // fold (select X, Y, 0) -> (and X, Y)
Owen Anderson825b72b2009-08-11 20:47:22 +00003897 if (VT == MVT::i1 && (N0 == N2 || (N2C && N2C->getAPIntValue() == 0)))
Bill Wendling34584e62009-01-30 22:02:18 +00003898 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00003899
Chris Lattner40c62d52005-10-18 06:04:22 +00003900 // If we can fold this based on the true/false value, do so.
3901 if (SimplifySelectOps(N, N1, N2))
Dan Gohman475871a2008-07-27 21:46:04 +00003902 return SDValue(N, 0); // Don't revisit N.
Duncan Sandsd4b9c172008-06-13 19:07:40 +00003903
Nate Begeman44728a72005-09-19 22:34:01 +00003904 // fold selects based on a setcc into other things, such as min/max/abs
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003905 if (N0.getOpcode() == ISD::SETCC) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003906 // FIXME:
Owen Anderson825b72b2009-08-11 20:47:22 +00003907 // Check against MVT::Other for SELECT_CC, which is a workaround for targets
Nate Begeman750ac1b2006-02-01 07:19:44 +00003908 // having to say they don't support SELECT_CC on every type the DAG knows
3909 // about, since there is no way to mark an opcode illegal at all value types
Owen Anderson825b72b2009-08-11 20:47:22 +00003910 if (TLI.isOperationLegalOrCustom(ISD::SELECT_CC, MVT::Other) &&
Dan Gohman4ea48042009-08-02 16:19:38 +00003911 TLI.isOperationLegalOrCustom(ISD::SELECT_CC, VT))
Bill Wendling34584e62009-01-30 22:02:18 +00003912 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), VT,
3913 N0.getOperand(0), N0.getOperand(1),
Nate Begeman750ac1b2006-02-01 07:19:44 +00003914 N1, N2, N0.getOperand(2));
Chris Lattner600fec32009-03-11 05:08:08 +00003915 return SimplifySelect(N->getDebugLoc(), N0, N1, N2);
Anton Korobeynikov4c71dfe2008-02-20 11:10:28 +00003916 }
Bill Wendling34584e62009-01-30 22:02:18 +00003917
Dan Gohman475871a2008-07-27 21:46:04 +00003918 return SDValue();
Nate Begeman452d7beb2005-09-16 00:54:12 +00003919}
3920
Dan Gohman475871a2008-07-27 21:46:04 +00003921SDValue DAGCombiner::visitSELECT_CC(SDNode *N) {
3922 SDValue N0 = N->getOperand(0);
3923 SDValue N1 = N->getOperand(1);
3924 SDValue N2 = N->getOperand(2);
3925 SDValue N3 = N->getOperand(3);
3926 SDValue N4 = N->getOperand(4);
Nate Begeman44728a72005-09-19 22:34:01 +00003927 ISD::CondCode CC = cast<CondCodeSDNode>(N4)->get();
Scott Michelfdc40a02009-02-17 22:15:04 +00003928
Nate Begeman44728a72005-09-19 22:34:01 +00003929 // fold select_cc lhs, rhs, x, x, cc -> x
3930 if (N2 == N3)
3931 return N2;
Scott Michelfdc40a02009-02-17 22:15:04 +00003932
Chris Lattner5f42a242006-09-20 06:19:26 +00003933 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00003934 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00003935 N0, N1, CC, N->getDebugLoc(), false);
Gabor Greifba36cb52008-08-28 21:40:38 +00003936 if (SCC.getNode()) AddToWorkList(SCC.getNode());
Chris Lattner5f42a242006-09-20 06:19:26 +00003937
Gabor Greifba36cb52008-08-28 21:40:38 +00003938 if (ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode())) {
Dan Gohman002e5d02008-03-13 22:13:53 +00003939 if (!SCCC->isNullValue())
Chris Lattner5f42a242006-09-20 06:19:26 +00003940 return N2; // cond always true -> true val
3941 else
3942 return N3; // cond always false -> false val
3943 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003944
Chris Lattner5f42a242006-09-20 06:19:26 +00003945 // Fold to a simpler select_cc
Gabor Greifba36cb52008-08-28 21:40:38 +00003946 if (SCC.getNode() && SCC.getOpcode() == ISD::SETCC)
Scott Michelfdc40a02009-02-17 22:15:04 +00003947 return DAG.getNode(ISD::SELECT_CC, N->getDebugLoc(), N2.getValueType(),
3948 SCC.getOperand(0), SCC.getOperand(1), N2, N3,
Chris Lattner5f42a242006-09-20 06:19:26 +00003949 SCC.getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00003950
Chris Lattner40c62d52005-10-18 06:04:22 +00003951 // If we can fold this based on the true/false value, do so.
3952 if (SimplifySelectOps(N, N2, N3))
Dan Gohman475871a2008-07-27 21:46:04 +00003953 return SDValue(N, 0); // Don't revisit N.
Scott Michelfdc40a02009-02-17 22:15:04 +00003954
Nate Begeman44728a72005-09-19 22:34:01 +00003955 // fold select_cc into other things, such as min/max/abs
Bill Wendling836ca7d2009-01-30 23:59:18 +00003956 return SimplifySelectCC(N->getDebugLoc(), N0, N1, N2, N3, CC);
Nate Begeman452d7beb2005-09-16 00:54:12 +00003957}
3958
Dan Gohman475871a2008-07-27 21:46:04 +00003959SDValue DAGCombiner::visitSETCC(SDNode *N) {
Nate Begeman452d7beb2005-09-16 00:54:12 +00003960 return SimplifySetCC(N->getValueType(0), N->getOperand(0), N->getOperand(1),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00003961 cast<CondCodeSDNode>(N->getOperand(2))->get(),
3962 N->getDebugLoc());
Nate Begeman452d7beb2005-09-16 00:54:12 +00003963}
3964
Evan Cheng3c3ddb32007-10-29 19:58:20 +00003965// ExtendUsesToFormExtLoad - Trying to extend uses of a load to enable this:
Dan Gohman57fc82d2009-04-09 03:51:29 +00003966// "fold ({s|z|a}ext (load x)) -> ({s|z|a}ext (truncate ({s|z|a}extload x)))"
Evan Cheng3c3ddb32007-10-29 19:58:20 +00003967// transformation. Returns true if extension are possible and the above
Scott Michelfdc40a02009-02-17 22:15:04 +00003968// mentioned transformation is profitable.
Dan Gohman475871a2008-07-27 21:46:04 +00003969static bool ExtendUsesToFormExtLoad(SDNode *N, SDValue N0,
Evan Cheng3c3ddb32007-10-29 19:58:20 +00003970 unsigned ExtOpc,
3971 SmallVector<SDNode*, 4> &ExtendNodes,
Dan Gohman79ce2762009-01-15 19:20:50 +00003972 const TargetLowering &TLI) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00003973 bool HasCopyToRegUses = false;
3974 bool isTruncFree = TLI.isTruncateFree(N->getValueType(0), N0.getValueType());
Gabor Greif12632d22008-08-30 19:29:20 +00003975 for (SDNode::use_iterator UI = N0.getNode()->use_begin(),
3976 UE = N0.getNode()->use_end();
Evan Cheng3c3ddb32007-10-29 19:58:20 +00003977 UI != UE; ++UI) {
Dan Gohman89684502008-07-27 20:43:25 +00003978 SDNode *User = *UI;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00003979 if (User == N)
3980 continue;
Dan Gohman57fc82d2009-04-09 03:51:29 +00003981 if (UI.getUse().getResNo() != N0.getResNo())
3982 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00003983 // FIXME: Only extend SETCC N, N and SETCC N, c for now.
Dan Gohman57fc82d2009-04-09 03:51:29 +00003984 if (ExtOpc != ISD::ANY_EXTEND && User->getOpcode() == ISD::SETCC) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00003985 ISD::CondCode CC = cast<CondCodeSDNode>(User->getOperand(2))->get();
3986 if (ExtOpc == ISD::ZERO_EXTEND && ISD::isSignedIntSetCC(CC))
3987 // Sign bits will be lost after a zext.
3988 return false;
3989 bool Add = false;
3990 for (unsigned i = 0; i != 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003991 SDValue UseOp = User->getOperand(i);
Evan Cheng3c3ddb32007-10-29 19:58:20 +00003992 if (UseOp == N0)
3993 continue;
3994 if (!isa<ConstantSDNode>(UseOp))
3995 return false;
3996 Add = true;
3997 }
3998 if (Add)
3999 ExtendNodes.push_back(User);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004000 continue;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004001 }
Dan Gohman57fc82d2009-04-09 03:51:29 +00004002 // If truncates aren't free and there are users we can't
4003 // extend, it isn't worthwhile.
4004 if (!isTruncFree)
4005 return false;
4006 // Remember if this value is live-out.
4007 if (User->getOpcode() == ISD::CopyToReg)
4008 HasCopyToRegUses = true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004009 }
4010
4011 if (HasCopyToRegUses) {
4012 bool BothLiveOut = false;
4013 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
4014 UI != UE; ++UI) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004015 SDUse &Use = UI.getUse();
4016 if (Use.getResNo() == 0 && Use.getUser()->getOpcode() == ISD::CopyToReg) {
4017 BothLiveOut = true;
4018 break;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004019 }
4020 }
4021 if (BothLiveOut)
4022 // Both unextended and extended values are live out. There had better be
Bob Wilsonbebfbc52010-11-28 06:51:19 +00004023 // a good reason for the transformation.
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004024 return ExtendNodes.size();
4025 }
4026 return true;
4027}
4028
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004029void DAGCombiner::ExtendSetCCUses(SmallVector<SDNode*, 4> SetCCs,
4030 SDValue Trunc, SDValue ExtLoad, DebugLoc DL,
4031 ISD::NodeType ExtType) {
4032 // Extend SetCC uses if necessary.
4033 for (unsigned i = 0, e = SetCCs.size(); i != e; ++i) {
4034 SDNode *SetCC = SetCCs[i];
4035 SmallVector<SDValue, 4> Ops;
4036
4037 for (unsigned j = 0; j != 2; ++j) {
4038 SDValue SOp = SetCC->getOperand(j);
4039 if (SOp == Trunc)
4040 Ops.push_back(ExtLoad);
4041 else
4042 Ops.push_back(DAG.getNode(ExtType, DL, ExtLoad->getValueType(0), SOp));
4043 }
4044
4045 Ops.push_back(SetCC->getOperand(2));
4046 CombineTo(SetCC, DAG.getNode(ISD::SETCC, DL, SetCC->getValueType(0),
4047 &Ops[0], Ops.size()));
4048 }
4049}
4050
Dan Gohman475871a2008-07-27 21:46:04 +00004051SDValue DAGCombiner::visitSIGN_EXTEND(SDNode *N) {
4052 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004053 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004054
Nate Begeman1d4d4142005-09-01 00:19:25 +00004055 // fold (sext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004056 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004057 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004058
Nate Begeman1d4d4142005-09-01 00:19:25 +00004059 // fold (sext (sext x)) -> (sext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004060 // fold (sext (aext x)) -> (sext x)
4061 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004062 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT,
4063 N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004064
Chris Lattner22558872007-02-26 03:13:59 +00004065 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004066 // fold (sext (truncate (load x))) -> (sext (smaller load x))
4067 // fold (sext (truncate (srl (load x), c))) -> (sext (smaller load (x+c/n)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004068 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4069 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004070 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4071 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004072 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004073 // CombineTo deleted the truncate, if needed, but not what's under it.
4074 AddToWorkList(oye);
4075 }
Dan Gohmanc7b34442009-04-27 02:00:55 +00004076 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004077 }
Evan Chengc88138f2007-03-22 01:54:19 +00004078
Dan Gohman1fdfa6a2008-05-20 20:56:33 +00004079 // See if the value being truncated is already sign extended. If so, just
4080 // eliminate the trunc/sext pair.
Dan Gohman475871a2008-07-27 21:46:04 +00004081 SDValue Op = N0.getOperand(0);
Dan Gohmand1996362010-01-09 02:13:55 +00004082 unsigned OpBits = Op.getValueType().getScalarType().getSizeInBits();
4083 unsigned MidBits = N0.getValueType().getScalarType().getSizeInBits();
4084 unsigned DestBits = VT.getScalarType().getSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00004085 unsigned NumSignBits = DAG.ComputeNumSignBits(Op);
Scott Michelfdc40a02009-02-17 22:15:04 +00004086
Chris Lattner22558872007-02-26 03:13:59 +00004087 if (OpBits == DestBits) {
4088 // Op is i32, Mid is i8, and Dest is i32. If Op has more than 24 sign
4089 // bits, it is already ready.
4090 if (NumSignBits > DestBits-MidBits)
4091 return Op;
4092 } else if (OpBits < DestBits) {
4093 // Op is i32, Mid is i8, and Dest is i64. If Op has more than 24 sign
4094 // bits, just sext from i32.
4095 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004096 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, Op);
Chris Lattner22558872007-02-26 03:13:59 +00004097 } else {
4098 // Op is i64, Mid is i8, and Dest is i32. If Op has more than 56 sign
4099 // bits, just truncate to i32.
4100 if (NumSignBits > OpBits-MidBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004101 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004102 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004103
Chris Lattner22558872007-02-26 03:13:59 +00004104 // fold (sext (truncate x)) -> (sextinreg x).
Duncan Sands25cf2272008-11-24 14:53:14 +00004105 if (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND_INREG,
4106 N0.getValueType())) {
Dan Gohmand1996362010-01-09 02:13:55 +00004107 if (OpBits < DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004108 Op = DAG.getNode(ISD::ANY_EXTEND, N0.getDebugLoc(), VT, Op);
Dan Gohmand1996362010-01-09 02:13:55 +00004109 else if (OpBits > DestBits)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004110 Op = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), VT, Op);
4111 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, Op,
Dan Gohmand1996362010-01-09 02:13:55 +00004112 DAG.getValueType(N0.getValueType()));
Chris Lattner22558872007-02-26 03:13:59 +00004113 }
Chris Lattner6007b842006-09-21 06:00:20 +00004114 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004115
Evan Cheng110dec22005-12-14 02:19:23 +00004116 // fold (sext (load x)) -> (sext (truncate (sextload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004117 // None of the supported targets knows how to perform load and sign extend
Nadav Rotemfcd96192011-02-27 07:40:43 +00004118 // on vectors in one instruction. We only perform this transformation on
4119 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004120 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004121 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004122 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004123 bool DoXform = true;
4124 SmallVector<SDNode*, 4> SetCCs;
4125 if (!N0.hasOneUse())
4126 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::SIGN_EXTEND, SetCCs, TLI);
4127 if (DoXform) {
4128 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004129 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004130 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004131 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004132 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004133 LN0->isVolatile(), LN0->isNonTemporal(),
4134 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004135 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004136 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4137 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004138 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004139 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4140 ISD::SIGN_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004141 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004142 }
Nate Begeman3df4d522005-10-12 20:40:40 +00004143 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004144
4145 // fold (sext (sextload x)) -> (sext (truncate (sextload x)))
4146 // fold (sext ( extload x)) -> (sext (truncate (sextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004147 if ((ISD::isSEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4148 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004149 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004150 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004151 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004152 TLI.isLoadExtLegal(ISD::SEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004153 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004154 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004155 LN0->getBasePtr(), LN0->getPointerInfo(),
4156 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004157 LN0->isVolatile(), LN0->isNonTemporal(),
4158 LN0->getAlignment());
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004159 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004160 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004161 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4162 N0.getValueType(), ExtLoad),
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004163 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004164 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Jim Laskeyf6c4ccf2006-12-15 21:38:30 +00004165 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004166 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004167
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004168 // fold (sext (and/or/xor (load x), cst)) ->
4169 // (and/or/xor (sextload x), (sext cst))
4170 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4171 N0.getOpcode() == ISD::XOR) &&
4172 isa<LoadSDNode>(N0.getOperand(0)) &&
4173 N0.getOperand(1).getOpcode() == ISD::Constant &&
4174 TLI.isLoadExtLegal(ISD::SEXTLOAD, N0.getValueType()) &&
4175 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4176 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4177 if (LN0->getExtensionType() != ISD::ZEXTLOAD) {
4178 bool DoXform = true;
4179 SmallVector<SDNode*, 4> SetCCs;
4180 if (!N0.hasOneUse())
4181 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::SIGN_EXTEND,
4182 SetCCs, TLI);
4183 if (DoXform) {
4184 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, LN0->getDebugLoc(), VT,
4185 LN0->getChain(), LN0->getBasePtr(),
4186 LN0->getPointerInfo(),
4187 LN0->getMemoryVT(),
4188 LN0->isVolatile(),
4189 LN0->isNonTemporal(),
4190 LN0->getAlignment());
4191 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4192 Mask = Mask.sext(VT.getSizeInBits());
4193 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4194 ExtLoad, DAG.getConstant(Mask, VT));
4195 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4196 N0.getOperand(0).getDebugLoc(),
4197 N0.getOperand(0).getValueType(), ExtLoad);
4198 CombineTo(N, And);
4199 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4200 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4201 ISD::SIGN_EXTEND);
4202 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4203 }
4204 }
4205 }
4206
Chris Lattner20a35c32007-04-11 05:32:27 +00004207 if (N0.getOpcode() == ISD::SETCC) {
Chris Lattner2b7a2712009-07-08 00:31:33 +00004208 // sext(setcc) -> sext_in_reg(vsetcc) for vectors.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004209 // Only do this before legalize for now.
4210 if (VT.isVector() && !LegalOperations) {
4211 EVT N0VT = N0.getOperand(0).getValueType();
Chris Lattner2b7a2712009-07-08 00:31:33 +00004212 // We know that the # elements of the results is the same as the
4213 // # elements of the compare (and the # elements of the compare result
4214 // for that matter). Check to see that they are the same size. If so,
4215 // we know that the element size of the sext'd result matches the
4216 // element size of the compare operands.
Dan Gohman3ce89f42010-04-30 17:19:19 +00004217 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004218 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004219 N0.getOperand(1),
4220 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Dan Gohman3ce89f42010-04-30 17:19:19 +00004221 // If the desired elements are smaller or larger than the source
4222 // elements we can use a matching integer vector type and then
4223 // truncate/sign extend
4224 else {
Duncan Sands34727662010-07-12 08:16:59 +00004225 EVT MatchingElementType =
4226 EVT::getIntegerVT(*DAG.getContext(),
4227 N0VT.getScalarType().getSizeInBits());
4228 EVT MatchingVectorType =
4229 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4230 N0VT.getVectorNumElements());
4231 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004232 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004233 N0.getOperand(1),
4234 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4235 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Dan Gohman3ce89f42010-04-30 17:19:19 +00004236 }
Chris Lattner2b7a2712009-07-08 00:31:33 +00004237 }
Dan Gohman3ce89f42010-04-30 17:19:19 +00004238
Chris Lattner2b7a2712009-07-08 00:31:33 +00004239 // sext(setcc x, y, cc) -> (select_cc x, y, -1, 0, cc)
Dan Gohmana7bcef12010-04-24 01:17:30 +00004240 unsigned ElementWidth = VT.getScalarType().getSizeInBits();
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004241 SDValue NegOne =
Dan Gohmana7bcef12010-04-24 01:17:30 +00004242 DAG.getConstant(APInt::getAllOnesValue(ElementWidth), VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004243 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004244 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Dan Gohman5cbd37e2009-08-06 09:18:59 +00004245 NegOne, DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004246 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004247 if (SCC.getNode()) return SCC;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00004248 if (!LegalOperations ||
4249 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(VT)))
4250 return DAG.getNode(ISD::SELECT, N->getDebugLoc(), VT,
4251 DAG.getSetCC(N->getDebugLoc(),
4252 TLI.getSetCCResultType(VT),
4253 N0.getOperand(0), N0.getOperand(1),
4254 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4255 NegOne, DAG.getConstant(0, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004256 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004257
Dan Gohman8f0ad582008-04-28 16:58:24 +00004258 // fold (sext x) -> (zext x) if the sign bit is known zero.
Duncan Sands25cf2272008-11-24 14:53:14 +00004259 if ((!LegalOperations || TLI.isOperationLegal(ISD::ZERO_EXTEND, VT)) &&
Dan Gohman187db7b2008-04-28 18:47:17 +00004260 DAG.SignBitIsZero(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004261 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004262
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004263 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004264}
4265
Dan Gohman475871a2008-07-27 21:46:04 +00004266SDValue DAGCombiner::visitZERO_EXTEND(SDNode *N) {
4267 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004268 EVT VT = N->getValueType(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004269
Nate Begeman1d4d4142005-09-01 00:19:25 +00004270 // fold (zext c1) -> c1
Reid Spencer3ed469c2006-11-02 20:25:50 +00004271 if (isa<ConstantSDNode>(N0))
Bill Wendling6ce610f2009-01-30 22:23:15 +00004272 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004273 // fold (zext (zext x)) -> (zext x)
Chris Lattner310b5782006-05-06 23:06:26 +00004274 // fold (zext (aext x)) -> (zext x)
4275 if (N0.getOpcode() == ISD::ZERO_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND)
Bill Wendling6ce610f2009-01-30 22:23:15 +00004276 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT,
4277 N0.getOperand(0));
Chris Lattner6007b842006-09-21 06:00:20 +00004278
Chandler Carruthf103b3d2012-01-11 08:41:08 +00004279 // fold (zext (truncate x)) -> (zext x) or
4280 // (zext (truncate x)) -> (truncate x)
4281 // This is valid when the truncated bits of x are already zero.
4282 // FIXME: We should extend this to work for vectors too.
4283 if (N0.getOpcode() == ISD::TRUNCATE && !VT.isVector()) {
4284 SDValue Op = N0.getOperand(0);
4285 APInt TruncatedBits
4286 = APInt::getBitsSet(Op.getValueSizeInBits(),
4287 N0.getValueSizeInBits(),
4288 std::min(Op.getValueSizeInBits(),
4289 VT.getSizeInBits()));
4290 APInt KnownZero, KnownOne;
4291 DAG.ComputeMaskedBits(Op, TruncatedBits, KnownZero, KnownOne);
4292 if (TruncatedBits == KnownZero) {
4293 if (VT.bitsGT(Op.getValueType()))
4294 return DAG.getNode(ISD::ZERO_EXTEND, N->getDebugLoc(), VT, Op);
4295 if (VT.bitsLT(Op.getValueType()))
4296 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
4297
4298 return Op;
4299 }
4300 }
4301
Evan Chengc88138f2007-03-22 01:54:19 +00004302 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4303 // fold (zext (truncate (srl (load x), c))) -> (zext (small load (x+c/n)))
Dale Johannesen2041a0e2007-03-30 21:38:07 +00004304 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004305 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4306 if (NarrowLoad.getNode()) {
Dale Johannesen61734eb2010-05-25 17:50:03 +00004307 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4308 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004309 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen61734eb2010-05-25 17:50:03 +00004310 // CombineTo deleted the truncate, if needed, but not what's under it.
4311 AddToWorkList(oye);
4312 }
Eli Friedmane545d382011-04-16 23:25:34 +00004313 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004314 }
Evan Chengc88138f2007-03-22 01:54:19 +00004315 }
4316
Chris Lattner6007b842006-09-21 06:00:20 +00004317 // fold (zext (truncate x)) -> (and x, mask)
4318 if (N0.getOpcode() == ISD::TRUNCATE &&
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004319 (!LegalOperations || TLI.isOperationLegal(ISD::AND, VT))) {
Dan Gohman394d6292010-11-03 01:47:46 +00004320
4321 // fold (zext (truncate (load x))) -> (zext (smaller load x))
4322 // fold (zext (truncate (srl (load x), c))) -> (zext (smaller load (x+c/n)))
4323 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4324 if (NarrowLoad.getNode()) {
4325 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4326 if (NarrowLoad.getNode() != N0.getNode()) {
4327 CombineTo(N0.getNode(), NarrowLoad);
4328 // CombineTo deleted the truncate, if needed, but not what's under it.
4329 AddToWorkList(oye);
4330 }
4331 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4332 }
4333
Dan Gohman475871a2008-07-27 21:46:04 +00004334 SDValue Op = N0.getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004335 if (Op.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004336 Op = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, Op);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004337 } else if (Op.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004338 Op = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Op);
Chris Lattner6007b842006-09-21 06:00:20 +00004339 }
Dan Gohman87862e72009-12-11 21:31:27 +00004340 return DAG.getZeroExtendInReg(Op, N->getDebugLoc(),
4341 N0.getValueType().getScalarType());
Chris Lattner6007b842006-09-21 06:00:20 +00004342 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004343
Dan Gohman97121ba2009-04-08 00:15:30 +00004344 // Fold (zext (and (trunc x), cst)) -> (and x, cst),
4345 // if either of the casts is not free.
Chris Lattner111c2282006-09-21 06:14:31 +00004346 if (N0.getOpcode() == ISD::AND &&
4347 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004348 N0.getOperand(1).getOpcode() == ISD::Constant &&
4349 (!TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4350 N0.getValueType()) ||
4351 !TLI.isZExtFree(N0.getValueType(), VT))) {
Dan Gohman475871a2008-07-27 21:46:04 +00004352 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004353 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004354 X = DAG.getNode(ISD::ANY_EXTEND, X.getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004355 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004356 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Chris Lattner111c2282006-09-21 06:14:31 +00004357 }
Dan Gohman220a8232008-03-03 23:51:38 +00004358 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004359 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling6ce610f2009-01-30 22:23:15 +00004360 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4361 X, DAG.getConstant(Mask, VT));
Chris Lattner111c2282006-09-21 06:14:31 +00004362 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004363
Evan Cheng110dec22005-12-14 02:19:23 +00004364 // fold (zext (load x)) -> (zext (truncate (zextload x)))
Nadav Rotemed9b9342011-02-20 12:37:50 +00004365 // None of the supported targets knows how to perform load and vector_zext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004366 // on vectors in one instruction. We only perform this transformation on
4367 // scalars.
Nadav Rotemed9b9342011-02-20 12:37:50 +00004368 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004369 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004370 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()))) {
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004371 bool DoXform = true;
4372 SmallVector<SDNode*, 4> SetCCs;
4373 if (!N0.hasOneUse())
4374 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ZERO_EXTEND, SetCCs, TLI);
4375 if (DoXform) {
4376 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004377 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004378 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004379 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00004380 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004381 LN0->isVolatile(), LN0->isNonTemporal(),
4382 LN0->getAlignment());
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004383 CombineTo(N, ExtLoad);
Bill Wendling6ce610f2009-01-30 22:23:15 +00004384 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4385 N0.getValueType(), ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004386 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Bill Wendling6ce610f2009-01-30 22:23:15 +00004387
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004388 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4389 ISD::ZERO_EXTEND);
Dan Gohman475871a2008-07-27 21:46:04 +00004390 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng3c3ddb32007-10-29 19:58:20 +00004391 }
Evan Cheng110dec22005-12-14 02:19:23 +00004392 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004393
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004394 // fold (zext (and/or/xor (load x), cst)) ->
4395 // (and/or/xor (zextload x), (zext cst))
4396 if ((N0.getOpcode() == ISD::AND || N0.getOpcode() == ISD::OR ||
4397 N0.getOpcode() == ISD::XOR) &&
4398 isa<LoadSDNode>(N0.getOperand(0)) &&
4399 N0.getOperand(1).getOpcode() == ISD::Constant &&
4400 TLI.isLoadExtLegal(ISD::ZEXTLOAD, N0.getValueType()) &&
4401 (!LegalOperations && TLI.isOperationLegal(N0.getOpcode(), VT))) {
4402 LoadSDNode *LN0 = cast<LoadSDNode>(N0.getOperand(0));
4403 if (LN0->getExtensionType() != ISD::SEXTLOAD) {
4404 bool DoXform = true;
4405 SmallVector<SDNode*, 4> SetCCs;
4406 if (!N0.hasOneUse())
4407 DoXform = ExtendUsesToFormExtLoad(N, N0.getOperand(0), ISD::ZERO_EXTEND,
4408 SetCCs, TLI);
4409 if (DoXform) {
4410 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, LN0->getDebugLoc(), VT,
4411 LN0->getChain(), LN0->getBasePtr(),
4412 LN0->getPointerInfo(),
4413 LN0->getMemoryVT(),
4414 LN0->isVolatile(),
4415 LN0->isNonTemporal(),
4416 LN0->getAlignment());
4417 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
4418 Mask = Mask.zext(VT.getSizeInBits());
4419 SDValue And = DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
4420 ExtLoad, DAG.getConstant(Mask, VT));
4421 SDValue Trunc = DAG.getNode(ISD::TRUNCATE,
4422 N0.getOperand(0).getDebugLoc(),
4423 N0.getOperand(0).getValueType(), ExtLoad);
4424 CombineTo(N, And);
4425 CombineTo(N0.getOperand(0).getNode(), Trunc, ExtLoad.getValue(1));
4426 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4427 ISD::ZERO_EXTEND);
4428 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4429 }
4430 }
4431 }
4432
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004433 // fold (zext (zextload x)) -> (zext (truncate (zextload x)))
4434 // fold (zext ( extload x)) -> (zext (truncate (zextload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00004435 if ((ISD::isZEXTLoad(N0.getNode()) || ISD::isEXTLoad(N0.getNode())) &&
4436 ISD::isUNINDEXEDLoad(N0.getNode()) && N0.hasOneUse()) {
Evan Cheng466685d2006-10-09 20:57:25 +00004437 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004438 EVT MemVT = LN0->getMemoryVT();
Duncan Sands25cf2272008-11-24 14:53:14 +00004439 if ((!LegalOperations && !LN0->isVolatile()) ||
Dan Gohman8a55ce42009-09-23 21:02:20 +00004440 TLI.isLoadExtLegal(ISD::ZEXTLOAD, MemVT)) {
Stuart Hastingsa9011292011-02-16 16:23:55 +00004441 SDValue ExtLoad = DAG.getExtLoad(ISD::ZEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling6ce610f2009-01-30 22:23:15 +00004442 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004443 LN0->getBasePtr(), LN0->getPointerInfo(),
4444 MemVT,
David Greene1e559442010-02-15 17:00:31 +00004445 LN0->isVolatile(), LN0->isNonTemporal(),
4446 LN0->getAlignment());
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004447 CombineTo(N, ExtLoad);
Gabor Greif12632d22008-08-30 19:29:20 +00004448 CombineTo(N0.getNode(),
Bill Wendling6ce610f2009-01-30 22:23:15 +00004449 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(), N0.getValueType(),
4450 ExtLoad),
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004451 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004452 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Duncan Sandsd4b9c172008-06-13 19:07:40 +00004453 }
Chris Lattnerad25d4e2005-12-14 19:05:06 +00004454 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004455
Chris Lattner20a35c32007-04-11 05:32:27 +00004456 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004457 if (!LegalOperations && VT.isVector()) {
4458 // zext(setcc) -> (and (vsetcc), (1, 1, ...) for vectors.
4459 // Only do this before legalize for now.
4460 EVT N0VT = N0.getOperand(0).getValueType();
4461 EVT EltVT = VT.getVectorElementType();
4462 SmallVector<SDValue,8> OneOps(VT.getVectorNumElements(),
4463 DAG.getConstant(1, EltVT));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004464 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Evan Cheng0a942db2010-05-19 01:08:17 +00004465 // We know that the # elements of the results is the same as the
4466 // # elements of the compare (and the # elements of the compare result
4467 // for that matter). Check to see that they are the same size. If so,
4468 // we know that the element size of the sext'd result matches the
4469 // element size of the compare operands.
4470 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
Duncan Sands28b77e92011-09-06 19:07:46 +00004471 DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Evan Cheng0a942db2010-05-19 01:08:17 +00004472 N0.getOperand(1),
4473 cast<CondCodeSDNode>(N0.getOperand(2))->get()),
4474 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4475 &OneOps[0], OneOps.size()));
Dan Gohman71dc7c92011-05-17 22:20:36 +00004476
4477 // If the desired elements are smaller or larger than the source
4478 // elements we can use a matching integer vector type and then
4479 // truncate/sign extend
4480 EVT MatchingElementType =
4481 EVT::getIntegerVT(*DAG.getContext(),
4482 N0VT.getScalarType().getSizeInBits());
4483 EVT MatchingVectorType =
4484 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4485 N0VT.getVectorNumElements());
4486 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004487 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Dan Gohman71dc7c92011-05-17 22:20:36 +00004488 N0.getOperand(1),
4489 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4490 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4491 DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT),
4492 DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(), VT,
4493 &OneOps[0], OneOps.size()));
Evan Cheng0a942db2010-05-19 01:08:17 +00004494 }
4495
4496 // zext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004497 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004498 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner20a35c32007-04-11 05:32:27 +00004499 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004500 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004501 if (SCC.getNode()) return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004502 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004503
Evan Cheng9818c042009-12-15 03:00:32 +00004504 // (zext (shl (zext x), cst)) -> (shl (zext x), cst)
Evan Cheng99b653c2009-12-15 00:41:36 +00004505 if ((N0.getOpcode() == ISD::SHL || N0.getOpcode() == ISD::SRL) &&
Evan Cheng9818c042009-12-15 03:00:32 +00004506 isa<ConstantSDNode>(N0.getOperand(1)) &&
Evan Cheng99b653c2009-12-15 00:41:36 +00004507 N0.getOperand(0).getOpcode() == ISD::ZERO_EXTEND &&
4508 N0.hasOneUse()) {
Chris Lattnere0751182011-02-13 19:09:16 +00004509 SDValue ShAmt = N0.getOperand(1);
4510 unsigned ShAmtVal = cast<ConstantSDNode>(ShAmt)->getZExtValue();
Evan Cheng9818c042009-12-15 03:00:32 +00004511 if (N0.getOpcode() == ISD::SHL) {
Chris Lattnere0751182011-02-13 19:09:16 +00004512 SDValue InnerZExt = N0.getOperand(0);
Evan Cheng9818c042009-12-15 03:00:32 +00004513 // If the original shl may be shifting out bits, do not perform this
4514 // transformation.
Chris Lattnere0751182011-02-13 19:09:16 +00004515 unsigned KnownZeroBits = InnerZExt.getValueType().getSizeInBits() -
4516 InnerZExt.getOperand(0).getValueType().getSizeInBits();
4517 if (ShAmtVal > KnownZeroBits)
Evan Cheng9818c042009-12-15 03:00:32 +00004518 return SDValue();
4519 }
Chris Lattnere0751182011-02-13 19:09:16 +00004520
4521 DebugLoc DL = N->getDebugLoc();
Owen Anderson95771af2011-02-25 21:41:48 +00004522
4523 // Ensure that the shift amount is wide enough for the shifted value.
Chris Lattnere0751182011-02-13 19:09:16 +00004524 if (VT.getSizeInBits() >= 256)
4525 ShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, ShAmt);
Owen Anderson95771af2011-02-25 21:41:48 +00004526
Chris Lattnere0751182011-02-13 19:09:16 +00004527 return DAG.getNode(N0.getOpcode(), DL, VT,
4528 DAG.getNode(ISD::ZERO_EXTEND, DL, VT, N0.getOperand(0)),
4529 ShAmt);
Evan Cheng99b653c2009-12-15 00:41:36 +00004530 }
4531
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004532 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004533}
4534
Dan Gohman475871a2008-07-27 21:46:04 +00004535SDValue DAGCombiner::visitANY_EXTEND(SDNode *N) {
4536 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004537 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004538
Chris Lattner5ffc0662006-05-05 05:58:59 +00004539 // fold (aext c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00004540 if (isa<ConstantSDNode>(N0))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00004541 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner5ffc0662006-05-05 05:58:59 +00004542 // fold (aext (aext x)) -> (aext x)
4543 // fold (aext (zext x)) -> (zext x)
4544 // fold (aext (sext x)) -> (sext x)
4545 if (N0.getOpcode() == ISD::ANY_EXTEND ||
4546 N0.getOpcode() == ISD::ZERO_EXTEND ||
4547 N0.getOpcode() == ISD::SIGN_EXTEND)
Bill Wendling683c9572009-01-30 22:27:33 +00004548 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004549
Evan Chengc88138f2007-03-22 01:54:19 +00004550 // fold (aext (truncate (load x))) -> (aext (smaller load x))
4551 // fold (aext (truncate (srl (load x), c))) -> (aext (small load (x+c/n)))
4552 if (N0.getOpcode() == ISD::TRUNCATE) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004553 SDValue NarrowLoad = ReduceLoadWidth(N0.getNode());
4554 if (NarrowLoad.getNode()) {
Dale Johannesen86234c32010-05-25 18:47:23 +00004555 SDNode* oye = N0.getNode()->getOperand(0).getNode();
4556 if (NarrowLoad.getNode() != N0.getNode()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00004557 CombineTo(N0.getNode(), NarrowLoad);
Dale Johannesen86234c32010-05-25 18:47:23 +00004558 // CombineTo deleted the truncate, if needed, but not what's under it.
4559 AddToWorkList(oye);
4560 }
Eli Friedmane545d382011-04-16 23:25:34 +00004561 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng0b063de2007-03-23 02:16:52 +00004562 }
Evan Chengc88138f2007-03-22 01:54:19 +00004563 }
4564
Chris Lattner84750582006-09-20 06:29:17 +00004565 // fold (aext (truncate x))
4566 if (N0.getOpcode() == ISD::TRUNCATE) {
Dan Gohman475871a2008-07-27 21:46:04 +00004567 SDValue TruncOp = N0.getOperand(0);
Chris Lattner84750582006-09-20 06:29:17 +00004568 if (TruncOp.getValueType() == VT)
4569 return TruncOp; // x iff x size == zext size.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004570 if (TruncOp.getValueType().bitsGT(VT))
Bill Wendling683c9572009-01-30 22:27:33 +00004571 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, TruncOp);
4572 return DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, TruncOp);
Chris Lattner84750582006-09-20 06:29:17 +00004573 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004574
Dan Gohman97121ba2009-04-08 00:15:30 +00004575 // Fold (aext (and (trunc x), cst)) -> (and x, cst)
4576 // if the trunc is not free.
Chris Lattner0e4b9222006-09-21 06:40:43 +00004577 if (N0.getOpcode() == ISD::AND &&
4578 N0.getOperand(0).getOpcode() == ISD::TRUNCATE &&
Dan Gohman97121ba2009-04-08 00:15:30 +00004579 N0.getOperand(1).getOpcode() == ISD::Constant &&
4580 !TLI.isTruncateFree(N0.getOperand(0).getOperand(0).getValueType(),
4581 N0.getValueType())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004582 SDValue X = N0.getOperand(0).getOperand(0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004583 if (X.getValueType().bitsLT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004584 X = DAG.getNode(ISD::ANY_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands8e4eb092008-06-08 20:54:56 +00004585 } else if (X.getValueType().bitsGT(VT)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00004586 X = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, X);
Chris Lattner0e4b9222006-09-21 06:40:43 +00004587 }
Dan Gohman220a8232008-03-03 23:51:38 +00004588 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
Jay Foad40f8f622010-12-07 08:25:19 +00004589 Mask = Mask.zext(VT.getSizeInBits());
Bill Wendling683c9572009-01-30 22:27:33 +00004590 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
4591 X, DAG.getConstant(Mask, VT));
Chris Lattner0e4b9222006-09-21 06:40:43 +00004592 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004593
Chris Lattner5ffc0662006-05-05 05:58:59 +00004594 // fold (aext (load x)) -> (aext (truncate (extload x)))
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004595 // None of the supported targets knows how to perform load and any_ext
Nadav Rotemfcd96192011-02-27 07:40:43 +00004596 // on vectors in one instruction. We only perform this transformation on
4597 // scalars.
Nadav Rotem8c20ec52011-02-24 21:01:34 +00004598 if (ISD::isNON_EXTLoad(N0.getNode()) && !VT.isVector() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004599 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004600 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Dan Gohman57fc82d2009-04-09 03:51:29 +00004601 bool DoXform = true;
4602 SmallVector<SDNode*, 4> SetCCs;
4603 if (!N0.hasOneUse())
4604 DoXform = ExtendUsesToFormExtLoad(N, N0, ISD::ANY_EXTEND, SetCCs, TLI);
4605 if (DoXform) {
4606 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004607 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Dan Gohman57fc82d2009-04-09 03:51:29 +00004608 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004609 LN0->getBasePtr(), LN0->getPointerInfo(),
Dan Gohman57fc82d2009-04-09 03:51:29 +00004610 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00004611 LN0->isVolatile(), LN0->isNonTemporal(),
4612 LN0->getAlignment());
Dan Gohman57fc82d2009-04-09 03:51:29 +00004613 CombineTo(N, ExtLoad);
4614 SDValue Trunc = DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4615 N0.getValueType(), ExtLoad);
4616 CombineTo(N0.getNode(), Trunc, ExtLoad.getValue(1));
Nick Lewyckyc06b5bf2011-06-16 01:15:49 +00004617 ExtendSetCCUses(SetCCs, Trunc, ExtLoad, N->getDebugLoc(),
4618 ISD::ANY_EXTEND);
Dan Gohman57fc82d2009-04-09 03:51:29 +00004619 return SDValue(N, 0); // Return N so it doesn't get rechecked!
4620 }
Chris Lattner5ffc0662006-05-05 05:58:59 +00004621 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004622
Chris Lattner5ffc0662006-05-05 05:58:59 +00004623 // fold (aext (zextload x)) -> (aext (truncate (zextload x)))
4624 // fold (aext (sextload x)) -> (aext (truncate (sextload x)))
4625 // fold (aext ( extload x)) -> (aext (truncate (extload x)))
Evan Cheng83060c52007-03-07 08:07:03 +00004626 if (N0.getOpcode() == ISD::LOAD &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004627 !ISD::isNON_EXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng466685d2006-10-09 20:57:25 +00004628 N0.hasOneUse()) {
4629 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman8a55ce42009-09-23 21:02:20 +00004630 EVT MemVT = LN0->getMemoryVT();
Stuart Hastingsa9011292011-02-16 16:23:55 +00004631 SDValue ExtLoad = DAG.getExtLoad(LN0->getExtensionType(), N->getDebugLoc(),
4632 VT, LN0->getChain(), LN0->getBasePtr(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004633 LN0->getPointerInfo(), MemVT,
David Greene1e559442010-02-15 17:00:31 +00004634 LN0->isVolatile(), LN0->isNonTemporal(),
4635 LN0->getAlignment());
Chris Lattner5ffc0662006-05-05 05:58:59 +00004636 CombineTo(N, ExtLoad);
Evan Cheng45299662008-08-29 23:20:46 +00004637 CombineTo(N0.getNode(),
Bill Wendling683c9572009-01-30 22:27:33 +00004638 DAG.getNode(ISD::TRUNCATE, N0.getDebugLoc(),
4639 N0.getValueType(), ExtLoad),
Chris Lattner5ffc0662006-05-05 05:58:59 +00004640 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004641 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattner5ffc0662006-05-05 05:58:59 +00004642 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004643
Chris Lattner20a35c32007-04-11 05:32:27 +00004644 if (N0.getOpcode() == ISD::SETCC) {
Evan Cheng0a942db2010-05-19 01:08:17 +00004645 // aext(setcc) -> sext_in_reg(vsetcc) for vectors.
4646 // Only do this before legalize for now.
4647 if (VT.isVector() && !LegalOperations) {
4648 EVT N0VT = N0.getOperand(0).getValueType();
4649 // We know that the # elements of the results is the same as the
4650 // # elements of the compare (and the # elements of the compare result
4651 // for that matter). Check to see that they are the same size. If so,
4652 // we know that the element size of the sext'd result matches the
4653 // element size of the compare operands.
4654 if (VT.getSizeInBits() == N0VT.getSizeInBits())
Duncan Sands28b77e92011-09-06 19:07:46 +00004655 return DAG.getSetCC(N->getDebugLoc(), VT, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004656 N0.getOperand(1),
4657 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Evan Cheng0a942db2010-05-19 01:08:17 +00004658 // If the desired elements are smaller or larger than the source
4659 // elements we can use a matching integer vector type and then
4660 // truncate/sign extend
4661 else {
Duncan Sands34727662010-07-12 08:16:59 +00004662 EVT MatchingElementType =
4663 EVT::getIntegerVT(*DAG.getContext(),
4664 N0VT.getScalarType().getSizeInBits());
4665 EVT MatchingVectorType =
4666 EVT::getVectorVT(*DAG.getContext(), MatchingElementType,
4667 N0VT.getVectorNumElements());
4668 SDValue VsetCC =
Duncan Sands28b77e92011-09-06 19:07:46 +00004669 DAG.getSetCC(N->getDebugLoc(), MatchingVectorType, N0.getOperand(0),
Duncan Sands34727662010-07-12 08:16:59 +00004670 N0.getOperand(1),
4671 cast<CondCodeSDNode>(N0.getOperand(2))->get());
4672 return DAG.getSExtOrTrunc(VsetCC, N->getDebugLoc(), VT);
Evan Cheng0a942db2010-05-19 01:08:17 +00004673 }
4674 }
4675
4676 // aext(setcc x,y,cc) -> select_cc x, y, 1, 0, cc
Scott Michelfdc40a02009-02-17 22:15:04 +00004677 SDValue SCC =
Bill Wendling836ca7d2009-01-30 23:59:18 +00004678 SimplifySelectCC(N->getDebugLoc(), N0.getOperand(0), N0.getOperand(1),
Chris Lattner1eba01e2007-04-11 06:50:51 +00004679 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Chris Lattnerc24bbad2007-04-11 16:51:53 +00004680 cast<CondCodeSDNode>(N0.getOperand(2))->get(), true);
Gabor Greifba36cb52008-08-28 21:40:38 +00004681 if (SCC.getNode())
Chris Lattnerc56a81d2007-04-11 06:43:25 +00004682 return SCC;
Chris Lattner20a35c32007-04-11 05:32:27 +00004683 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004684
Evan Chengb3a3d5e2010-04-28 07:10:39 +00004685 return SDValue();
Chris Lattner5ffc0662006-05-05 05:58:59 +00004686}
4687
Chris Lattner2b4c2792007-10-13 06:35:54 +00004688/// GetDemandedBits - See if the specified operand can be simplified with the
4689/// knowledge that only the bits specified by Mask are used. If so, return the
Dan Gohman475871a2008-07-27 21:46:04 +00004690/// simpler operand, otherwise return a null SDValue.
4691SDValue DAGCombiner::GetDemandedBits(SDValue V, const APInt &Mask) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00004692 switch (V.getOpcode()) {
4693 default: break;
Lang Hames5207bf22011-11-08 18:56:23 +00004694 case ISD::Constant: {
4695 const ConstantSDNode *CV = cast<ConstantSDNode>(V.getNode());
4696 assert(CV != 0 && "Const value should be ConstSDNode.");
4697 const APInt &CVal = CV->getAPIntValue();
4698 APInt NewVal = CVal & Mask;
4699 if (NewVal != CVal) {
4700 return DAG.getConstant(NewVal, V.getValueType());
4701 }
4702 break;
4703 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004704 case ISD::OR:
4705 case ISD::XOR:
4706 // If the LHS or RHS don't contribute bits to the or, drop them.
4707 if (DAG.MaskedValueIsZero(V.getOperand(0), Mask))
4708 return V.getOperand(1);
4709 if (DAG.MaskedValueIsZero(V.getOperand(1), Mask))
4710 return V.getOperand(0);
4711 break;
Chris Lattnere33544c2007-10-13 06:58:48 +00004712 case ISD::SRL:
4713 // Only look at single-use SRLs.
Gabor Greifba36cb52008-08-28 21:40:38 +00004714 if (!V.getNode()->hasOneUse())
Chris Lattnere33544c2007-10-13 06:58:48 +00004715 break;
4716 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
4717 // See if we can recursively simplify the LHS.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004718 unsigned Amt = RHSC->getZExtValue();
Bill Wendling8509c902009-01-30 22:33:24 +00004719
Dan Gohmancc91d632009-01-03 19:22:06 +00004720 // Watch out for shift count overflow though.
4721 if (Amt >= Mask.getBitWidth()) break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00004722 APInt NewMask = Mask << Amt;
Dan Gohman475871a2008-07-27 21:46:04 +00004723 SDValue SimplifyLHS = GetDemandedBits(V.getOperand(0), NewMask);
Bill Wendling8509c902009-01-30 22:33:24 +00004724 if (SimplifyLHS.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00004725 return DAG.getNode(ISD::SRL, V.getDebugLoc(), V.getValueType(),
Chris Lattnere33544c2007-10-13 06:58:48 +00004726 SimplifyLHS, V.getOperand(1));
Chris Lattnere33544c2007-10-13 06:58:48 +00004727 }
Chris Lattner2b4c2792007-10-13 06:35:54 +00004728 }
Dan Gohman475871a2008-07-27 21:46:04 +00004729 return SDValue();
Chris Lattner2b4c2792007-10-13 06:35:54 +00004730}
4731
Evan Chengc88138f2007-03-22 01:54:19 +00004732/// ReduceLoadWidth - If the result of a wider load is shifted to right of N
4733/// bits and then truncated to a narrower type and where N is a multiple
4734/// of number of bits of the narrower type, transform it to a narrower load
4735/// from address + N / num of bits of new type. If the result is to be
4736/// extended, also fold the extension to form a extending load.
Dan Gohman475871a2008-07-27 21:46:04 +00004737SDValue DAGCombiner::ReduceLoadWidth(SDNode *N) {
Evan Chengc88138f2007-03-22 01:54:19 +00004738 unsigned Opc = N->getOpcode();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004739
Evan Chengc88138f2007-03-22 01:54:19 +00004740 ISD::LoadExtType ExtType = ISD::NON_EXTLOAD;
Dan Gohman475871a2008-07-27 21:46:04 +00004741 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004742 EVT VT = N->getValueType(0);
4743 EVT ExtVT = VT;
Evan Chengc88138f2007-03-22 01:54:19 +00004744
Dan Gohman7f8613e2008-08-14 20:04:46 +00004745 // This transformation isn't valid for vector loads.
4746 if (VT.isVector())
4747 return SDValue();
4748
Dan Gohmand1996362010-01-09 02:13:55 +00004749 // Special case: SIGN_EXTEND_INREG is basically truncating to ExtVT then
Evan Chenge177e302007-03-23 22:13:36 +00004750 // extended to VT.
Evan Chengc88138f2007-03-22 01:54:19 +00004751 if (Opc == ISD::SIGN_EXTEND_INREG) {
4752 ExtType = ISD::SEXTLOAD;
Owen Andersone50ed302009-08-10 22:56:29 +00004753 ExtVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004754 } else if (Opc == ISD::SRL) {
Chris Lattner90b03642010-12-21 18:05:22 +00004755 // Another special-case: SRL is basically zero-extending a narrower value.
Dan Gohman4e39e9d2010-06-24 14:30:44 +00004756 ExtType = ISD::ZEXTLOAD;
4757 N0 = SDValue(N, 0);
4758 ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1));
4759 if (!N01) return SDValue();
4760 ExtVT = EVT::getIntegerVT(*DAG.getContext(),
4761 VT.getSizeInBits() - N01->getZExtValue());
Evan Chengc88138f2007-03-22 01:54:19 +00004762 }
Richard Osborne4e3740e2011-01-31 17:41:44 +00004763 if (LegalOperations && !TLI.isLoadExtLegal(ExtType, ExtVT))
4764 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004765
Owen Andersone50ed302009-08-10 22:56:29 +00004766 unsigned EVTBits = ExtVT.getSizeInBits();
Owen Anderson95771af2011-02-25 21:41:48 +00004767
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004768 // Do not generate loads of non-round integer types since these can
4769 // be expensive (and would be wrong if the type is not byte sized).
4770 if (!ExtVT.isRound())
4771 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004772
Evan Chengc88138f2007-03-22 01:54:19 +00004773 unsigned ShAmt = 0;
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004774 if (N0.getOpcode() == ISD::SRL && N0.hasOneUse()) {
Evan Chengc88138f2007-03-22 01:54:19 +00004775 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004776 ShAmt = N01->getZExtValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004777 // Is the shift amount a multiple of size of VT?
4778 if ((ShAmt & (EVTBits-1)) == 0) {
4779 N0 = N0.getOperand(0);
Eli Friedmand68eea22009-08-19 08:46:10 +00004780 // Is the load width a multiple of size of VT?
4781 if ((N0.getValueType().getSizeInBits() & (EVTBits-1)) != 0)
Dan Gohman475871a2008-07-27 21:46:04 +00004782 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004783 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004784
Chris Lattnercbf68df2010-12-22 08:02:57 +00004785 // At this point, we must have a load or else we can't do the transform.
4786 if (!isa<LoadSDNode>(N0)) return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004787
Chris Lattner2831a192010-10-01 05:36:09 +00004788 // If the shift amount is larger than the input type then we're not
4789 // accessing any of the loaded bytes. If the load was a zextload/extload
4790 // then the result of the shift+trunc is zero/undef (handled elsewhere).
4791 // If the load was a sextload then the result is a splat of the sign bit
4792 // of the extended byte. This is not worth optimizing for.
Chris Lattnercbf68df2010-12-22 08:02:57 +00004793 if (ShAmt >= cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits())
Chris Lattner2831a192010-10-01 05:36:09 +00004794 return SDValue();
Evan Chengc88138f2007-03-22 01:54:19 +00004795 }
4796 }
4797
Dan Gohman394d6292010-11-03 01:47:46 +00004798 // If the load is shifted left (and the result isn't shifted back right),
4799 // we can fold the truncate through the shift.
4800 unsigned ShLeftAmt = 0;
4801 if (ShAmt == 0 && N0.getOpcode() == ISD::SHL && N0.hasOneUse() &&
Chris Lattner4c32bc22010-12-22 07:36:50 +00004802 ExtVT == VT && TLI.isNarrowingProfitable(N0.getValueType(), VT)) {
Dan Gohman394d6292010-11-03 01:47:46 +00004803 if (ConstantSDNode *N01 = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
4804 ShLeftAmt = N01->getZExtValue();
4805 N0 = N0.getOperand(0);
4806 }
4807 }
Owen Anderson95771af2011-02-25 21:41:48 +00004808
Chris Lattner4c32bc22010-12-22 07:36:50 +00004809 // If we haven't found a load, we can't narrow it. Don't transform one with
4810 // multiple uses, this would require adding a new load.
4811 if (!isa<LoadSDNode>(N0) || !N0.hasOneUse() ||
4812 // Don't change the width of a volatile load.
4813 cast<LoadSDNode>(N0)->isVolatile())
4814 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004815
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004816 // Verify that we are actually reducing a load width here.
4817 if (cast<LoadSDNode>(N0)->getMemoryVT().getSizeInBits() < EVTBits)
Chris Lattner4c32bc22010-12-22 07:36:50 +00004818 return SDValue();
Owen Anderson95771af2011-02-25 21:41:48 +00004819
Chris Lattner4c32bc22010-12-22 07:36:50 +00004820 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
4821 EVT PtrType = N0.getOperand(1).getValueType();
Bill Wendling8509c902009-01-30 22:33:24 +00004822
Chris Lattner4c32bc22010-12-22 07:36:50 +00004823 // For big endian targets, we need to adjust the offset to the pointer to
4824 // load the correct bytes.
4825 if (TLI.isBigEndian()) {
4826 unsigned LVTStoreBits = LN0->getMemoryVT().getStoreSizeInBits();
4827 unsigned EVTStoreBits = ExtVT.getStoreSizeInBits();
4828 ShAmt = LVTStoreBits - EVTStoreBits - ShAmt;
Evan Chengc88138f2007-03-22 01:54:19 +00004829 }
4830
Chris Lattner4c32bc22010-12-22 07:36:50 +00004831 uint64_t PtrOff = ShAmt / 8;
4832 unsigned NewAlign = MinAlign(LN0->getAlignment(), PtrOff);
4833 SDValue NewPtr = DAG.getNode(ISD::ADD, LN0->getDebugLoc(),
4834 PtrType, LN0->getBasePtr(),
4835 DAG.getConstant(PtrOff, PtrType));
4836 AddToWorkList(NewPtr.getNode());
4837
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004838 SDValue Load;
4839 if (ExtType == ISD::NON_EXTLOAD)
4840 Load = DAG.getLoad(VT, N0.getDebugLoc(), LN0->getChain(), NewPtr,
4841 LN0->getPointerInfo().getWithOffset(PtrOff),
Pete Cooperd752e0f2011-11-08 18:42:53 +00004842 LN0->isVolatile(), LN0->isNonTemporal(),
4843 LN0->isInvariant(), NewAlign);
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004844 else
Stuart Hastingsa9011292011-02-16 16:23:55 +00004845 Load = DAG.getExtLoad(ExtType, N0.getDebugLoc(), VT, LN0->getChain(),NewPtr,
Chris Lattner7a2a7fa2010-12-22 08:01:44 +00004846 LN0->getPointerInfo().getWithOffset(PtrOff),
4847 ExtVT, LN0->isVolatile(), LN0->isNonTemporal(),
4848 NewAlign);
Chris Lattner4c32bc22010-12-22 07:36:50 +00004849
4850 // Replace the old load's chain with the new load's chain.
4851 WorkListRemover DeadNodes(*this);
4852 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), Load.getValue(1),
4853 &DeadNodes);
4854
4855 // Shift the result left, if we've swallowed a left shift.
4856 SDValue Result = Load;
4857 if (ShLeftAmt != 0) {
Owen Anderson95771af2011-02-25 21:41:48 +00004858 EVT ShImmTy = getShiftAmountTy(Result.getValueType());
Chris Lattner4c32bc22010-12-22 07:36:50 +00004859 if (!isUIntN(ShImmTy.getSizeInBits(), ShLeftAmt))
4860 ShImmTy = VT;
4861 Result = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT,
4862 Result, DAG.getConstant(ShLeftAmt, ShImmTy));
4863 }
4864
4865 // Return the new loaded value.
4866 return Result;
Evan Chengc88138f2007-03-22 01:54:19 +00004867}
4868
Dan Gohman475871a2008-07-27 21:46:04 +00004869SDValue DAGCombiner::visitSIGN_EXTEND_INREG(SDNode *N) {
4870 SDValue N0 = N->getOperand(0);
4871 SDValue N1 = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00004872 EVT VT = N->getValueType(0);
4873 EVT EVT = cast<VTSDNode>(N1)->getVT();
Dan Gohman87862e72009-12-11 21:31:27 +00004874 unsigned VTBits = VT.getScalarType().getSizeInBits();
Dan Gohmand1996362010-01-09 02:13:55 +00004875 unsigned EVTBits = EVT.getScalarType().getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00004876
Nate Begeman1d4d4142005-09-01 00:19:25 +00004877 // fold (sext_in_reg c1) -> c1
Chris Lattnereaeda562006-05-08 20:59:41 +00004878 if (isa<ConstantSDNode>(N0) || N0.getOpcode() == ISD::UNDEF)
Bill Wendling8509c902009-01-30 22:33:24 +00004879 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00004880
Chris Lattner541a24f2006-05-06 22:43:44 +00004881 // If the input is already sign extended, just drop the extension.
Dan Gohman87862e72009-12-11 21:31:27 +00004882 if (DAG.ComputeNumSignBits(N0) >= VTBits-EVTBits+1)
Chris Lattneree4ea922006-05-06 09:30:03 +00004883 return N0;
Scott Michelfdc40a02009-02-17 22:15:04 +00004884
Nate Begeman646d7e22005-09-02 21:18:40 +00004885 // fold (sext_in_reg (sext_in_reg x, VT2), VT1) -> (sext_in_reg x, minVT) pt2
4886 if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
Duncan Sands8e4eb092008-06-08 20:54:56 +00004887 EVT.bitsLT(cast<VTSDNode>(N0.getOperand(1))->getVT())) {
Bill Wendling8509c902009-01-30 22:33:24 +00004888 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
4889 N0.getOperand(0), N1);
Nate Begeman646d7e22005-09-02 21:18:40 +00004890 }
Chris Lattner4b37e872006-05-08 21:18:59 +00004891
Dan Gohman75dcf082008-07-31 00:50:31 +00004892 // fold (sext_in_reg (sext x)) -> (sext x)
4893 // fold (sext_in_reg (aext x)) -> (sext x)
4894 // if x is small enough.
4895 if (N0.getOpcode() == ISD::SIGN_EXTEND || N0.getOpcode() == ISD::ANY_EXTEND) {
4896 SDValue N00 = N0.getOperand(0);
Evan Cheng003d7c42010-04-16 22:26:19 +00004897 if (N00.getValueType().getScalarType().getSizeInBits() <= EVTBits &&
4898 (!LegalOperations || TLI.isOperationLegal(ISD::SIGN_EXTEND, VT)))
Bill Wendling8509c902009-01-30 22:33:24 +00004899 return DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, N00, N1);
Dan Gohman75dcf082008-07-31 00:50:31 +00004900 }
4901
Chris Lattner95a5e052007-04-17 19:03:21 +00004902 // fold (sext_in_reg x) -> (zext_in_reg x) if the sign bit is known zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00004903 if (DAG.MaskedValueIsZero(N0, APInt::getBitsSet(VTBits, EVTBits-1, EVTBits)))
Bill Wendlingfc4b6772009-02-01 11:19:36 +00004904 return DAG.getZeroExtendInReg(N0, N->getDebugLoc(), EVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004905
Chris Lattner95a5e052007-04-17 19:03:21 +00004906 // fold operands of sext_in_reg based on knowledge that the top bits are not
4907 // demanded.
Dan Gohman475871a2008-07-27 21:46:04 +00004908 if (SimplifyDemandedBits(SDValue(N, 0)))
4909 return SDValue(N, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00004910
Evan Chengc88138f2007-03-22 01:54:19 +00004911 // fold (sext_in_reg (load x)) -> (smaller sextload x)
4912 // fold (sext_in_reg (srl (load x), c)) -> (smaller sextload (x+c/evtbits))
Dan Gohman475871a2008-07-27 21:46:04 +00004913 SDValue NarrowLoad = ReduceLoadWidth(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00004914 if (NarrowLoad.getNode())
Evan Chengc88138f2007-03-22 01:54:19 +00004915 return NarrowLoad;
4916
Bill Wendling8509c902009-01-30 22:33:24 +00004917 // fold (sext_in_reg (srl X, 24), i8) -> (sra X, 24)
4918 // fold (sext_in_reg (srl X, 23), i8) -> (sra X, 23) iff possible.
Chris Lattner4b37e872006-05-08 21:18:59 +00004919 // We already fold "(sext_in_reg (srl X, 25), i8) -> srl X, 25" above.
4920 if (N0.getOpcode() == ISD::SRL) {
4921 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(N0.getOperand(1)))
Dan Gohman87862e72009-12-11 21:31:27 +00004922 if (ShAmt->getZExtValue()+EVTBits <= VTBits) {
Chris Lattner4b37e872006-05-08 21:18:59 +00004923 // We can turn this into an SRA iff the input to the SRL is already sign
4924 // extended enough.
Dan Gohmanea859be2007-06-22 14:59:07 +00004925 unsigned InSignBits = DAG.ComputeNumSignBits(N0.getOperand(0));
Dan Gohman87862e72009-12-11 21:31:27 +00004926 if (VTBits-(ShAmt->getZExtValue()+EVTBits) < InSignBits)
Bill Wendling8509c902009-01-30 22:33:24 +00004927 return DAG.getNode(ISD::SRA, N->getDebugLoc(), VT,
4928 N0.getOperand(0), N0.getOperand(1));
Chris Lattner4b37e872006-05-08 21:18:59 +00004929 }
4930 }
Evan Chengc88138f2007-03-22 01:54:19 +00004931
Nate Begemanded49632005-10-13 03:11:28 +00004932 // fold (sext_inreg (extload x)) -> (sextload x)
Scott Michelfdc40a02009-02-17 22:15:04 +00004933 if (ISD::isEXTLoad(N0.getNode()) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004934 ISD::isUNINDEXEDLoad(N0.getNode()) &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004935 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004936 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004937 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00004938 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004939 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00004940 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004941 LN0->getBasePtr(), LN0->getPointerInfo(),
4942 EVT,
David Greene1e559442010-02-15 17:00:31 +00004943 LN0->isVolatile(), LN0->isNonTemporal(),
4944 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00004945 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004946 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004947 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00004948 }
4949 // fold (sext_inreg (zextload x)) -> (sextload x) iff load has one use
Gabor Greifba36cb52008-08-28 21:40:38 +00004950 if (ISD::isZEXTLoad(N0.getNode()) && ISD::isUNINDEXEDLoad(N0.getNode()) &&
Evan Cheng83060c52007-03-07 08:07:03 +00004951 N0.hasOneUse() &&
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004952 EVT == cast<LoadSDNode>(N0)->getMemoryVT() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00004953 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00004954 TLI.isLoadExtLegal(ISD::SEXTLOAD, EVT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00004955 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00004956 SDValue ExtLoad = DAG.getExtLoad(ISD::SEXTLOAD, N->getDebugLoc(), VT,
Bill Wendling8509c902009-01-30 22:33:24 +00004957 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00004958 LN0->getBasePtr(), LN0->getPointerInfo(),
4959 EVT,
David Greene1e559442010-02-15 17:00:31 +00004960 LN0->isVolatile(), LN0->isNonTemporal(),
4961 LN0->getAlignment());
Chris Lattnerd4771842005-12-14 19:25:30 +00004962 CombineTo(N, ExtLoad);
Gabor Greifba36cb52008-08-28 21:40:38 +00004963 CombineTo(N0.getNode(), ExtLoad, ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004964 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Nate Begemanded49632005-10-13 03:11:28 +00004965 }
Evan Cheng9568e5c2011-06-21 06:01:08 +00004966
4967 // Form (sext_inreg (bswap >> 16)) or (sext_inreg (rotl (bswap) 16))
4968 if (EVTBits <= 16 && N0.getOpcode() == ISD::OR) {
4969 SDValue BSwap = MatchBSwapHWordLow(N0.getNode(), N0.getOperand(0),
4970 N0.getOperand(1), false);
4971 if (BSwap.getNode() != 0)
4972 return DAG.getNode(ISD::SIGN_EXTEND_INREG, N->getDebugLoc(), VT,
4973 BSwap, N1);
4974 }
4975
Dan Gohman475871a2008-07-27 21:46:04 +00004976 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004977}
4978
Dan Gohman475871a2008-07-27 21:46:04 +00004979SDValue DAGCombiner::visitTRUNCATE(SDNode *N) {
4980 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00004981 EVT VT = N->getValueType(0);
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00004982 bool isLE = TLI.isLittleEndian();
Nate Begeman1d4d4142005-09-01 00:19:25 +00004983
4984 // noop truncate
4985 if (N0.getValueType() == N->getValueType(0))
Nate Begeman83e75ec2005-09-06 04:43:02 +00004986 return N0;
Nate Begeman1d4d4142005-09-01 00:19:25 +00004987 // fold (truncate c1) -> c1
Chris Lattner310b5782006-05-06 23:06:26 +00004988 if (isa<ConstantSDNode>(N0))
Bill Wendling67a67682009-01-30 22:44:24 +00004989 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00004990 // fold (truncate (truncate x)) -> (truncate x)
4991 if (N0.getOpcode() == ISD::TRUNCATE)
Bill Wendling67a67682009-01-30 22:44:24 +00004992 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00004993 // fold (truncate (ext x)) -> (ext x) or (truncate x) or x
Chris Lattner7f893c02010-04-07 18:13:33 +00004994 if (N0.getOpcode() == ISD::ZERO_EXTEND ||
4995 N0.getOpcode() == ISD::SIGN_EXTEND ||
Chris Lattnerb72773b2006-05-05 22:56:26 +00004996 N0.getOpcode() == ISD::ANY_EXTEND) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00004997 if (N0.getOperand(0).getValueType().bitsLT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00004998 // if the source is smaller than the dest, we still need an extend
Bill Wendling67a67682009-01-30 22:44:24 +00004999 return DAG.getNode(N0.getOpcode(), N->getDebugLoc(), VT,
5000 N0.getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005001 else if (N0.getOperand(0).getValueType().bitsGT(VT))
Nate Begeman1d4d4142005-09-01 00:19:25 +00005002 // if the source is larger than the dest, than we just need the truncate
Bill Wendling67a67682009-01-30 22:44:24 +00005003 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, N0.getOperand(0));
Nate Begeman1d4d4142005-09-01 00:19:25 +00005004 else
5005 // if the source and dest are the same type, we can drop both the extend
Evan Chengd40d03e2010-01-06 19:38:29 +00005006 // and the truncate.
Nate Begeman83e75ec2005-09-06 04:43:02 +00005007 return N0.getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005008 }
Evan Cheng007b69e2007-03-21 20:14:05 +00005009
Nadav Rotemcc870a82012-02-05 11:39:23 +00005010 // Fold extract-and-trunc into a narrow extract. For example:
5011 // i64 x = EXTRACT_VECTOR_ELT(v2i64 val, i32 1)
5012 // i32 y = TRUNCATE(i64 x)
5013 // -- becomes --
5014 // v16i8 b = BITCAST (v2i64 val)
5015 // i8 x = EXTRACT_VECTOR_ELT(v16i8 b, i32 8)
5016 //
5017 // Note: We only run this optimization after type legalization (which often
Nadav Rotem7e413e9c2012-02-03 13:18:25 +00005018 // creates this pattern) and before operation legalization after which
5019 // we need to be more careful about the vector instructions that we generate.
5020 if (N0.getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
5021 LegalTypes && !LegalOperations && N0->hasOneUse()) {
5022
5023 EVT VecTy = N0.getOperand(0).getValueType();
5024 EVT ExTy = N0.getValueType();
5025 EVT TrTy = N->getValueType(0);
5026
5027 unsigned NumElem = VecTy.getVectorNumElements();
5028 unsigned SizeRatio = ExTy.getSizeInBits()/TrTy.getSizeInBits();
5029
5030 EVT NVT = EVT::getVectorVT(*DAG.getContext(), TrTy, SizeRatio * NumElem);
5031 assert(NVT.getSizeInBits() == VecTy.getSizeInBits() && "Invalid Size");
5032
5033 SDValue EltNo = N0->getOperand(1);
5034 if (isa<ConstantSDNode>(EltNo) && isTypeLegal(NVT)) {
5035 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5036
5037 int Index = isLE ? (Elt*SizeRatio) : (Elt*SizeRatio + (SizeRatio-1));
5038
5039 SDValue V = DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
5040 NVT, N0.getOperand(0));
5041
5042 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
5043 N->getDebugLoc(), TrTy, V,
5044 DAG.getConstant(Index, MVT::i32));
5045 }
5046 }
5047
Chris Lattner2b4c2792007-10-13 06:35:54 +00005048 // See if we can simplify the input to this truncate through knowledge that
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005049 // only the low bits are being used.
5050 // For example "trunc (or (shl x, 8), y)" // -> trunc y
Nadav Rotemfcd96192011-02-27 07:40:43 +00005051 // Currently we only perform this optimization on scalars because vectors
Nadav Rotem8c20ec52011-02-24 21:01:34 +00005052 // may have different active low bits.
5053 if (!VT.isVector()) {
5054 SDValue Shorter =
5055 GetDemandedBits(N0, APInt::getLowBitsSet(N0.getValueSizeInBits(),
5056 VT.getSizeInBits()));
5057 if (Shorter.getNode())
5058 return DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, Shorter);
5059 }
Nate Begeman3df4d522005-10-12 20:40:40 +00005060 // fold (truncate (load x)) -> (smaller load x)
Evan Cheng007b69e2007-03-21 20:14:05 +00005061 // fold (truncate (srl (load x), c)) -> (smaller load (x+c/evtbits))
Dan Gohman4e39e9d2010-06-24 14:30:44 +00005062 if (!LegalTypes || TLI.isTypeDesirableForOp(N0.getOpcode(), VT)) {
5063 SDValue Reduced = ReduceLoadWidth(N);
5064 if (Reduced.getNode())
5065 return Reduced;
5066 }
5067
5068 // Simplify the operands using demanded-bits information.
5069 if (!VT.isVector() &&
5070 SimplifyDemandedBits(SDValue(N, 0)))
5071 return SDValue(N, 0);
5072
Evan Chenge5b51ac2010-04-17 06:13:15 +00005073 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005074}
5075
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005076static SDNode *getBuildPairElt(SDNode *N, unsigned i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005077 SDValue Elt = N->getOperand(i);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005078 if (Elt.getOpcode() != ISD::MERGE_VALUES)
Gabor Greifba36cb52008-08-28 21:40:38 +00005079 return Elt.getNode();
5080 return Elt.getOperand(Elt.getResNo()).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005081}
5082
5083/// CombineConsecutiveLoads - build_pair (load, load) -> load
Scott Michelfdc40a02009-02-17 22:15:04 +00005084/// if load locations are consecutive.
Owen Andersone50ed302009-08-10 22:56:29 +00005085SDValue DAGCombiner::CombineConsecutiveLoads(SDNode *N, EVT VT) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005086 assert(N->getOpcode() == ISD::BUILD_PAIR);
5087
Nate Begemanabc01992009-06-05 21:37:30 +00005088 LoadSDNode *LD1 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 0));
5089 LoadSDNode *LD2 = dyn_cast<LoadSDNode>(getBuildPairElt(N, 1));
Chris Lattnerfa459012010-09-21 16:08:50 +00005090 if (!LD1 || !LD2 || !ISD::isNON_EXTLoad(LD1) || !LD1->hasOneUse() ||
5091 LD1->getPointerInfo().getAddrSpace() !=
5092 LD2->getPointerInfo().getAddrSpace())
Dan Gohman475871a2008-07-27 21:46:04 +00005093 return SDValue();
Owen Andersone50ed302009-08-10 22:56:29 +00005094 EVT LD1VT = LD1->getValueType(0);
Bill Wendling67a67682009-01-30 22:44:24 +00005095
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005096 if (ISD::isNON_EXTLoad(LD2) &&
5097 LD2->hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005098 // If both are volatile this would reduce the number of volatile loads.
5099 // If one is volatile it might be ok, but play conservative and bail out.
Nate Begemanabc01992009-06-05 21:37:30 +00005100 !LD1->isVolatile() &&
5101 !LD2->isVolatile() &&
Evan Cheng64fa4a92009-12-09 01:36:00 +00005102 DAG.isConsecutiveLoad(LD2, LD1, LD1VT.getSizeInBits()/8, 1)) {
Nate Begemanabc01992009-06-05 21:37:30 +00005103 unsigned Align = LD1->getAlignment();
Dan Gohman6448d912008-09-04 15:39:15 +00005104 unsigned NewAlign = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005105 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Bill Wendling67a67682009-01-30 22:44:24 +00005106
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005107 if (NewAlign <= Align &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005108 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT)))
Nate Begemanabc01992009-06-05 21:37:30 +00005109 return DAG.getLoad(VT, N->getDebugLoc(), LD1->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005110 LD1->getBasePtr(), LD1->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005111 false, false, false, Align);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005112 }
Bill Wendling67a67682009-01-30 22:44:24 +00005113
Dan Gohman475871a2008-07-27 21:46:04 +00005114 return SDValue();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005115}
5116
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005117SDValue DAGCombiner::visitBITCAST(SDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00005118 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005119 EVT VT = N->getValueType(0);
Chris Lattner94683772005-12-23 05:30:37 +00005120
Dan Gohman7f321562007-06-25 16:23:39 +00005121 // If the input is a BUILD_VECTOR with all constant elements, fold this now.
5122 // Only do this before legalize, since afterward the target may be depending
5123 // on the bitconvert.
5124 // First check to see if this is all constant.
Duncan Sands25cf2272008-11-24 14:53:14 +00005125 if (!LegalTypes &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005126 N0.getOpcode() == ISD::BUILD_VECTOR && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005127 VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00005128 bool isSimple = true;
5129 for (unsigned i = 0, e = N0.getNumOperands(); i != e; ++i)
5130 if (N0.getOperand(i).getOpcode() != ISD::UNDEF &&
5131 N0.getOperand(i).getOpcode() != ISD::Constant &&
5132 N0.getOperand(i).getOpcode() != ISD::ConstantFP) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005133 isSimple = false;
Dan Gohman7f321562007-06-25 16:23:39 +00005134 break;
5135 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005136
Owen Andersone50ed302009-08-10 22:56:29 +00005137 EVT DestEltVT = N->getValueType(0).getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005138 assert(!DestEltVT.isVector() &&
Dan Gohman7f321562007-06-25 16:23:39 +00005139 "Element type of vector ValueType must not be vector!");
Bill Wendling67a67682009-01-30 22:44:24 +00005140 if (isSimple)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005141 return ConstantFoldBITCASTofBUILD_VECTOR(N0.getNode(), DestEltVT);
Dan Gohman7f321562007-06-25 16:23:39 +00005142 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005143
Dan Gohman3dd168d2008-09-05 01:58:21 +00005144 // If the input is a constant, let getNode fold it.
Chris Lattner94683772005-12-23 05:30:37 +00005145 if (isa<ConstantSDNode>(N0) || isa<ConstantFPSDNode>(N0)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005146 SDValue Res = DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, N0);
Dan Gohmana407ca12009-08-10 23:15:10 +00005147 if (Res.getNode() != N) {
5148 if (!LegalOperations ||
5149 TLI.isOperationLegal(Res.getNode()->getOpcode(), VT))
5150 return Res;
5151
5152 // Folding it resulted in an illegal node, and it's too late to
5153 // do that. Clean up the old node and forego the transformation.
5154 // Ideally this won't happen very often, because instcombine
5155 // and the earlier dagcombine runs (where illegal nodes are
5156 // permitted) should have folded most of them already.
5157 DAG.DeleteNode(Res.getNode());
5158 }
Chris Lattner94683772005-12-23 05:30:37 +00005159 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005160
Bill Wendling67a67682009-01-30 22:44:24 +00005161 // (conv (conv x, t1), t2) -> (conv x, t2)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005162 if (N0.getOpcode() == ISD::BITCAST)
5163 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005164 N0.getOperand(0));
Chris Lattner6258fb22006-04-02 02:53:43 +00005165
Chris Lattner57104102005-12-23 05:44:41 +00005166 // fold (conv (load x)) -> (load (conv*)x)
Evan Cheng513da432007-10-06 08:19:55 +00005167 // If the resultant load doesn't need a higher alignment than the original!
Gabor Greifba36cb52008-08-28 21:40:38 +00005168 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005169 // Do not change the width of a volatile load.
5170 !cast<LoadSDNode>(N0)->isVolatile() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005171 (!LegalOperations || TLI.isOperationLegal(ISD::LOAD, VT))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005172 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Dan Gohman6448d912008-09-04 15:39:15 +00005173 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00005174 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
Evan Cheng59d5b682007-05-07 21:27:48 +00005175 unsigned OrigAlign = LN0->getAlignment();
Bill Wendling67a67682009-01-30 22:44:24 +00005176
Evan Cheng59d5b682007-05-07 21:27:48 +00005177 if (Align <= OrigAlign) {
Bill Wendling67a67682009-01-30 22:44:24 +00005178 SDValue Load = DAG.getLoad(VT, N->getDebugLoc(), LN0->getChain(),
Chris Lattnerfa459012010-09-21 16:08:50 +00005179 LN0->getBasePtr(), LN0->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00005180 LN0->isVolatile(), LN0->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005181 LN0->isInvariant(), OrigAlign);
Evan Cheng59d5b682007-05-07 21:27:48 +00005182 AddToWorkList(N);
Gabor Greif12632d22008-08-30 19:29:20 +00005183 CombineTo(N0.getNode(),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005184 DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005185 N0.getValueType(), Load),
Evan Cheng59d5b682007-05-07 21:27:48 +00005186 Load.getValue(1));
5187 return Load;
5188 }
Chris Lattner57104102005-12-23 05:44:41 +00005189 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005190
Bill Wendling67a67682009-01-30 22:44:24 +00005191 // fold (bitconvert (fneg x)) -> (xor (bitconvert x), signbit)
5192 // fold (bitconvert (fabs x)) -> (and (bitconvert x), (not signbit))
Chris Lattner3bd39d42008-01-27 17:42:27 +00005193 // This often reduces constant pool loads.
5194 if ((N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FABS) &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005195 N0.getNode()->hasOneUse() && VT.isInteger() && !VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005196 SDValue NewConv = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005197 N0.getOperand(0));
Gabor Greifba36cb52008-08-28 21:40:38 +00005198 AddToWorkList(NewConv.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005199
Duncan Sands83ec4b62008-06-06 12:08:01 +00005200 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005201 if (N0.getOpcode() == ISD::FNEG)
Bill Wendling67a67682009-01-30 22:44:24 +00005202 return DAG.getNode(ISD::XOR, N->getDebugLoc(), VT,
5203 NewConv, DAG.getConstant(SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005204 assert(N0.getOpcode() == ISD::FABS);
Bill Wendling67a67682009-01-30 22:44:24 +00005205 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
5206 NewConv, DAG.getConstant(~SignBit, VT));
Chris Lattner3bd39d42008-01-27 17:42:27 +00005207 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005208
Bill Wendling67a67682009-01-30 22:44:24 +00005209 // fold (bitconvert (fcopysign cst, x)) ->
5210 // (or (and (bitconvert x), sign), (and cst, (not sign)))
5211 // Note that we don't handle (copysign x, cst) because this can always be
5212 // folded to an fneg or fabs.
Gabor Greifba36cb52008-08-28 21:40:38 +00005213 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse() &&
Chris Lattnerf32aac32008-01-27 23:32:17 +00005214 isa<ConstantFPSDNode>(N0.getOperand(0)) &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005215 VT.isInteger() && !VT.isVector()) {
5216 unsigned OrigXWidth = N0.getOperand(1).getValueType().getSizeInBits();
Owen Anderson23b9b192009-08-12 00:36:31 +00005217 EVT IntXVT = EVT::getIntegerVT(*DAG.getContext(), OrigXWidth);
Chris Lattner2392ae72010-04-15 04:48:01 +00005218 if (isTypeLegal(IntXVT)) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005219 SDValue X = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005220 IntXVT, N0.getOperand(1));
Duncan Sands25cf2272008-11-24 14:53:14 +00005221 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005222
Duncan Sands25cf2272008-11-24 14:53:14 +00005223 // If X has a different width than the result/lhs, sext it or truncate it.
5224 unsigned VTWidth = VT.getSizeInBits();
5225 if (OrigXWidth < VTWidth) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00005226 X = DAG.getNode(ISD::SIGN_EXTEND, N->getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005227 AddToWorkList(X.getNode());
5228 } else if (OrigXWidth > VTWidth) {
5229 // To get the sign bit in the right place, we have to shift it right
5230 // before truncating.
Bill Wendling9729c5a2009-01-31 03:12:48 +00005231 X = DAG.getNode(ISD::SRL, X.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005232 X.getValueType(), X,
Duncan Sands25cf2272008-11-24 14:53:14 +00005233 DAG.getConstant(OrigXWidth-VTWidth, X.getValueType()));
5234 AddToWorkList(X.getNode());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005235 X = DAG.getNode(ISD::TRUNCATE, X.getDebugLoc(), VT, X);
Duncan Sands25cf2272008-11-24 14:53:14 +00005236 AddToWorkList(X.getNode());
5237 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005238
Duncan Sands25cf2272008-11-24 14:53:14 +00005239 APInt SignBit = APInt::getSignBit(VT.getSizeInBits());
Bill Wendling9729c5a2009-01-31 03:12:48 +00005240 X = DAG.getNode(ISD::AND, X.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005241 X, DAG.getConstant(SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005242 AddToWorkList(X.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005243
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005244 SDValue Cst = DAG.getNode(ISD::BITCAST, N0.getDebugLoc(),
Bill Wendling67a67682009-01-30 22:44:24 +00005245 VT, N0.getOperand(0));
Bill Wendling9729c5a2009-01-31 03:12:48 +00005246 Cst = DAG.getNode(ISD::AND, Cst.getDebugLoc(), VT,
Bill Wendling67a67682009-01-30 22:44:24 +00005247 Cst, DAG.getConstant(~SignBit, VT));
Duncan Sands25cf2272008-11-24 14:53:14 +00005248 AddToWorkList(Cst.getNode());
Chris Lattner3bd39d42008-01-27 17:42:27 +00005249
Bill Wendling67a67682009-01-30 22:44:24 +00005250 return DAG.getNode(ISD::OR, N->getDebugLoc(), VT, X, Cst);
Duncan Sands25cf2272008-11-24 14:53:14 +00005251 }
Chris Lattner3bd39d42008-01-27 17:42:27 +00005252 }
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005253
Scott Michelfdc40a02009-02-17 22:15:04 +00005254 // bitconvert(build_pair(ld, ld)) -> ld iff load locations are consecutive.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005255 if (N0.getOpcode() == ISD::BUILD_PAIR) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005256 SDValue CombineLD = CombineConsecutiveLoads(N0.getNode(), VT);
5257 if (CombineLD.getNode())
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005258 return CombineLD;
5259 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005260
Dan Gohman475871a2008-07-27 21:46:04 +00005261 return SDValue();
Chris Lattner94683772005-12-23 05:30:37 +00005262}
5263
Dan Gohman475871a2008-07-27 21:46:04 +00005264SDValue DAGCombiner::visitBUILD_PAIR(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00005265 EVT VT = N->getValueType(0);
Evan Cheng9bfa03c2008-05-12 23:04:07 +00005266 return CombineConsecutiveLoads(N, VT);
5267}
5268
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005269/// ConstantFoldBITCASTofBUILD_VECTOR - We know that BV is a build_vector
Scott Michelfdc40a02009-02-17 22:15:04 +00005270/// node with Constant, ConstantFP or Undef operands. DstEltVT indicates the
Chris Lattner6258fb22006-04-02 02:53:43 +00005271/// destination element value type.
Dan Gohman475871a2008-07-27 21:46:04 +00005272SDValue DAGCombiner::
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005273ConstantFoldBITCASTofBUILD_VECTOR(SDNode *BV, EVT DstEltVT) {
Owen Andersone50ed302009-08-10 22:56:29 +00005274 EVT SrcEltVT = BV->getValueType(0).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005275
Chris Lattner6258fb22006-04-02 02:53:43 +00005276 // If this is already the right type, we're done.
Dan Gohman475871a2008-07-27 21:46:04 +00005277 if (SrcEltVT == DstEltVT) return SDValue(BV, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005278
Duncan Sands83ec4b62008-06-06 12:08:01 +00005279 unsigned SrcBitSize = SrcEltVT.getSizeInBits();
5280 unsigned DstBitSize = DstEltVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00005281
Chris Lattner6258fb22006-04-02 02:53:43 +00005282 // If this is a conversion of N elements of one type to N elements of another
5283 // type, convert each element. This handles FP<->INT cases.
5284 if (SrcBitSize == DstBitSize) {
Nate Begemane0efc212010-07-27 18:02:18 +00005285 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5286 BV->getValueType(0).getVectorNumElements());
5287
5288 // Due to the FP element handling below calling this routine recursively,
5289 // we can end up with a scalar-to-vector node here.
5290 if (BV->getOpcode() == ISD::SCALAR_TO_VECTOR)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005291 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5292 DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Nate Begemane0efc212010-07-27 18:02:18 +00005293 DstEltVT, BV->getOperand(0)));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005294
Dan Gohman475871a2008-07-27 21:46:04 +00005295 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005296 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Bob Wilsonb1303d02009-04-13 22:05:19 +00005297 SDValue Op = BV->getOperand(i);
5298 // If the vector element type is not legal, the BUILD_VECTOR operands
5299 // are promoted and implicitly truncated. Make that explicit here.
Bob Wilsonc8851652009-04-20 17:27:09 +00005300 if (Op.getValueType() != SrcEltVT)
5301 Op = DAG.getNode(ISD::TRUNCATE, BV->getDebugLoc(), SrcEltVT, Op);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005302 Ops.push_back(DAG.getNode(ISD::BITCAST, BV->getDebugLoc(),
Bob Wilsonb1303d02009-04-13 22:05:19 +00005303 DstEltVT, Op));
Gabor Greifba36cb52008-08-28 21:40:38 +00005304 AddToWorkList(Ops.back().getNode());
Chris Lattner3e104b12006-04-08 04:15:24 +00005305 }
Evan Chenga87008d2009-02-25 22:49:59 +00005306 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5307 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005308 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005309
Chris Lattner6258fb22006-04-02 02:53:43 +00005310 // Otherwise, we're growing or shrinking the elements. To avoid having to
5311 // handle annoying details of growing/shrinking FP values, we convert them to
5312 // int first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005313 if (SrcEltVT.isFloatingPoint()) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005314 // Convert the input float vector to a int vector where the elements are the
5315 // same sizes.
Owen Anderson825b72b2009-08-11 20:47:22 +00005316 assert((SrcEltVT == MVT::f32 || SrcEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005317 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), SrcEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005318 BV = ConstantFoldBITCASTofBUILD_VECTOR(BV, IntVT).getNode();
Chris Lattner6258fb22006-04-02 02:53:43 +00005319 SrcEltVT = IntVT;
5320 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005321
Chris Lattner6258fb22006-04-02 02:53:43 +00005322 // Now we know the input is an integer vector. If the output is a FP type,
5323 // convert to integer first, then to FP of the right size.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005324 if (DstEltVT.isFloatingPoint()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005325 assert((DstEltVT == MVT::f32 || DstEltVT == MVT::f64) && "Unknown FP VT!");
Owen Anderson23b9b192009-08-12 00:36:31 +00005326 EVT TmpVT = EVT::getIntegerVT(*DAG.getContext(), DstEltVT.getSizeInBits());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005327 SDNode *Tmp = ConstantFoldBITCASTofBUILD_VECTOR(BV, TmpVT).getNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005328
Chris Lattner6258fb22006-04-02 02:53:43 +00005329 // Next, convert to FP elements of the same size.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005330 return ConstantFoldBITCASTofBUILD_VECTOR(Tmp, DstEltVT);
Chris Lattner6258fb22006-04-02 02:53:43 +00005331 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005332
Chris Lattner6258fb22006-04-02 02:53:43 +00005333 // Okay, we know the src/dst types are both integers of differing types.
5334 // Handling growing first.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005335 assert(SrcEltVT.isInteger() && DstEltVT.isInteger());
Chris Lattner6258fb22006-04-02 02:53:43 +00005336 if (SrcBitSize < DstBitSize) {
5337 unsigned NumInputsPerOutput = DstBitSize/SrcBitSize;
Scott Michelfdc40a02009-02-17 22:15:04 +00005338
Dan Gohman475871a2008-07-27 21:46:04 +00005339 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00005340 for (unsigned i = 0, e = BV->getNumOperands(); i != e;
Chris Lattner6258fb22006-04-02 02:53:43 +00005341 i += NumInputsPerOutput) {
5342 bool isLE = TLI.isLittleEndian();
Dan Gohman220a8232008-03-03 23:51:38 +00005343 APInt NewBits = APInt(DstBitSize, 0);
Chris Lattner6258fb22006-04-02 02:53:43 +00005344 bool EltIsUndef = true;
5345 for (unsigned j = 0; j != NumInputsPerOutput; ++j) {
5346 // Shift the previously computed bits over.
5347 NewBits <<= SrcBitSize;
Dan Gohman475871a2008-07-27 21:46:04 +00005348 SDValue Op = BV->getOperand(i+ (isLE ? (NumInputsPerOutput-j-1) : j));
Chris Lattner6258fb22006-04-02 02:53:43 +00005349 if (Op.getOpcode() == ISD::UNDEF) continue;
5350 EltIsUndef = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005351
Jay Foad40f8f622010-12-07 08:25:19 +00005352 NewBits |= cast<ConstantSDNode>(Op)->getAPIntValue().
Dan Gohman58c25872010-04-12 02:24:01 +00005353 zextOrTrunc(SrcBitSize).zext(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005354 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005355
Chris Lattner6258fb22006-04-02 02:53:43 +00005356 if (EltIsUndef)
Dale Johannesene8d72302009-02-06 23:05:02 +00005357 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005358 else
5359 Ops.push_back(DAG.getConstant(NewBits, DstEltVT));
5360 }
5361
Owen Anderson23b9b192009-08-12 00:36:31 +00005362 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT, Ops.size());
Evan Chenga87008d2009-02-25 22:49:59 +00005363 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5364 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005365 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005366
Chris Lattner6258fb22006-04-02 02:53:43 +00005367 // Finally, this must be the case where we are shrinking elements: each input
5368 // turns into multiple outputs.
Evan Chengefec7512008-02-18 23:04:32 +00005369 bool isS2V = ISD::isScalarToVector(BV);
Chris Lattner6258fb22006-04-02 02:53:43 +00005370 unsigned NumOutputsPerInput = SrcBitSize/DstBitSize;
Owen Anderson23b9b192009-08-12 00:36:31 +00005371 EVT VT = EVT::getVectorVT(*DAG.getContext(), DstEltVT,
5372 NumOutputsPerInput*BV->getNumOperands());
Dan Gohman475871a2008-07-27 21:46:04 +00005373 SmallVector<SDValue, 8> Ops;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005374
Dan Gohman7f321562007-06-25 16:23:39 +00005375 for (unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
Chris Lattner6258fb22006-04-02 02:53:43 +00005376 if (BV->getOperand(i).getOpcode() == ISD::UNDEF) {
5377 for (unsigned j = 0; j != NumOutputsPerInput; ++j)
Dale Johannesene8d72302009-02-06 23:05:02 +00005378 Ops.push_back(DAG.getUNDEF(DstEltVT));
Chris Lattner6258fb22006-04-02 02:53:43 +00005379 continue;
5380 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005381
Jay Foad40f8f622010-12-07 08:25:19 +00005382 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))->
5383 getAPIntValue().zextOrTrunc(SrcBitSize);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005384
Chris Lattner6258fb22006-04-02 02:53:43 +00005385 for (unsigned j = 0; j != NumOutputsPerInput; ++j) {
Jay Foad40f8f622010-12-07 08:25:19 +00005386 APInt ThisVal = OpVal.trunc(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005387 Ops.push_back(DAG.getConstant(ThisVal, DstEltVT));
Jay Foad40f8f622010-12-07 08:25:19 +00005388 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
Evan Chengefec7512008-02-18 23:04:32 +00005389 // Simply turn this into a SCALAR_TO_VECTOR of the new type.
Bill Wendlingb0162f52009-01-30 22:53:48 +00005390 return DAG.getNode(ISD::SCALAR_TO_VECTOR, BV->getDebugLoc(), VT,
5391 Ops[0]);
Dan Gohman220a8232008-03-03 23:51:38 +00005392 OpVal = OpVal.lshr(DstBitSize);
Chris Lattner6258fb22006-04-02 02:53:43 +00005393 }
5394
5395 // For big endian targets, swap the order of the pieces of each element.
Duncan Sands0753fc12008-02-11 10:37:04 +00005396 if (TLI.isBigEndian())
Chris Lattner6258fb22006-04-02 02:53:43 +00005397 std::reverse(Ops.end()-NumOutputsPerInput, Ops.end());
5398 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005399
Evan Chenga87008d2009-02-25 22:49:59 +00005400 return DAG.getNode(ISD::BUILD_VECTOR, BV->getDebugLoc(), VT,
5401 &Ops[0], Ops.size());
Chris Lattner6258fb22006-04-02 02:53:43 +00005402}
5403
Dan Gohman475871a2008-07-27 21:46:04 +00005404SDValue DAGCombiner::visitFADD(SDNode *N) {
5405 SDValue N0 = N->getOperand(0);
5406 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005407 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5408 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005409 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005410
Dan Gohman7f321562007-06-25 16:23:39 +00005411 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005412 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005413 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005414 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005415 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005416
Bill Wendlingb0162f52009-01-30 22:53:48 +00005417 // fold (fadd c1, c2) -> (fadd c1, c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00005418 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005419 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005420 // canonicalize constant to RHS
5421 if (N0CFP && !N1CFP)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005422 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N1, N0);
5423 // fold (fadd A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005424 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5425 N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005426 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005427 // fold (fadd A, (fneg B)) -> (fsub A, B)
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005428 if (isNegatibleForFree(N1, LegalOperations, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005429 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005430 GetNegatedExpression(N1, DAG, LegalOperations));
Bill Wendlingb0162f52009-01-30 22:53:48 +00005431 // fold (fadd (fneg A), B) -> (fsub B, A)
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005432 if (isNegatibleForFree(N0, LegalOperations, &DAG.getTarget().Options) == 2)
Bill Wendlingb0162f52009-01-30 22:53:48 +00005433 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N1,
Duncan Sands25cf2272008-11-24 14:53:14 +00005434 GetNegatedExpression(N0, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005435
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005436 // If allowed, fold (fadd (fadd x, c1), c2) -> (fadd x, (fadd c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005437 if (DAG.getTarget().Options.UnsafeFPMath && N1CFP &&
5438 N0.getOpcode() == ISD::FADD && N0.getNode()->hasOneUse() &&
5439 isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005440 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0.getOperand(0),
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005441 DAG.getNode(ISD::FADD, N->getDebugLoc(), VT,
5442 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005443
Dan Gohman475871a2008-07-27 21:46:04 +00005444 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005445}
5446
Dan Gohman475871a2008-07-27 21:46:04 +00005447SDValue DAGCombiner::visitFSUB(SDNode *N) {
5448 SDValue N0 = N->getOperand(0);
5449 SDValue N1 = N->getOperand(1);
Nate Begemana0e221d2005-10-18 00:28:13 +00005450 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5451 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005452 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005453
Dan Gohman7f321562007-06-25 16:23:39 +00005454 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005455 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005456 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005457 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005458 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005459
Nate Begemana0e221d2005-10-18 00:28:13 +00005460 // fold (fsub c1, c2) -> c1-c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005461 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005462 return DAG.getNode(ISD::FSUB, N->getDebugLoc(), VT, N0, N1);
Bill Wendlingb0162f52009-01-30 22:53:48 +00005463 // fold (fsub A, 0) -> A
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005464 if (DAG.getTarget().Options.UnsafeFPMath &&
5465 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohmana90c8e62009-01-23 19:10:37 +00005466 return N0;
Bill Wendlingb0162f52009-01-30 22:53:48 +00005467 // fold (fsub 0, B) -> -B
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005468 if (DAG.getTarget().Options.UnsafeFPMath &&
5469 N0CFP && N0CFP->getValueAPF().isZero()) {
5470 if (isNegatibleForFree(N1, LegalOperations, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00005471 return GetNegatedExpression(N1, DAG, LegalOperations);
Dan Gohman760f86f2009-01-22 21:58:43 +00005472 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005473 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N1);
Dan Gohman23ff1822007-07-02 15:48:56 +00005474 }
Bill Wendlingb0162f52009-01-30 22:53:48 +00005475 // fold (fsub A, (fneg B)) -> (fadd A, B)
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005476 if (isNegatibleForFree(N1, LegalOperations, &DAG.getTarget().Options))
Bill Wendlingb0162f52009-01-30 22:53:48 +00005477 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0,
Duncan Sands25cf2272008-11-24 14:53:14 +00005478 GetNegatedExpression(N1, DAG, LegalOperations));
Scott Michelfdc40a02009-02-17 22:15:04 +00005479
Dan Gohman475871a2008-07-27 21:46:04 +00005480 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005481}
5482
Dan Gohman475871a2008-07-27 21:46:04 +00005483SDValue DAGCombiner::visitFMUL(SDNode *N) {
5484 SDValue N0 = N->getOperand(0);
5485 SDValue N1 = N->getOperand(1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005486 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5487 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005488 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00005489
Dan Gohman7f321562007-06-25 16:23:39 +00005490 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005491 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005492 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005493 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005494 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005495
Nate Begeman11af4ea2005-10-17 20:40:11 +00005496 // fold (fmul c1, c2) -> c1*c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005497 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005498 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0, N1);
Nate Begeman11af4ea2005-10-17 20:40:11 +00005499 // canonicalize constant to RHS
Nate Begemana0e221d2005-10-18 00:28:13 +00005500 if (N0CFP && !N1CFP)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005501 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N1, N0);
5502 // fold (fmul A, 0) -> 0
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005503 if (DAG.getTarget().Options.UnsafeFPMath &&
5504 N1CFP && N1CFP->getValueAPF().isZero())
Dan Gohman760f86f2009-01-22 21:58:43 +00005505 return N1;
Dan Gohman77b81fe2009-06-04 17:12:12 +00005506 // fold (fmul A, 0) -> 0, vector edition.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005507 if (DAG.getTarget().Options.UnsafeFPMath &&
5508 ISD::isBuildVectorAllZeros(N1.getNode()))
Dan Gohman77b81fe2009-06-04 17:12:12 +00005509 return N1;
Nate Begeman11af4ea2005-10-17 20:40:11 +00005510 // fold (fmul X, 2.0) -> (fadd X, X)
5511 if (N1CFP && N1CFP->isExactlyValue(+2.0))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005512 return DAG.getNode(ISD::FADD, N->getDebugLoc(), VT, N0, N0);
Dan Gohmaneb1fedc2009-08-10 16:50:32 +00005513 // fold (fmul X, -1.0) -> (fneg X)
Chris Lattner29446522007-05-14 22:04:50 +00005514 if (N1CFP && N1CFP->isExactlyValue(-1.0))
Dan Gohman760f86f2009-01-22 21:58:43 +00005515 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005516 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005517
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005518 // fold (fmul (fneg X), (fneg Y)) -> (fmul X, Y)
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005519 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations,
5520 &DAG.getTarget().Options)) {
5521 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations,
5522 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005523 // Both can be negated for free, check to see if at least one is cheaper
5524 // negated.
5525 if (LHSNeg == 2 || RHSNeg == 2)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005526 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005527 GetNegatedExpression(N0, DAG, LegalOperations),
5528 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005529 }
5530 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005531
Chris Lattnerddae4bd2007-01-08 23:04:05 +00005532 // If allowed, fold (fmul (fmul x, c1), c2) -> (fmul x, (fmul c1, c2))
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005533 if (DAG.getTarget().Options.UnsafeFPMath &&
5534 N1CFP && N0.getOpcode() == ISD::FMUL &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005535 N0.getNode()->hasOneUse() && isa<ConstantFPSDNode>(N0.getOperand(1)))
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005536 return DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT, N0.getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00005537 DAG.getNode(ISD::FMUL, N->getDebugLoc(), VT,
Dale Johannesende064702009-02-06 21:50:26 +00005538 N0.getOperand(1), N1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005539
Dan Gohman475871a2008-07-27 21:46:04 +00005540 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005541}
5542
Dan Gohman475871a2008-07-27 21:46:04 +00005543SDValue DAGCombiner::visitFDIV(SDNode *N) {
5544 SDValue N0 = N->getOperand(0);
5545 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005546 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5547 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005548 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00005549
Dan Gohman7f321562007-06-25 16:23:39 +00005550 // fold vector ops
Duncan Sands83ec4b62008-06-06 12:08:01 +00005551 if (VT.isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005552 SDValue FoldedVOp = SimplifyVBinOp(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00005553 if (FoldedVOp.getNode()) return FoldedVOp;
Dan Gohman05d92fe2007-07-13 20:03:40 +00005554 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005555
Nate Begemana148d982006-01-18 22:35:16 +00005556 // fold (fdiv c1, c2) -> c1/c2
Owen Anderson825b72b2009-08-11 20:47:22 +00005557 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005558 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005559
5560
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005561 // (fdiv (fneg X), (fneg Y)) -> (fdiv X, Y)
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005562 if (char LHSNeg = isNegatibleForFree(N0, LegalOperations,
5563 &DAG.getTarget().Options)) {
5564 if (char RHSNeg = isNegatibleForFree(N1, LegalOperations,
5565 &DAG.getTarget().Options)) {
Chris Lattner29446522007-05-14 22:04:50 +00005566 // Both can be negated for free, check to see if at least one is cheaper
5567 // negated.
5568 if (LHSNeg == 2 || RHSNeg == 2)
Scott Michelfdc40a02009-02-17 22:15:04 +00005569 return DAG.getNode(ISD::FDIV, N->getDebugLoc(), VT,
Duncan Sands25cf2272008-11-24 14:53:14 +00005570 GetNegatedExpression(N0, DAG, LegalOperations),
5571 GetNegatedExpression(N1, DAG, LegalOperations));
Chris Lattner29446522007-05-14 22:04:50 +00005572 }
5573 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005574
Dan Gohman475871a2008-07-27 21:46:04 +00005575 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005576}
5577
Dan Gohman475871a2008-07-27 21:46:04 +00005578SDValue DAGCombiner::visitFREM(SDNode *N) {
5579 SDValue N0 = N->getOperand(0);
5580 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005581 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5582 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005583 EVT VT = N->getValueType(0);
Chris Lattner01b3d732005-09-28 22:28:18 +00005584
Nate Begemana148d982006-01-18 22:35:16 +00005585 // fold (frem c1, c2) -> fmod(c1,c2)
Owen Anderson825b72b2009-08-11 20:47:22 +00005586 if (N0CFP && N1CFP && VT != MVT::ppcf128)
Bill Wendlinga03e74b2009-01-30 22:57:07 +00005587 return DAG.getNode(ISD::FREM, N->getDebugLoc(), VT, N0, N1);
Dan Gohman7f321562007-06-25 16:23:39 +00005588
Dan Gohman475871a2008-07-27 21:46:04 +00005589 return SDValue();
Chris Lattner01b3d732005-09-28 22:28:18 +00005590}
5591
Dan Gohman475871a2008-07-27 21:46:04 +00005592SDValue DAGCombiner::visitFCOPYSIGN(SDNode *N) {
5593 SDValue N0 = N->getOperand(0);
5594 SDValue N1 = N->getOperand(1);
Chris Lattner12d83032006-03-05 05:30:57 +00005595 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
5596 ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
Owen Andersone50ed302009-08-10 22:56:29 +00005597 EVT VT = N->getValueType(0);
Chris Lattner12d83032006-03-05 05:30:57 +00005598
Owen Anderson825b72b2009-08-11 20:47:22 +00005599 if (N0CFP && N1CFP && VT != MVT::ppcf128) // Constant fold
Bill Wendlingfc4b6772009-02-01 11:19:36 +00005600 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005601
Chris Lattner12d83032006-03-05 05:30:57 +00005602 if (N1CFP) {
Dale Johannesene6c17422007-08-26 01:18:27 +00005603 const APFloat& V = N1CFP->getValueAPF();
Chris Lattner12d83032006-03-05 05:30:57 +00005604 // copysign(x, c1) -> fabs(x) iff ispos(c1)
5605 // copysign(x, c1) -> fneg(fabs(x)) iff isneg(c1)
Dan Gohman760f86f2009-01-22 21:58:43 +00005606 if (!V.isNegative()) {
5607 if (!LegalOperations || TLI.isOperationLegal(ISD::FABS, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005608 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Dan Gohman760f86f2009-01-22 21:58:43 +00005609 } else {
5610 if (!LegalOperations || TLI.isOperationLegal(ISD::FNEG, VT))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005611 return DAG.getNode(ISD::FNEG, N->getDebugLoc(), VT,
Bill Wendling9729c5a2009-01-31 03:12:48 +00005612 DAG.getNode(ISD::FABS, N0.getDebugLoc(), VT, N0));
Dan Gohman760f86f2009-01-22 21:58:43 +00005613 }
Chris Lattner12d83032006-03-05 05:30:57 +00005614 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005615
Chris Lattner12d83032006-03-05 05:30:57 +00005616 // copysign(fabs(x), y) -> copysign(x, y)
5617 // copysign(fneg(x), y) -> copysign(x, y)
5618 // copysign(copysign(x,z), y) -> copysign(x, y)
5619 if (N0.getOpcode() == ISD::FABS || N0.getOpcode() == ISD::FNEG ||
5620 N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005621 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5622 N0.getOperand(0), N1);
Chris Lattner12d83032006-03-05 05:30:57 +00005623
5624 // copysign(x, abs(y)) -> abs(x)
5625 if (N1.getOpcode() == ISD::FABS)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005626 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005627
Chris Lattner12d83032006-03-05 05:30:57 +00005628 // copysign(x, copysign(y,z)) -> copysign(x, z)
5629 if (N1.getOpcode() == ISD::FCOPYSIGN)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005630 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5631 N0, N1.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005632
Chris Lattner12d83032006-03-05 05:30:57 +00005633 // copysign(x, fp_extend(y)) -> copysign(x, y)
5634 // copysign(x, fp_round(y)) -> copysign(x, y)
5635 if (N1.getOpcode() == ISD::FP_EXTEND || N1.getOpcode() == ISD::FP_ROUND)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005636 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5637 N0, N1.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00005638
Dan Gohman475871a2008-07-27 21:46:04 +00005639 return SDValue();
Chris Lattner12d83032006-03-05 05:30:57 +00005640}
5641
Dan Gohman475871a2008-07-27 21:46:04 +00005642SDValue DAGCombiner::visitSINT_TO_FP(SDNode *N) {
5643 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00005644 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005645 EVT VT = N->getValueType(0);
5646 EVT OpVT = N0.getValueType();
Chris Lattnercda88752008-06-26 00:16:49 +00005647
Nate Begeman1d4d4142005-09-01 00:19:25 +00005648 // fold (sint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00005649 if (N0C && OpVT != MVT::ppcf128 &&
5650 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00005651 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00005652 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005653 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005654
Chris Lattnercda88752008-06-26 00:16:49 +00005655 // If the input is a legal type, and SINT_TO_FP is not legal on this target,
5656 // but UINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005657 if (!TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT) &&
5658 TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005659 // If the sign bit is known to be zero, we can change this to UINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00005660 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005661 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00005662 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00005663
Dan Gohman475871a2008-07-27 21:46:04 +00005664 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005665}
5666
Dan Gohman475871a2008-07-27 21:46:04 +00005667SDValue DAGCombiner::visitUINT_TO_FP(SDNode *N) {
5668 SDValue N0 = N->getOperand(0);
Nate Begeman646d7e22005-09-02 21:18:40 +00005669 ConstantSDNode *N0C = dyn_cast<ConstantSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005670 EVT VT = N->getValueType(0);
5671 EVT OpVT = N0.getValueType();
Nate Begemana148d982006-01-18 22:35:16 +00005672
Nate Begeman1d4d4142005-09-01 00:19:25 +00005673 // fold (uint_to_fp c1) -> c1fp
Stuart Hastings7e334182011-03-02 19:36:30 +00005674 if (N0C && OpVT != MVT::ppcf128 &&
5675 // ...but only if the target supports immediate floating-point values
Eli Friedman50185242011-11-12 00:35:34 +00005676 (!LegalOperations ||
Evan Cheng9568e5c2011-06-21 06:01:08 +00005677 TLI.isOperationLegalOrCustom(llvm::ISD::ConstantFP, VT)))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005678 return DAG.getNode(ISD::UINT_TO_FP, N->getDebugLoc(), VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005679
Chris Lattnercda88752008-06-26 00:16:49 +00005680 // If the input is a legal type, and UINT_TO_FP is not legal on this target,
5681 // but SINT_TO_FP is legal on this target, try to convert.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00005682 if (!TLI.isOperationLegalOrCustom(ISD::UINT_TO_FP, OpVT) &&
5683 TLI.isOperationLegalOrCustom(ISD::SINT_TO_FP, OpVT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005684 // If the sign bit is known to be zero, we can change this to SINT_TO_FP.
Chris Lattnercda88752008-06-26 00:16:49 +00005685 if (DAG.SignBitIsZero(N0))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005686 return DAG.getNode(ISD::SINT_TO_FP, N->getDebugLoc(), VT, N0);
Chris Lattnercda88752008-06-26 00:16:49 +00005687 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005688
Dan Gohman475871a2008-07-27 21:46:04 +00005689 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005690}
5691
Dan Gohman475871a2008-07-27 21:46:04 +00005692SDValue DAGCombiner::visitFP_TO_SINT(SDNode *N) {
5693 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005694 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005695 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005696
Nate Begeman1d4d4142005-09-01 00:19:25 +00005697 // fold (fp_to_sint c1fp) -> c1
Nate Begeman646d7e22005-09-02 21:18:40 +00005698 if (N0CFP)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005699 return DAG.getNode(ISD::FP_TO_SINT, N->getDebugLoc(), VT, N0);
5700
Dan Gohman475871a2008-07-27 21:46:04 +00005701 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005702}
5703
Dan Gohman475871a2008-07-27 21:46:04 +00005704SDValue DAGCombiner::visitFP_TO_UINT(SDNode *N) {
5705 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005706 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005707 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005708
Nate Begeman1d4d4142005-09-01 00:19:25 +00005709 // fold (fp_to_uint c1fp) -> c1
Owen Anderson825b72b2009-08-11 20:47:22 +00005710 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005711 return DAG.getNode(ISD::FP_TO_UINT, N->getDebugLoc(), VT, N0);
5712
Dan Gohman475871a2008-07-27 21:46:04 +00005713 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005714}
5715
Dan Gohman475871a2008-07-27 21:46:04 +00005716SDValue DAGCombiner::visitFP_ROUND(SDNode *N) {
5717 SDValue N0 = N->getOperand(0);
5718 SDValue N1 = N->getOperand(1);
Nate Begemana148d982006-01-18 22:35:16 +00005719 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005720 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005721
Nate Begeman1d4d4142005-09-01 00:19:25 +00005722 // fold (fp_round c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00005723 if (N0CFP && N0.getValueType() != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005724 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0, N1);
Scott Michelfdc40a02009-02-17 22:15:04 +00005725
Chris Lattner79dbea52006-03-13 06:26:26 +00005726 // fold (fp_round (fp_extend x)) -> x
5727 if (N0.getOpcode() == ISD::FP_EXTEND && VT == N0.getOperand(0).getValueType())
5728 return N0.getOperand(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005729
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00005730 // fold (fp_round (fp_round x)) -> (fp_round x)
5731 if (N0.getOpcode() == ISD::FP_ROUND) {
5732 // This is a value preserving truncation if both round's are.
5733 bool IsTrunc = N->getConstantOperandVal(1) == 1 &&
Gabor Greifba36cb52008-08-28 21:40:38 +00005734 N0.getNode()->getConstantOperandVal(1) == 1;
Bill Wendling0225a1d2009-01-30 23:15:49 +00005735 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT, N0.getOperand(0),
Chris Lattner0aa5e6f2008-01-24 06:45:35 +00005736 DAG.getIntPtrConstant(IsTrunc));
5737 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005738
Chris Lattner79dbea52006-03-13 06:26:26 +00005739 // fold (fp_round (copysign X, Y)) -> (copysign (fp_round X), Y)
Gabor Greifba36cb52008-08-28 21:40:38 +00005740 if (N0.getOpcode() == ISD::FCOPYSIGN && N0.getNode()->hasOneUse()) {
Bill Wendling0225a1d2009-01-30 23:15:49 +00005741 SDValue Tmp = DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(), VT,
5742 N0.getOperand(0), N1);
Gabor Greifba36cb52008-08-28 21:40:38 +00005743 AddToWorkList(Tmp.getNode());
Bill Wendling0225a1d2009-01-30 23:15:49 +00005744 return DAG.getNode(ISD::FCOPYSIGN, N->getDebugLoc(), VT,
5745 Tmp, N0.getOperand(1));
Chris Lattner79dbea52006-03-13 06:26:26 +00005746 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005747
Dan Gohman475871a2008-07-27 21:46:04 +00005748 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005749}
5750
Dan Gohman475871a2008-07-27 21:46:04 +00005751SDValue DAGCombiner::visitFP_ROUND_INREG(SDNode *N) {
5752 SDValue N0 = N->getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005753 EVT VT = N->getValueType(0);
5754 EVT EVT = cast<VTSDNode>(N->getOperand(1))->getVT();
Nate Begeman646d7e22005-09-02 21:18:40 +00005755 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005756
Nate Begeman1d4d4142005-09-01 00:19:25 +00005757 // fold (fp_round_inreg c1fp) -> c1fp
Chris Lattner2392ae72010-04-15 04:48:01 +00005758 if (N0CFP && isTypeLegal(EVT)) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005759 SDValue Round = DAG.getConstantFP(*N0CFP->getConstantFPValue(), EVT);
Bill Wendling0225a1d2009-01-30 23:15:49 +00005760 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, Round);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005761 }
Bill Wendling0225a1d2009-01-30 23:15:49 +00005762
Dan Gohman475871a2008-07-27 21:46:04 +00005763 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005764}
5765
Dan Gohman475871a2008-07-27 21:46:04 +00005766SDValue DAGCombiner::visitFP_EXTEND(SDNode *N) {
5767 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005768 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005769 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005770
Chris Lattner5938bef2007-12-29 06:55:23 +00005771 // If this is fp_round(fpextend), don't fold it, allow ourselves to be folded.
Scott Michelfdc40a02009-02-17 22:15:04 +00005772 if (N->hasOneUse() &&
Dan Gohmane7852d02009-01-26 04:35:06 +00005773 N->use_begin()->getOpcode() == ISD::FP_ROUND)
Dan Gohman475871a2008-07-27 21:46:04 +00005774 return SDValue();
Chris Lattner0bd48932008-01-17 07:00:52 +00005775
Nate Begeman1d4d4142005-09-01 00:19:25 +00005776 // fold (fp_extend c1fp) -> c1fp
Owen Anderson825b72b2009-08-11 20:47:22 +00005777 if (N0CFP && VT != MVT::ppcf128)
Bill Wendling0225a1d2009-01-30 23:15:49 +00005778 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, N0);
Chris Lattner0bd48932008-01-17 07:00:52 +00005779
5780 // Turn fp_extend(fp_round(X, 1)) -> x since the fp_round doesn't affect the
5781 // value of X.
Gabor Greif12632d22008-08-30 19:29:20 +00005782 if (N0.getOpcode() == ISD::FP_ROUND
5783 && N0.getNode()->getConstantOperandVal(1) == 1) {
Dan Gohman475871a2008-07-27 21:46:04 +00005784 SDValue In = N0.getOperand(0);
Chris Lattner0bd48932008-01-17 07:00:52 +00005785 if (In.getValueType() == VT) return In;
Duncan Sands8e4eb092008-06-08 20:54:56 +00005786 if (VT.bitsLT(In.getValueType()))
Bill Wendling0225a1d2009-01-30 23:15:49 +00005787 return DAG.getNode(ISD::FP_ROUND, N->getDebugLoc(), VT,
5788 In, N0.getOperand(1));
5789 return DAG.getNode(ISD::FP_EXTEND, N->getDebugLoc(), VT, In);
Chris Lattner0bd48932008-01-17 07:00:52 +00005790 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005791
Chris Lattner0bd48932008-01-17 07:00:52 +00005792 // fold (fpext (load x)) -> (fpext (fptrunc (extload x)))
Gabor Greifba36cb52008-08-28 21:40:38 +00005793 if (ISD::isNON_EXTLoad(N0.getNode()) && N0.hasOneUse() &&
Duncan Sands25cf2272008-11-24 14:53:14 +00005794 ((!LegalOperations && !cast<LoadSDNode>(N0)->isVolatile()) ||
Evan Cheng03294662008-10-14 21:26:46 +00005795 TLI.isLoadExtLegal(ISD::EXTLOAD, N0.getValueType()))) {
Evan Cheng466685d2006-10-09 20:57:25 +00005796 LoadSDNode *LN0 = cast<LoadSDNode>(N0);
Stuart Hastingsa9011292011-02-16 16:23:55 +00005797 SDValue ExtLoad = DAG.getExtLoad(ISD::EXTLOAD, N->getDebugLoc(), VT,
Bill Wendling0225a1d2009-01-30 23:15:49 +00005798 LN0->getChain(),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +00005799 LN0->getBasePtr(), LN0->getPointerInfo(),
Duncan Sands25cf2272008-11-24 14:53:14 +00005800 N0.getValueType(),
David Greene1e559442010-02-15 17:00:31 +00005801 LN0->isVolatile(), LN0->isNonTemporal(),
5802 LN0->getAlignment());
Chris Lattnere564dbb2006-05-05 21:34:35 +00005803 CombineTo(N, ExtLoad);
Bill Wendling0225a1d2009-01-30 23:15:49 +00005804 CombineTo(N0.getNode(),
5805 DAG.getNode(ISD::FP_ROUND, N0.getDebugLoc(),
5806 N0.getValueType(), ExtLoad, DAG.getIntPtrConstant(1)),
Chris Lattnere564dbb2006-05-05 21:34:35 +00005807 ExtLoad.getValue(1));
Dan Gohman475871a2008-07-27 21:46:04 +00005808 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Chris Lattnere564dbb2006-05-05 21:34:35 +00005809 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00005810
Dan Gohman475871a2008-07-27 21:46:04 +00005811 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005812}
5813
Dan Gohman475871a2008-07-27 21:46:04 +00005814SDValue DAGCombiner::visitFNEG(SDNode *N) {
5815 SDValue N0 = N->getOperand(0);
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00005816 EVT VT = N->getValueType(0);
Nate Begemana148d982006-01-18 22:35:16 +00005817
Nick Lewycky8a8d4792011-12-02 22:16:29 +00005818 if (isNegatibleForFree(N0, LegalOperations, &DAG.getTarget().Options))
Duncan Sands25cf2272008-11-24 14:53:14 +00005819 return GetNegatedExpression(N0, DAG, LegalOperations);
Dan Gohman23ff1822007-07-02 15:48:56 +00005820
Chris Lattner3bd39d42008-01-27 17:42:27 +00005821 // Transform fneg(bitconvert(x)) -> bitconvert(x^sign) to avoid loading
5822 // constant pool values.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005823 if (N0.getOpcode() == ISD::BITCAST &&
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00005824 !VT.isVector() &&
5825 N0.getNode()->hasOneUse() &&
5826 N0.getOperand(0).getValueType().isInteger()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005827 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005828 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005829 if (IntVT.isInteger() && !IntVT.isVector()) {
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00005830 Int = DAG.getNode(ISD::XOR, N0.getDebugLoc(), IntVT, Int,
5831 DAG.getConstant(APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00005832 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005833 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Anton Korobeynikov2bcf60a2009-10-20 21:37:45 +00005834 VT, Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00005835 }
5836 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005837
Dan Gohman475871a2008-07-27 21:46:04 +00005838 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005839}
5840
Dan Gohman475871a2008-07-27 21:46:04 +00005841SDValue DAGCombiner::visitFABS(SDNode *N) {
5842 SDValue N0 = N->getOperand(0);
Nate Begemana148d982006-01-18 22:35:16 +00005843 ConstantFPSDNode *N0CFP = dyn_cast<ConstantFPSDNode>(N0);
Owen Andersone50ed302009-08-10 22:56:29 +00005844 EVT VT = N->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00005845
Nate Begeman1d4d4142005-09-01 00:19:25 +00005846 // fold (fabs c1) -> fabs(c1)
Owen Anderson825b72b2009-08-11 20:47:22 +00005847 if (N0CFP && VT != MVT::ppcf128)
Bill Wendlingc0debad2009-01-30 23:27:35 +00005848 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005849 // fold (fabs (fabs x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00005850 if (N0.getOpcode() == ISD::FABS)
Nate Begeman83e75ec2005-09-06 04:43:02 +00005851 return N->getOperand(0);
Nate Begeman1d4d4142005-09-01 00:19:25 +00005852 // fold (fabs (fneg x)) -> (fabs x)
Chris Lattner12d83032006-03-05 05:30:57 +00005853 // fold (fabs (fcopysign x, y)) -> (fabs x)
5854 if (N0.getOpcode() == ISD::FNEG || N0.getOpcode() == ISD::FCOPYSIGN)
Bill Wendlingc0debad2009-01-30 23:27:35 +00005855 return DAG.getNode(ISD::FABS, N->getDebugLoc(), VT, N0.getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00005856
Chris Lattner3bd39d42008-01-27 17:42:27 +00005857 // Transform fabs(bitconvert(x)) -> bitconvert(x&~sign) to avoid loading
5858 // constant pool values.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005859 if (N0.getOpcode() == ISD::BITCAST && N0.getNode()->hasOneUse() &&
Duncan Sands83ec4b62008-06-06 12:08:01 +00005860 N0.getOperand(0).getValueType().isInteger() &&
5861 !N0.getOperand(0).getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005862 SDValue Int = N0.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00005863 EVT IntVT = Int.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005864 if (IntVT.isInteger() && !IntVT.isVector()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005865 Int = DAG.getNode(ISD::AND, N0.getDebugLoc(), IntVT, Int,
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00005866 DAG.getConstant(~APInt::getSignBit(IntVT.getSizeInBits()), IntVT));
Gabor Greifba36cb52008-08-28 21:40:38 +00005867 AddToWorkList(Int.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005868 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(),
Bill Wendlingc0debad2009-01-30 23:27:35 +00005869 N->getValueType(0), Int);
Chris Lattner3bd39d42008-01-27 17:42:27 +00005870 }
5871 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005872
Dan Gohman475871a2008-07-27 21:46:04 +00005873 return SDValue();
Nate Begeman1d4d4142005-09-01 00:19:25 +00005874}
5875
Dan Gohman475871a2008-07-27 21:46:04 +00005876SDValue DAGCombiner::visitBRCOND(SDNode *N) {
5877 SDValue Chain = N->getOperand(0);
5878 SDValue N1 = N->getOperand(1);
5879 SDValue N2 = N->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005880
Dan Gohmane0f06c72009-11-17 00:47:23 +00005881 // If N is a constant we could fold this into a fallthrough or unconditional
5882 // branch. However that doesn't happen very often in normal code, because
5883 // Instcombine/SimplifyCFG should have handled the available opportunities.
5884 // If we did this folding here, it would be necessary to update the
5885 // MachineBasicBlock CFG, which is awkward.
5886
Nate Begeman750ac1b2006-02-01 07:19:44 +00005887 // fold a brcond with a setcc condition into a BR_CC node if BR_CC is legal
5888 // on the target.
Scott Michelfdc40a02009-02-17 22:15:04 +00005889 if (N1.getOpcode() == ISD::SETCC &&
Owen Anderson825b72b2009-08-11 20:47:22 +00005890 TLI.isOperationLegalOrCustom(ISD::BR_CC, MVT::Other)) {
5891 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00005892 Chain, N1.getOperand(2),
Nate Begeman750ac1b2006-02-01 07:19:44 +00005893 N1.getOperand(0), N1.getOperand(1), N2);
5894 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00005895
Evan Cheng2a135ae2010-10-04 22:41:01 +00005896 if ((N1.hasOneUse() && N1.getOpcode() == ISD::SRL) ||
5897 ((N1.getOpcode() == ISD::TRUNCATE && N1.hasOneUse()) &&
5898 (N1.getOperand(0).hasOneUse() &&
5899 N1.getOperand(0).getOpcode() == ISD::SRL))) {
5900 SDNode *Trunc = 0;
5901 if (N1.getOpcode() == ISD::TRUNCATE) {
5902 // Look pass the truncate.
5903 Trunc = N1.getNode();
5904 N1 = N1.getOperand(0);
5905 }
Evan Chengd40d03e2010-01-06 19:38:29 +00005906
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00005907 // Match this pattern so that we can generate simpler code:
5908 //
5909 // %a = ...
5910 // %b = and i32 %a, 2
5911 // %c = srl i32 %b, 1
5912 // brcond i32 %c ...
5913 //
5914 // into
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005915 //
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00005916 // %a = ...
Evan Chengd40d03e2010-01-06 19:38:29 +00005917 // %b = and i32 %a, 2
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00005918 // %c = setcc eq %b, 0
5919 // brcond %c ...
5920 //
5921 // This applies only when the AND constant value has one bit set and the
5922 // SRL constant is equal to the log2 of the AND constant. The back-end is
5923 // smart enough to convert the result into a TEST/JMP sequence.
5924 SDValue Op0 = N1.getOperand(0);
5925 SDValue Op1 = N1.getOperand(1);
5926
5927 if (Op0.getOpcode() == ISD::AND &&
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00005928 Op1.getOpcode() == ISD::Constant) {
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00005929 SDValue AndOp1 = Op0.getOperand(1);
5930
5931 if (AndOp1.getOpcode() == ISD::Constant) {
5932 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
5933
5934 if (AndConst.isPowerOf2() &&
5935 cast<ConstantSDNode>(Op1)->getAPIntValue()==AndConst.logBase2()) {
5936 SDValue SetCC =
5937 DAG.getSetCC(N->getDebugLoc(),
5938 TLI.getSetCCResultType(Op0.getValueType()),
5939 Op0, DAG.getConstant(0, Op0.getValueType()),
5940 ISD::SETNE);
5941
Evan Chengd40d03e2010-01-06 19:38:29 +00005942 SDValue NewBRCond = DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
5943 MVT::Other, Chain, SetCC, N2);
5944 // Don't add the new BRCond into the worklist or else SimplifySelectCC
5945 // will convert it back to (X & C1) >> C2.
5946 CombineTo(N, NewBRCond, false);
5947 // Truncate is dead.
5948 if (Trunc) {
5949 removeFromWorkList(Trunc);
5950 DAG.DeleteNode(Trunc);
5951 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00005952 // Replace the uses of SRL with SETCC
Evan Cheng2c755ba2010-02-27 07:36:59 +00005953 WorkListRemover DeadNodes(*this);
5954 DAG.ReplaceAllUsesOfValueWith(N1, SetCC, &DeadNodes);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00005955 removeFromWorkList(N1.getNode());
5956 DAG.DeleteNode(N1.getNode());
Evan Chengd40d03e2010-01-06 19:38:29 +00005957 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00005958 }
5959 }
5960 }
Evan Cheng2a135ae2010-10-04 22:41:01 +00005961
5962 if (Trunc)
5963 // Restore N1 if the above transformation doesn't match.
5964 N1 = N->getOperand(1);
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00005965 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005966
Evan Cheng2c755ba2010-02-27 07:36:59 +00005967 // Transform br(xor(x, y)) -> br(x != y)
5968 // Transform br(xor(xor(x,y), 1)) -> br (x == y)
5969 if (N1.hasOneUse() && N1.getOpcode() == ISD::XOR) {
5970 SDNode *TheXor = N1.getNode();
5971 SDValue Op0 = TheXor->getOperand(0);
5972 SDValue Op1 = TheXor->getOperand(1);
5973 if (Op0.getOpcode() == Op1.getOpcode()) {
5974 // Avoid missing important xor optimizations.
5975 SDValue Tmp = visitXOR(TheXor);
Bill Wendling86c5abb2010-04-20 01:25:01 +00005976 if (Tmp.getNode() && Tmp.getNode() != TheXor) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00005977 DEBUG(dbgs() << "\nReplacing.8 ";
5978 TheXor->dump(&DAG);
5979 dbgs() << "\nWith: ";
5980 Tmp.getNode()->dump(&DAG);
5981 dbgs() << '\n');
5982 WorkListRemover DeadNodes(*this);
5983 DAG.ReplaceAllUsesOfValueWith(N1, Tmp, &DeadNodes);
5984 removeFromWorkList(TheXor);
5985 DAG.DeleteNode(TheXor);
5986 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
5987 MVT::Other, Chain, Tmp, N2);
5988 }
5989 }
5990
5991 if (Op0.getOpcode() != ISD::SETCC && Op1.getOpcode() != ISD::SETCC) {
5992 bool Equal = false;
5993 if (ConstantSDNode *RHSCI = dyn_cast<ConstantSDNode>(Op0))
5994 if (RHSCI->getAPIntValue() == 1 && Op0.hasOneUse() &&
5995 Op0.getOpcode() == ISD::XOR) {
5996 TheXor = Op0.getNode();
5997 Equal = true;
5998 }
5999
Evan Cheng2a135ae2010-10-04 22:41:01 +00006000 EVT SetCCVT = N1.getValueType();
Evan Cheng2c755ba2010-02-27 07:36:59 +00006001 if (LegalTypes)
6002 SetCCVT = TLI.getSetCCResultType(SetCCVT);
6003 SDValue SetCC = DAG.getSetCC(TheXor->getDebugLoc(),
6004 SetCCVT,
6005 Op0, Op1,
6006 Equal ? ISD::SETEQ : ISD::SETNE);
6007 // Replace the uses of XOR with SETCC
6008 WorkListRemover DeadNodes(*this);
Evan Cheng2a135ae2010-10-04 22:41:01 +00006009 DAG.ReplaceAllUsesOfValueWith(N1, SetCC, &DeadNodes);
6010 removeFromWorkList(N1.getNode());
6011 DAG.DeleteNode(N1.getNode());
Evan Cheng2c755ba2010-02-27 07:36:59 +00006012 return DAG.getNode(ISD::BRCOND, N->getDebugLoc(),
6013 MVT::Other, Chain, SetCC, N2);
6014 }
6015 }
Bill Wendlinga02a3dd2009-03-26 06:14:09 +00006016
Dan Gohman475871a2008-07-27 21:46:04 +00006017 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006018}
6019
Chris Lattner3ea0b472005-10-05 06:47:48 +00006020// Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
6021//
Dan Gohman475871a2008-07-27 21:46:04 +00006022SDValue DAGCombiner::visitBR_CC(SDNode *N) {
Chris Lattner3ea0b472005-10-05 06:47:48 +00006023 CondCodeSDNode *CC = cast<CondCodeSDNode>(N->getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00006024 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3);
Scott Michelfdc40a02009-02-17 22:15:04 +00006025
Dan Gohmane0f06c72009-11-17 00:47:23 +00006026 // If N is a constant we could fold this into a fallthrough or unconditional
6027 // branch. However that doesn't happen very often in normal code, because
6028 // Instcombine/SimplifyCFG should have handled the available opportunities.
6029 // If we did this folding here, it would be necessary to update the
6030 // MachineBasicBlock CFG, which is awkward.
6031
Duncan Sands8eab8a22008-06-09 11:32:28 +00006032 // Use SimplifySetCC to simplify SETCC's.
Duncan Sands5480c042009-01-01 15:52:00 +00006033 SDValue Simp = SimplifySetCC(TLI.getSetCCResultType(CondLHS.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00006034 CondLHS, CondRHS, CC->get(), N->getDebugLoc(),
6035 false);
Gabor Greifba36cb52008-08-28 21:40:38 +00006036 if (Simp.getNode()) AddToWorkList(Simp.getNode());
Chris Lattner30f73e72006-10-14 03:52:46 +00006037
Nate Begemane17daeb2005-10-05 21:43:42 +00006038 // fold to a simpler setcc
Gabor Greifba36cb52008-08-28 21:40:38 +00006039 if (Simp.getNode() && Simp.getOpcode() == ISD::SETCC)
Owen Anderson825b72b2009-08-11 20:47:22 +00006040 return DAG.getNode(ISD::BR_CC, N->getDebugLoc(), MVT::Other,
Bill Wendlingc0debad2009-01-30 23:27:35 +00006041 N->getOperand(0), Simp.getOperand(2),
6042 Simp.getOperand(0), Simp.getOperand(1),
6043 N->getOperand(4));
6044
Dan Gohman475871a2008-07-27 21:46:04 +00006045 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00006046}
6047
Evan Chengc4b527a2012-01-13 01:37:24 +00006048/// canFoldInAddressingMode - Return true if 'Use' is a load or a store that
6049/// uses N as its base pointer and that N may be folded in the load / store
6050/// addressing mode. FIXME: This currently only looks for folding of
6051/// [reg +/- imm] addressing modes.
6052static bool canFoldInAddressingMode(SDNode *N, SDNode *Use,
6053 SelectionDAG &DAG,
6054 const TargetLowering &TLI) {
6055 EVT VT;
6056 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Use)) {
6057 if (LD->isIndexed() || LD->getBasePtr().getNode() != N)
6058 return false;
6059 VT = Use->getValueType(0);
6060 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(Use)) {
6061 if (ST->isIndexed() || ST->getBasePtr().getNode() != N)
6062 return false;
6063 VT = ST->getValue().getValueType();
6064 } else
6065 return false;
6066
6067 TargetLowering::AddrMode AM;
6068 if (N->getOpcode() == ISD::ADD) {
6069 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6070 if (Offset)
6071 AM.BaseOffs = Offset->getSExtValue();
6072 else
6073 return false;
6074 } else if (N->getOpcode() == ISD::SUB) {
6075 ConstantSDNode *Offset = dyn_cast<ConstantSDNode>(N->getOperand(1));
6076 if (Offset)
6077 AM.BaseOffs = -Offset->getSExtValue();
6078 else
6079 return false;
6080 } else
6081 return false;
6082
6083 return TLI.isLegalAddressingMode(AM, VT.getTypeForEVT(*DAG.getContext()));
6084}
6085
Duncan Sandsec87aa82008-06-15 20:12:31 +00006086/// CombineToPreIndexedLoadStore - Try turning a load / store into a
6087/// pre-indexed load / store when the base pointer is an add or subtract
Chris Lattner448f2192006-11-11 00:39:41 +00006088/// and it has other uses besides the load / store. After the
6089/// transformation, the new indexed load / store has effectively folded
6090/// the add / subtract in and all of its other uses are redirected to the
6091/// new load / store.
6092bool DAGCombiner::CombineToPreIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006093 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006094 return false;
6095
6096 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006097 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006098 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006099 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006100 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006101 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006102 VT = LD->getMemoryVT();
Evan Cheng83060c52007-03-07 08:07:03 +00006103 if (!TLI.isIndexedLoadLegal(ISD::PRE_INC, VT) &&
Chris Lattner448f2192006-11-11 00:39:41 +00006104 !TLI.isIndexedLoadLegal(ISD::PRE_DEC, VT))
6105 return false;
6106 Ptr = LD->getBasePtr();
6107 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006108 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006109 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006110 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006111 if (!TLI.isIndexedStoreLegal(ISD::PRE_INC, VT) &&
6112 !TLI.isIndexedStoreLegal(ISD::PRE_DEC, VT))
6113 return false;
6114 Ptr = ST->getBasePtr();
6115 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006116 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006117 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006118 }
Chris Lattner448f2192006-11-11 00:39:41 +00006119
Chris Lattner9f1794e2006-11-11 00:56:29 +00006120 // If the pointer is not an add/sub, or if it doesn't have multiple uses, bail
6121 // out. There is no reason to make this a preinc/predec.
6122 if ((Ptr.getOpcode() != ISD::ADD && Ptr.getOpcode() != ISD::SUB) ||
Gabor Greifba36cb52008-08-28 21:40:38 +00006123 Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006124 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006125
Chris Lattner9f1794e2006-11-11 00:56:29 +00006126 // Ask the target to do addressing mode selection.
Dan Gohman475871a2008-07-27 21:46:04 +00006127 SDValue BasePtr;
6128 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006129 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6130 if (!TLI.getPreIndexedAddressParts(N, BasePtr, Offset, AM, DAG))
6131 return false;
Evan Chenga7d4a042007-05-03 23:52:19 +00006132 // Don't create a indexed load / store with zero offset.
6133 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006134 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006135 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006136
Chris Lattner41e53fd2006-11-11 01:00:15 +00006137 // Try turning it into a pre-indexed load / store except when:
Evan Chengc843abe2007-05-24 02:35:39 +00006138 // 1) The new base ptr is a frame index.
6139 // 2) If N is a store and the new base ptr is either the same as or is a
Chris Lattner9f1794e2006-11-11 00:56:29 +00006140 // predecessor of the value being stored.
Evan Chengc843abe2007-05-24 02:35:39 +00006141 // 3) Another use of old base ptr is a predecessor of N. If ptr is folded
Chris Lattner9f1794e2006-11-11 00:56:29 +00006142 // that would create a cycle.
Evan Chengc843abe2007-05-24 02:35:39 +00006143 // 4) All uses are load / store ops that use it as old base ptr.
Chris Lattner448f2192006-11-11 00:39:41 +00006144
Chris Lattner41e53fd2006-11-11 01:00:15 +00006145 // Check #1. Preinc'ing a frame index would require copying the stack pointer
6146 // (plus the implicit offset) to a register to preinc anyway.
Evan Chengcaab1292009-05-06 18:25:01 +00006147 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
Chris Lattner41e53fd2006-11-11 01:00:15 +00006148 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006149
Chris Lattner41e53fd2006-11-11 01:00:15 +00006150 // Check #2.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006151 if (!isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006152 SDValue Val = cast<StoreSDNode>(N)->getValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006153 if (Val == BasePtr || BasePtr.getNode()->isPredecessorOf(Val.getNode()))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006154 return false;
Chris Lattner448f2192006-11-11 00:39:41 +00006155 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006156
Evan Chengc843abe2007-05-24 02:35:39 +00006157 // Now check for #3 and #4.
Chris Lattner9f1794e2006-11-11 00:56:29 +00006158 bool RealUse = false;
Lang Hames944520f2011-07-07 04:31:51 +00006159
6160 // Caches for hasPredecessorHelper
6161 SmallPtrSet<const SDNode *, 32> Visited;
6162 SmallVector<const SDNode *, 16> Worklist;
6163
Gabor Greifba36cb52008-08-28 21:40:38 +00006164 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6165 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006166 SDNode *Use = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006167 if (Use == N)
6168 continue;
Lang Hames944520f2011-07-07 04:31:51 +00006169 if (N->hasPredecessorHelper(Use, Visited, Worklist))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006170 return false;
6171
Evan Chengc4b527a2012-01-13 01:37:24 +00006172 // If Ptr may be folded in addressing mode of other use, then it's
6173 // not profitable to do this transformation.
6174 if (!canFoldInAddressingMode(Ptr.getNode(), Use, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006175 RealUse = true;
6176 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006177
Chris Lattner9f1794e2006-11-11 00:56:29 +00006178 if (!RealUse)
6179 return false;
6180
Dan Gohman475871a2008-07-27 21:46:04 +00006181 SDValue Result;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006182 if (isLoad)
Bill Wendlingc0debad2009-01-30 23:27:35 +00006183 Result = DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6184 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006185 else
Bill Wendlingc0debad2009-01-30 23:27:35 +00006186 Result = DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6187 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006188 ++PreIndexedNodes;
6189 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006190 DEBUG(dbgs() << "\nReplacing.4 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006191 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006192 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006193 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006194 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006195 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006196 if (isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006197 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006198 &DeadNodes);
Dan Gohman475871a2008-07-27 21:46:04 +00006199 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006200 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006201 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00006202 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006203 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006204 }
6205
Chris Lattner9f1794e2006-11-11 00:56:29 +00006206 // Finally, since the node is now dead, remove it from the graph.
6207 DAG.DeleteNode(N);
6208
6209 // Replace the uses of Ptr with uses of the updated base value.
6210 DAG.ReplaceAllUsesOfValueWith(Ptr, Result.getValue(isLoad ? 1 : 0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006211 &DeadNodes);
Gabor Greifba36cb52008-08-28 21:40:38 +00006212 removeFromWorkList(Ptr.getNode());
6213 DAG.DeleteNode(Ptr.getNode());
Chris Lattner9f1794e2006-11-11 00:56:29 +00006214
6215 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006216}
6217
Duncan Sandsec87aa82008-06-15 20:12:31 +00006218/// CombineToPostIndexedLoadStore - Try to combine a load / store with a
Chris Lattner448f2192006-11-11 00:39:41 +00006219/// add / sub of the base pointer node into a post-indexed load / store.
6220/// The transformation folded the add / subtract into the new indexed
6221/// load / store effectively and all of its uses are redirected to the
6222/// new load / store.
6223bool DAGCombiner::CombineToPostIndexedLoadStore(SDNode *N) {
Eli Friedman50185242011-11-12 00:35:34 +00006224 if (Level < AfterLegalizeDAG)
Chris Lattner448f2192006-11-11 00:39:41 +00006225 return false;
6226
6227 bool isLoad = true;
Dan Gohman475871a2008-07-27 21:46:04 +00006228 SDValue Ptr;
Owen Andersone50ed302009-08-10 22:56:29 +00006229 EVT VT;
Chris Lattner448f2192006-11-11 00:39:41 +00006230 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006231 if (LD->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006232 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006233 VT = LD->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006234 if (!TLI.isIndexedLoadLegal(ISD::POST_INC, VT) &&
6235 !TLI.isIndexedLoadLegal(ISD::POST_DEC, VT))
6236 return false;
6237 Ptr = LD->getBasePtr();
6238 } else if (StoreSDNode *ST = dyn_cast<StoreSDNode>(N)) {
Chris Lattnerddf89562008-01-17 19:59:44 +00006239 if (ST->isIndexed())
Evan Chenge90460e2006-12-16 06:25:23 +00006240 return false;
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006241 VT = ST->getMemoryVT();
Chris Lattner448f2192006-11-11 00:39:41 +00006242 if (!TLI.isIndexedStoreLegal(ISD::POST_INC, VT) &&
6243 !TLI.isIndexedStoreLegal(ISD::POST_DEC, VT))
6244 return false;
6245 Ptr = ST->getBasePtr();
6246 isLoad = false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006247 } else {
Chris Lattner448f2192006-11-11 00:39:41 +00006248 return false;
Bill Wendlingc0debad2009-01-30 23:27:35 +00006249 }
Chris Lattner448f2192006-11-11 00:39:41 +00006250
Gabor Greifba36cb52008-08-28 21:40:38 +00006251 if (Ptr.getNode()->hasOneUse())
Chris Lattner9f1794e2006-11-11 00:56:29 +00006252 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00006253
Gabor Greifba36cb52008-08-28 21:40:38 +00006254 for (SDNode::use_iterator I = Ptr.getNode()->use_begin(),
6255 E = Ptr.getNode()->use_end(); I != E; ++I) {
Dan Gohman89684502008-07-27 20:43:25 +00006256 SDNode *Op = *I;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006257 if (Op == N ||
6258 (Op->getOpcode() != ISD::ADD && Op->getOpcode() != ISD::SUB))
6259 continue;
6260
Dan Gohman475871a2008-07-27 21:46:04 +00006261 SDValue BasePtr;
6262 SDValue Offset;
Chris Lattner9f1794e2006-11-11 00:56:29 +00006263 ISD::MemIndexedMode AM = ISD::UNINDEXED;
6264 if (TLI.getPostIndexedAddressParts(N, Op, BasePtr, Offset, AM, DAG)) {
Evan Chenga7d4a042007-05-03 23:52:19 +00006265 // Don't create a indexed load / store with zero offset.
6266 if (isa<ConstantSDNode>(Offset) &&
Dan Gohman002e5d02008-03-13 22:13:53 +00006267 cast<ConstantSDNode>(Offset)->isNullValue())
Evan Chenga7d4a042007-05-03 23:52:19 +00006268 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006269
Chris Lattner9f1794e2006-11-11 00:56:29 +00006270 // Try turning it into a post-indexed load / store except when
Evan Chengc4b527a2012-01-13 01:37:24 +00006271 // 1) All uses are load / store ops that use it as base ptr (and
6272 // it may be folded as addressing mmode).
Chris Lattner9f1794e2006-11-11 00:56:29 +00006273 // 2) Op must be independent of N, i.e. Op is neither a predecessor
6274 // nor a successor of N. Otherwise, if Op is folded that would
6275 // create a cycle.
6276
Evan Chengcaab1292009-05-06 18:25:01 +00006277 if (isa<FrameIndexSDNode>(BasePtr) || isa<RegisterSDNode>(BasePtr))
6278 continue;
6279
Chris Lattner9f1794e2006-11-11 00:56:29 +00006280 // Check for #1.
6281 bool TryNext = false;
Gabor Greifba36cb52008-08-28 21:40:38 +00006282 for (SDNode::use_iterator II = BasePtr.getNode()->use_begin(),
6283 EE = BasePtr.getNode()->use_end(); II != EE; ++II) {
Dan Gohman89684502008-07-27 20:43:25 +00006284 SDNode *Use = *II;
Gabor Greifba36cb52008-08-28 21:40:38 +00006285 if (Use == Ptr.getNode())
Chris Lattner448f2192006-11-11 00:39:41 +00006286 continue;
6287
Chris Lattner9f1794e2006-11-11 00:56:29 +00006288 // If all the uses are load / store addresses, then don't do the
6289 // transformation.
6290 if (Use->getOpcode() == ISD::ADD || Use->getOpcode() == ISD::SUB){
6291 bool RealUse = false;
6292 for (SDNode::use_iterator III = Use->use_begin(),
6293 EEE = Use->use_end(); III != EEE; ++III) {
Dan Gohman89684502008-07-27 20:43:25 +00006294 SDNode *UseUse = *III;
Evan Chengc4b527a2012-01-13 01:37:24 +00006295 if (!canFoldInAddressingMode(Use, UseUse, DAG, TLI))
Chris Lattner9f1794e2006-11-11 00:56:29 +00006296 RealUse = true;
6297 }
Chris Lattner448f2192006-11-11 00:39:41 +00006298
Chris Lattner9f1794e2006-11-11 00:56:29 +00006299 if (!RealUse) {
6300 TryNext = true;
6301 break;
Chris Lattner448f2192006-11-11 00:39:41 +00006302 }
6303 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006304 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006305
Chris Lattner9f1794e2006-11-11 00:56:29 +00006306 if (TryNext)
6307 continue;
Chris Lattner448f2192006-11-11 00:39:41 +00006308
Chris Lattner9f1794e2006-11-11 00:56:29 +00006309 // Check for #2
Evan Cheng917be682008-03-04 00:41:45 +00006310 if (!Op->isPredecessorOf(N) && !N->isPredecessorOf(Op)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006311 SDValue Result = isLoad
Bill Wendlingc0debad2009-01-30 23:27:35 +00006312 ? DAG.getIndexedLoad(SDValue(N,0), N->getDebugLoc(),
6313 BasePtr, Offset, AM)
6314 : DAG.getIndexedStore(SDValue(N,0), N->getDebugLoc(),
6315 BasePtr, Offset, AM);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006316 ++PostIndexedNodes;
6317 ++NodesCombined;
David Greenef1090292010-01-05 01:25:00 +00006318 DEBUG(dbgs() << "\nReplacing.5 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006319 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006320 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006321 Result.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006322 dbgs() << '\n');
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006323 WorkListRemover DeadNodes(*this);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006324 if (isLoad) {
Dan Gohman475871a2008-07-27 21:46:04 +00006325 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006326 &DeadNodes);
Dan Gohman475871a2008-07-27 21:46:04 +00006327 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Result.getValue(2),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006328 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006329 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00006330 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Result.getValue(1),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006331 &DeadNodes);
Chris Lattner448f2192006-11-11 00:39:41 +00006332 }
Chris Lattner9f1794e2006-11-11 00:56:29 +00006333
Chris Lattner9f1794e2006-11-11 00:56:29 +00006334 // Finally, since the node is now dead, remove it from the graph.
6335 DAG.DeleteNode(N);
6336
6337 // Replace the uses of Use with uses of the updated base value.
Dan Gohman475871a2008-07-27 21:46:04 +00006338 DAG.ReplaceAllUsesOfValueWith(SDValue(Op, 0),
Chris Lattner9f1794e2006-11-11 00:56:29 +00006339 Result.getValue(isLoad ? 1 : 0),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006340 &DeadNodes);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006341 removeFromWorkList(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006342 DAG.DeleteNode(Op);
Chris Lattner9f1794e2006-11-11 00:56:29 +00006343 return true;
Chris Lattner448f2192006-11-11 00:39:41 +00006344 }
6345 }
6346 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006347
Chris Lattner448f2192006-11-11 00:39:41 +00006348 return false;
6349}
6350
Dan Gohman475871a2008-07-27 21:46:04 +00006351SDValue DAGCombiner::visitLOAD(SDNode *N) {
Evan Cheng466685d2006-10-09 20:57:25 +00006352 LoadSDNode *LD = cast<LoadSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006353 SDValue Chain = LD->getChain();
6354 SDValue Ptr = LD->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00006355
Evan Cheng45a7ca92007-05-01 00:38:21 +00006356 // If load is not volatile and there are no uses of the loaded value (and
6357 // the updated indexed value in case of indexed loads), change uses of the
6358 // chain value into uses of the chain input (i.e. delete the dead load).
6359 if (!LD->isVolatile()) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006360 if (N->getValueType(1) == MVT::Other) {
Evan Cheng498f5592007-05-01 08:53:39 +00006361 // Unindexed loads.
Craig Topper704e1a02012-01-07 18:31:09 +00006362 if (!N->hasAnyUseOfValue(0)) {
Evan Cheng02c42852008-01-16 23:11:54 +00006363 // It's not safe to use the two value CombineTo variant here. e.g.
6364 // v1, chain2 = load chain1, loc
6365 // v2, chain3 = load chain2, loc
6366 // v3 = add v2, c
Chris Lattner125991a2008-01-24 07:57:06 +00006367 // Now we replace use of chain2 with chain1. This makes the second load
6368 // isomorphic to the one we are deleting, and thus makes this load live.
David Greenef1090292010-01-05 01:25:00 +00006369 DEBUG(dbgs() << "\nReplacing.6 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006370 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006371 dbgs() << "\nWith chain: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006372 Chain.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006373 dbgs() << "\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006374 WorkListRemover DeadNodes(*this);
Dan Gohman475871a2008-07-27 21:46:04 +00006375 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), Chain, &DeadNodes);
Bill Wendlingc0debad2009-01-30 23:27:35 +00006376
Chris Lattner125991a2008-01-24 07:57:06 +00006377 if (N->use_empty()) {
6378 removeFromWorkList(N);
6379 DAG.DeleteNode(N);
6380 }
Bill Wendlingc0debad2009-01-30 23:27:35 +00006381
Dan Gohman475871a2008-07-27 21:46:04 +00006382 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng02c42852008-01-16 23:11:54 +00006383 }
Evan Cheng498f5592007-05-01 08:53:39 +00006384 } else {
6385 // Indexed loads.
Owen Anderson825b72b2009-08-11 20:47:22 +00006386 assert(N->getValueType(2) == MVT::Other && "Malformed indexed loads?");
Craig Topper704e1a02012-01-07 18:31:09 +00006387 if (!N->hasAnyUseOfValue(0) && !N->hasAnyUseOfValue(1)) {
Dale Johannesene8d72302009-02-06 23:05:02 +00006388 SDValue Undef = DAG.getUNDEF(N->getValueType(0));
Evan Cheng2c755ba2010-02-27 07:36:59 +00006389 DEBUG(dbgs() << "\nReplacing.7 ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006390 N->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006391 dbgs() << "\nWith: ";
Chris Lattnerbbbfa992009-08-23 06:35:02 +00006392 Undef.getNode()->dump(&DAG);
David Greenef1090292010-01-05 01:25:00 +00006393 dbgs() << " and 2 other values\n");
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006394 WorkListRemover DeadNodes(*this);
Dan Gohman475871a2008-07-27 21:46:04 +00006395 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Undef, &DeadNodes);
6396 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1),
Dale Johannesene8d72302009-02-06 23:05:02 +00006397 DAG.getUNDEF(N->getValueType(1)),
Chris Lattnerf8dc0612008-02-03 06:49:24 +00006398 &DeadNodes);
Dan Gohman475871a2008-07-27 21:46:04 +00006399 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 2), Chain, &DeadNodes);
Evan Cheng02c42852008-01-16 23:11:54 +00006400 removeFromWorkList(N);
Evan Cheng02c42852008-01-16 23:11:54 +00006401 DAG.DeleteNode(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006402 return SDValue(N, 0); // Return N so it doesn't get rechecked!
Evan Cheng45a7ca92007-05-01 00:38:21 +00006403 }
Evan Cheng45a7ca92007-05-01 00:38:21 +00006404 }
6405 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006406
Chris Lattner01a22022005-10-10 22:04:48 +00006407 // If this load is directly stored, replace the load value with the stored
6408 // value.
6409 // TODO: Handle store large -> read small portion.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006410 // TODO: Handle TRUNCSTORE/LOADEXT
Evan Cheng9ef82ce2011-03-11 00:48:56 +00006411 if (ISD::isNormalLoad(N) && !LD->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00006412 if (ISD::isNON_TRUNCStore(Chain.getNode())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00006413 StoreSDNode *PrevST = cast<StoreSDNode>(Chain);
6414 if (PrevST->getBasePtr() == Ptr &&
6415 PrevST->getValue().getValueType() == N->getValueType(0))
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006416 return CombineTo(N, Chain.getOperand(1), Chain);
Evan Cheng8b2794a2006-10-13 21:14:26 +00006417 }
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006418 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006419
Evan Cheng255f20f2010-04-01 06:04:33 +00006420 // Try to infer better alignment information than the load already has.
6421 if (OptLevel != CodeGenOpt::None && LD->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00006422 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
6423 if (Align > LD->getAlignment())
6424 return DAG.getExtLoad(LD->getExtensionType(), N->getDebugLoc(),
6425 LD->getValueType(0),
6426 Chain, Ptr, LD->getPointerInfo(),
6427 LD->getMemoryVT(),
6428 LD->isVolatile(), LD->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00006429 }
6430 }
6431
Jim Laskey7ca56af2006-10-11 13:47:09 +00006432 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00006433 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00006434 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00006435
Jim Laskey6ff23e52006-10-04 16:53:27 +00006436 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00006437 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00006438 SDValue ReplLoad;
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006439
Jim Laskey279f0532006-09-25 16:29:54 +00006440 // Replace the chain to void dependency.
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006441 if (LD->getExtensionType() == ISD::NON_EXTLOAD) {
Bill Wendlingc0debad2009-01-30 23:27:35 +00006442 ReplLoad = DAG.getLoad(N->getValueType(0), LD->getDebugLoc(),
Chris Lattnerfa459012010-09-21 16:08:50 +00006443 BetterChain, Ptr, LD->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00006444 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006445 LD->isInvariant(), LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006446 } else {
Stuart Hastingsa9011292011-02-16 16:23:55 +00006447 ReplLoad = DAG.getExtLoad(LD->getExtensionType(), LD->getDebugLoc(),
6448 LD->getValueType(0),
Chris Lattnerfa459012010-09-21 16:08:50 +00006449 BetterChain, Ptr, LD->getPointerInfo(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006450 LD->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00006451 LD->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00006452 LD->isNonTemporal(),
Christopher Lamb95c218a2007-04-22 23:15:30 +00006453 LD->getAlignment());
Jim Laskeyc2b19f32006-10-11 17:47:52 +00006454 }
Jim Laskey279f0532006-09-25 16:29:54 +00006455
Jim Laskey6ff23e52006-10-04 16:53:27 +00006456 // Create token factor to keep old chain connected.
Bill Wendlingc0debad2009-01-30 23:27:35 +00006457 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00006458 MVT::Other, Chain, ReplLoad.getValue(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006459
Nate Begemanb6aef5c2009-09-15 00:18:30 +00006460 // Make sure the new and old chains are cleaned up.
6461 AddToWorkList(Token.getNode());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006462
Jim Laskey274062c2006-10-13 23:32:28 +00006463 // Replace uses with load result and token factor. Don't add users
6464 // to work list.
6465 return CombineTo(N, ReplLoad.getValue(0), Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00006466 }
6467 }
6468
Evan Cheng7fc033a2006-11-03 03:06:21 +00006469 // Try transforming N to an indexed load.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00006470 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00006471 return SDValue(N, 0);
Evan Cheng7fc033a2006-11-03 03:06:21 +00006472
Dan Gohman475871a2008-07-27 21:46:04 +00006473 return SDValue();
Chris Lattner01a22022005-10-10 22:04:48 +00006474}
6475
Chris Lattner2392ae72010-04-15 04:48:01 +00006476/// CheckForMaskedLoad - Check to see if V is (and load (ptr), imm), where the
6477/// load is having specific bytes cleared out. If so, return the byte size
6478/// being masked out and the shift amount.
6479static std::pair<unsigned, unsigned>
6480CheckForMaskedLoad(SDValue V, SDValue Ptr, SDValue Chain) {
6481 std::pair<unsigned, unsigned> Result(0, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006482
Chris Lattner2392ae72010-04-15 04:48:01 +00006483 // Check for the structure we're looking for.
6484 if (V->getOpcode() != ISD::AND ||
6485 !isa<ConstantSDNode>(V->getOperand(1)) ||
6486 !ISD::isNormalLoad(V->getOperand(0).getNode()))
6487 return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006488
Chris Lattnere6987582010-04-15 06:10:49 +00006489 // Check the chain and pointer.
Chris Lattner2392ae72010-04-15 04:48:01 +00006490 LoadSDNode *LD = cast<LoadSDNode>(V->getOperand(0));
Chris Lattnere6987582010-04-15 06:10:49 +00006491 if (LD->getBasePtr() != Ptr) return Result; // Not from same pointer.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006492
Chris Lattnere6987582010-04-15 06:10:49 +00006493 // The store should be chained directly to the load or be an operand of a
6494 // tokenfactor.
6495 if (LD == Chain.getNode())
6496 ; // ok.
6497 else if (Chain->getOpcode() != ISD::TokenFactor)
6498 return Result; // Fail.
6499 else {
6500 bool isOk = false;
6501 for (unsigned i = 0, e = Chain->getNumOperands(); i != e; ++i)
6502 if (Chain->getOperand(i).getNode() == LD) {
6503 isOk = true;
6504 break;
6505 }
6506 if (!isOk) return Result;
6507 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006508
Chris Lattner2392ae72010-04-15 04:48:01 +00006509 // This only handles simple types.
6510 if (V.getValueType() != MVT::i16 &&
6511 V.getValueType() != MVT::i32 &&
6512 V.getValueType() != MVT::i64)
6513 return Result;
6514
6515 // Check the constant mask. Invert it so that the bits being masked out are
6516 // 0 and the bits being kept are 1. Use getSExtValue so that leading bits
6517 // follow the sign bit for uniformity.
6518 uint64_t NotMask = ~cast<ConstantSDNode>(V->getOperand(1))->getSExtValue();
6519 unsigned NotMaskLZ = CountLeadingZeros_64(NotMask);
6520 if (NotMaskLZ & 7) return Result; // Must be multiple of a byte.
6521 unsigned NotMaskTZ = CountTrailingZeros_64(NotMask);
6522 if (NotMaskTZ & 7) return Result; // Must be multiple of a byte.
6523 if (NotMaskLZ == 64) return Result; // All zero mask.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006524
Chris Lattner2392ae72010-04-15 04:48:01 +00006525 // See if we have a continuous run of bits. If so, we have 0*1+0*
6526 if (CountTrailingOnes_64(NotMask >> NotMaskTZ)+NotMaskTZ+NotMaskLZ != 64)
6527 return Result;
6528
6529 // Adjust NotMaskLZ down to be from the actual size of the int instead of i64.
6530 if (V.getValueType() != MVT::i64 && NotMaskLZ)
6531 NotMaskLZ -= 64-V.getValueSizeInBits();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006532
Chris Lattner2392ae72010-04-15 04:48:01 +00006533 unsigned MaskedBytes = (V.getValueSizeInBits()-NotMaskLZ-NotMaskTZ)/8;
6534 switch (MaskedBytes) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006535 case 1:
6536 case 2:
Chris Lattner2392ae72010-04-15 04:48:01 +00006537 case 4: break;
6538 default: return Result; // All one mask, or 5-byte mask.
6539 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006540
Chris Lattner2392ae72010-04-15 04:48:01 +00006541 // Verify that the first bit starts at a multiple of mask so that the access
6542 // is aligned the same as the access width.
6543 if (NotMaskTZ && NotMaskTZ/8 % MaskedBytes) return Result;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006544
Chris Lattner2392ae72010-04-15 04:48:01 +00006545 Result.first = MaskedBytes;
6546 Result.second = NotMaskTZ/8;
6547 return Result;
6548}
6549
6550
6551/// ShrinkLoadReplaceStoreWithStore - Check to see if IVal is something that
6552/// provides a value as specified by MaskInfo. If so, replace the specified
6553/// store with a narrower store of truncated IVal.
6554static SDNode *
6555ShrinkLoadReplaceStoreWithStore(const std::pair<unsigned, unsigned> &MaskInfo,
6556 SDValue IVal, StoreSDNode *St,
6557 DAGCombiner *DC) {
6558 unsigned NumBytes = MaskInfo.first;
6559 unsigned ByteShift = MaskInfo.second;
6560 SelectionDAG &DAG = DC->getDAG();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006561
Chris Lattner2392ae72010-04-15 04:48:01 +00006562 // Check to see if IVal is all zeros in the part being masked in by the 'or'
6563 // that uses this. If not, this is not a replacement.
6564 APInt Mask = ~APInt::getBitsSet(IVal.getValueSizeInBits(),
6565 ByteShift*8, (ByteShift+NumBytes)*8);
6566 if (!DAG.MaskedValueIsZero(IVal, Mask)) return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006567
Chris Lattner2392ae72010-04-15 04:48:01 +00006568 // Check that it is legal on the target to do this. It is legal if the new
6569 // VT we're shrinking to (i8/i16/i32) is legal or we're still before type
6570 // legalization.
6571 MVT VT = MVT::getIntegerVT(NumBytes*8);
6572 if (!DC->isTypeLegal(VT))
6573 return 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006574
Chris Lattner2392ae72010-04-15 04:48:01 +00006575 // Okay, we can do this! Replace the 'St' store with a store of IVal that is
6576 // shifted by ByteShift and truncated down to NumBytes.
6577 if (ByteShift)
6578 IVal = DAG.getNode(ISD::SRL, IVal->getDebugLoc(), IVal.getValueType(), IVal,
Owen Anderson95771af2011-02-25 21:41:48 +00006579 DAG.getConstant(ByteShift*8,
6580 DC->getShiftAmountTy(IVal.getValueType())));
Chris Lattner2392ae72010-04-15 04:48:01 +00006581
6582 // Figure out the offset for the store and the alignment of the access.
6583 unsigned StOffset;
6584 unsigned NewAlign = St->getAlignment();
6585
6586 if (DAG.getTargetLoweringInfo().isLittleEndian())
6587 StOffset = ByteShift;
6588 else
6589 StOffset = IVal.getValueType().getStoreSize() - ByteShift - NumBytes;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006590
Chris Lattner2392ae72010-04-15 04:48:01 +00006591 SDValue Ptr = St->getBasePtr();
6592 if (StOffset) {
6593 Ptr = DAG.getNode(ISD::ADD, IVal->getDebugLoc(), Ptr.getValueType(),
6594 Ptr, DAG.getConstant(StOffset, Ptr.getValueType()));
6595 NewAlign = MinAlign(NewAlign, StOffset);
6596 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006597
Chris Lattner2392ae72010-04-15 04:48:01 +00006598 // Truncate down to the new size.
6599 IVal = DAG.getNode(ISD::TRUNCATE, IVal->getDebugLoc(), VT, IVal);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006600
Chris Lattner2392ae72010-04-15 04:48:01 +00006601 ++OpsNarrowed;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006602 return DAG.getStore(St->getChain(), St->getDebugLoc(), IVal, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00006603 St->getPointerInfo().getWithOffset(StOffset),
Chris Lattner2392ae72010-04-15 04:48:01 +00006604 false, false, NewAlign).getNode();
6605}
6606
Evan Cheng8b944d32009-05-28 00:35:15 +00006607
6608/// ReduceLoadOpStoreWidth - Look for sequence of load / op / store where op is
6609/// one of 'or', 'xor', and 'and' of immediates. If 'op' is only touching some
6610/// of the loaded bits, try narrowing the load and store if it would end up
6611/// being a win for performance or code size.
6612SDValue DAGCombiner::ReduceLoadOpStoreWidth(SDNode *N) {
6613 StoreSDNode *ST = cast<StoreSDNode>(N);
Evan Chengcdcecc02009-05-28 18:41:02 +00006614 if (ST->isVolatile())
6615 return SDValue();
6616
Evan Cheng8b944d32009-05-28 00:35:15 +00006617 SDValue Chain = ST->getChain();
6618 SDValue Value = ST->getValue();
6619 SDValue Ptr = ST->getBasePtr();
Owen Andersone50ed302009-08-10 22:56:29 +00006620 EVT VT = Value.getValueType();
Evan Cheng8b944d32009-05-28 00:35:15 +00006621
6622 if (ST->isTruncatingStore() || VT.isVector() || !Value.hasOneUse())
Evan Chengcdcecc02009-05-28 18:41:02 +00006623 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006624
6625 unsigned Opc = Value.getOpcode();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006626
Chris Lattner2392ae72010-04-15 04:48:01 +00006627 // If this is "store (or X, Y), P" and X is "(and (load P), cst)", where cst
6628 // is a byte mask indicating a consecutive number of bytes, check to see if
6629 // Y is known to provide just those bytes. If so, we try to replace the
6630 // load + replace + store sequence with a single (narrower) store, which makes
6631 // the load dead.
6632 if (Opc == ISD::OR) {
6633 std::pair<unsigned, unsigned> MaskedLoad;
6634 MaskedLoad = CheckForMaskedLoad(Value.getOperand(0), Ptr, Chain);
6635 if (MaskedLoad.first)
6636 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
6637 Value.getOperand(1), ST,this))
6638 return SDValue(NewST, 0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006639
Chris Lattner2392ae72010-04-15 04:48:01 +00006640 // Or is commutative, so try swapping X and Y.
6641 MaskedLoad = CheckForMaskedLoad(Value.getOperand(1), Ptr, Chain);
6642 if (MaskedLoad.first)
6643 if (SDNode *NewST = ShrinkLoadReplaceStoreWithStore(MaskedLoad,
6644 Value.getOperand(0), ST,this))
6645 return SDValue(NewST, 0);
6646 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006647
Evan Cheng8b944d32009-05-28 00:35:15 +00006648 if ((Opc != ISD::OR && Opc != ISD::XOR && Opc != ISD::AND) ||
6649 Value.getOperand(1).getOpcode() != ISD::Constant)
Evan Chengcdcecc02009-05-28 18:41:02 +00006650 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006651
6652 SDValue N0 = Value.getOperand(0);
Dan Gohman24bde5b2010-09-02 21:18:42 +00006653 if (ISD::isNormalLoad(N0.getNode()) && N0.hasOneUse() &&
6654 Chain == SDValue(N0.getNode(), 1)) {
Evan Cheng8b944d32009-05-28 00:35:15 +00006655 LoadSDNode *LD = cast<LoadSDNode>(N0);
Chris Lattnerfa459012010-09-21 16:08:50 +00006656 if (LD->getBasePtr() != Ptr ||
6657 LD->getPointerInfo().getAddrSpace() !=
6658 ST->getPointerInfo().getAddrSpace())
Evan Chengcdcecc02009-05-28 18:41:02 +00006659 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006660
6661 // Find the type to narrow it the load / op / store to.
6662 SDValue N1 = Value.getOperand(1);
6663 unsigned BitWidth = N1.getValueSizeInBits();
6664 APInt Imm = cast<ConstantSDNode>(N1)->getAPIntValue();
6665 if (Opc == ISD::AND)
6666 Imm ^= APInt::getAllOnesValue(BitWidth);
Evan Chengd3c76bb2009-05-28 23:52:18 +00006667 if (Imm == 0 || Imm.isAllOnesValue())
6668 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006669 unsigned ShAmt = Imm.countTrailingZeros();
6670 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1;
6671 unsigned NewBW = NextPowerOf2(MSB - ShAmt);
Owen Anderson23b9b192009-08-12 00:36:31 +00006672 EVT NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00006673 while (NewBW < BitWidth &&
Evan Chengcdcecc02009-05-28 18:41:02 +00006674 !(TLI.isOperationLegalOrCustom(Opc, NewVT) &&
Evan Cheng8b944d32009-05-28 00:35:15 +00006675 TLI.isNarrowingProfitable(VT, NewVT))) {
6676 NewBW = NextPowerOf2(NewBW);
Owen Anderson23b9b192009-08-12 00:36:31 +00006677 NewVT = EVT::getIntegerVT(*DAG.getContext(), NewBW);
Evan Cheng8b944d32009-05-28 00:35:15 +00006678 }
Evan Chengcdcecc02009-05-28 18:41:02 +00006679 if (NewBW >= BitWidth)
6680 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006681
6682 // If the lsb changed does not start at the type bitwidth boundary,
6683 // start at the previous one.
6684 if (ShAmt % NewBW)
6685 ShAmt = (((ShAmt + NewBW - 1) / NewBW) * NewBW) - NewBW;
6686 APInt Mask = APInt::getBitsSet(BitWidth, ShAmt, ShAmt + NewBW);
6687 if ((Imm & Mask) == Imm) {
6688 APInt NewImm = (Imm & Mask).lshr(ShAmt).trunc(NewBW);
6689 if (Opc == ISD::AND)
6690 NewImm ^= APInt::getAllOnesValue(NewBW);
6691 uint64_t PtrOff = ShAmt / 8;
6692 // For big endian targets, we need to adjust the offset to the pointer to
6693 // load the correct bytes.
6694 if (TLI.isBigEndian())
Evan Chengcdcecc02009-05-28 18:41:02 +00006695 PtrOff = (BitWidth + 7 - NewBW) / 8 - PtrOff;
Evan Cheng8b944d32009-05-28 00:35:15 +00006696
6697 unsigned NewAlign = MinAlign(LD->getAlignment(), PtrOff);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006698 Type *NewVTTy = NewVT.getTypeForEVT(*DAG.getContext());
Chris Lattner2392ae72010-04-15 04:48:01 +00006699 if (NewAlign < TLI.getTargetData()->getABITypeAlignment(NewVTTy))
Evan Chengcdcecc02009-05-28 18:41:02 +00006700 return SDValue();
6701
Evan Cheng8b944d32009-05-28 00:35:15 +00006702 SDValue NewPtr = DAG.getNode(ISD::ADD, LD->getDebugLoc(),
6703 Ptr.getValueType(), Ptr,
6704 DAG.getConstant(PtrOff, Ptr.getValueType()));
6705 SDValue NewLD = DAG.getLoad(NewVT, N0.getDebugLoc(),
6706 LD->getChain(), NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00006707 LD->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00006708 LD->isVolatile(), LD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006709 LD->isInvariant(), NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00006710 SDValue NewVal = DAG.getNode(Opc, Value.getDebugLoc(), NewVT, NewLD,
6711 DAG.getConstant(NewImm, NewVT));
6712 SDValue NewST = DAG.getStore(Chain, N->getDebugLoc(),
6713 NewVal, NewPtr,
Chris Lattnerfa459012010-09-21 16:08:50 +00006714 ST->getPointerInfo().getWithOffset(PtrOff),
David Greene1e559442010-02-15 17:00:31 +00006715 false, false, NewAlign);
Evan Cheng8b944d32009-05-28 00:35:15 +00006716
6717 AddToWorkList(NewPtr.getNode());
6718 AddToWorkList(NewLD.getNode());
6719 AddToWorkList(NewVal.getNode());
6720 WorkListRemover DeadNodes(*this);
6721 DAG.ReplaceAllUsesOfValueWith(N0.getValue(1), NewLD.getValue(1),
6722 &DeadNodes);
6723 ++OpsNarrowed;
6724 return NewST;
6725 }
6726 }
6727
Evan Chengcdcecc02009-05-28 18:41:02 +00006728 return SDValue();
Evan Cheng8b944d32009-05-28 00:35:15 +00006729}
6730
Evan Cheng31959b12011-02-02 01:06:55 +00006731/// TransformFPLoadStorePair - For a given floating point load / store pair,
6732/// if the load value isn't used by any other operations, then consider
6733/// transforming the pair to integer load / store operations if the target
6734/// deems the transformation profitable.
6735SDValue DAGCombiner::TransformFPLoadStorePair(SDNode *N) {
6736 StoreSDNode *ST = cast<StoreSDNode>(N);
6737 SDValue Chain = ST->getChain();
6738 SDValue Value = ST->getValue();
6739 if (ISD::isNormalStore(ST) && ISD::isNormalLoad(Value.getNode()) &&
6740 Value.hasOneUse() &&
6741 Chain == SDValue(Value.getNode(), 1)) {
6742 LoadSDNode *LD = cast<LoadSDNode>(Value);
6743 EVT VT = LD->getMemoryVT();
6744 if (!VT.isFloatingPoint() ||
6745 VT != ST->getMemoryVT() ||
6746 LD->isNonTemporal() ||
6747 ST->isNonTemporal() ||
6748 LD->getPointerInfo().getAddrSpace() != 0 ||
6749 ST->getPointerInfo().getAddrSpace() != 0)
6750 return SDValue();
6751
6752 EVT IntVT = EVT::getIntegerVT(*DAG.getContext(), VT.getSizeInBits());
6753 if (!TLI.isOperationLegal(ISD::LOAD, IntVT) ||
6754 !TLI.isOperationLegal(ISD::STORE, IntVT) ||
6755 !TLI.isDesirableToTransformToIntegerOp(ISD::LOAD, VT) ||
6756 !TLI.isDesirableToTransformToIntegerOp(ISD::STORE, VT))
6757 return SDValue();
6758
6759 unsigned LDAlign = LD->getAlignment();
6760 unsigned STAlign = ST->getAlignment();
Chris Lattnerdb125cf2011-07-18 04:54:35 +00006761 Type *IntVTTy = IntVT.getTypeForEVT(*DAG.getContext());
Evan Cheng31959b12011-02-02 01:06:55 +00006762 unsigned ABIAlign = TLI.getTargetData()->getABITypeAlignment(IntVTTy);
6763 if (LDAlign < ABIAlign || STAlign < ABIAlign)
6764 return SDValue();
6765
6766 SDValue NewLD = DAG.getLoad(IntVT, Value.getDebugLoc(),
6767 LD->getChain(), LD->getBasePtr(),
6768 LD->getPointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00006769 false, false, false, LDAlign);
Evan Cheng31959b12011-02-02 01:06:55 +00006770
6771 SDValue NewST = DAG.getStore(NewLD.getValue(1), N->getDebugLoc(),
6772 NewLD, ST->getBasePtr(),
6773 ST->getPointerInfo(),
6774 false, false, STAlign);
6775
6776 AddToWorkList(NewLD.getNode());
6777 AddToWorkList(NewST.getNode());
6778 WorkListRemover DeadNodes(*this);
6779 DAG.ReplaceAllUsesOfValueWith(Value.getValue(1), NewLD.getValue(1),
6780 &DeadNodes);
6781 ++LdStFP2Int;
6782 return NewST;
6783 }
6784
6785 return SDValue();
6786}
6787
Dan Gohman475871a2008-07-27 21:46:04 +00006788SDValue DAGCombiner::visitSTORE(SDNode *N) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00006789 StoreSDNode *ST = cast<StoreSDNode>(N);
Dan Gohman475871a2008-07-27 21:46:04 +00006790 SDValue Chain = ST->getChain();
6791 SDValue Value = ST->getValue();
6792 SDValue Ptr = ST->getBasePtr();
Scott Michelfdc40a02009-02-17 22:15:04 +00006793
Evan Cheng59d5b682007-05-07 21:27:48 +00006794 // If this is a store of a bit convert, store the input value if the
Evan Cheng2c4f9432007-05-09 21:49:47 +00006795 // resultant store does not need a higher alignment than the original.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006796 if (Value.getOpcode() == ISD::BITCAST && !ST->isTruncatingStore() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00006797 ST->isUnindexed()) {
Dan Gohman1ba519b2009-02-20 23:29:13 +00006798 unsigned OrigAlign = ST->getAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00006799 EVT SVT = Value.getOperand(0).getValueType();
Dan Gohman1ba519b2009-02-20 23:29:13 +00006800 unsigned Align = TLI.getTargetData()->
Owen Anderson23b9b192009-08-12 00:36:31 +00006801 getABITypeAlignment(SVT.getTypeForEVT(*DAG.getContext()));
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006802 if (Align <= OrigAlign &&
Duncan Sands25cf2272008-11-24 14:53:14 +00006803 ((!LegalOperations && !ST->isVolatile()) ||
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006804 TLI.isOperationLegalOrCustom(ISD::STORE, SVT)))
Bill Wendlingc144a572009-01-30 23:36:47 +00006805 return DAG.getStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattner6229d0a2010-09-21 18:41:36 +00006806 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00006807 ST->isNonTemporal(), OrigAlign);
Jim Laskey279f0532006-09-25 16:29:54 +00006808 }
Owen Andersona34d9362011-04-14 17:30:49 +00006809
Chris Lattnerb3452ea2011-04-09 02:32:02 +00006810 // Turn 'store undef, Ptr' -> nothing.
6811 if (Value.getOpcode() == ISD::UNDEF && ST->isUnindexed())
6812 return Chain;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006813
Nate Begeman2cbba892006-12-11 02:23:46 +00006814 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
Nate Begeman2cbba892006-12-11 02:23:46 +00006815 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Value)) {
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006816 // NOTE: If the original store is volatile, this transform must not increase
6817 // the number of stores. For example, on x86-32 an f64 can be stored in one
6818 // processor operation but an i64 (which is not legal) requires two. So the
6819 // transform should not be done in this case.
Evan Cheng25ece662006-12-11 17:25:19 +00006820 if (Value.getOpcode() != ISD::TargetConstantFP) {
Dan Gohman475871a2008-07-27 21:46:04 +00006821 SDValue Tmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00006822 switch (CFP->getValueType(0).getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00006823 default: llvm_unreachable("Unknown FP type");
Owen Anderson825b72b2009-08-11 20:47:22 +00006824 case MVT::f80: // We don't do this for these yet.
6825 case MVT::f128:
6826 case MVT::ppcf128:
Dale Johannesenc7b21d52007-09-18 18:36:59 +00006827 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00006828 case MVT::f32:
Chris Lattner2392ae72010-04-15 04:48:01 +00006829 if ((isTypeLegal(MVT::i32) && !LegalOperations && !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006830 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00006831 Tmp = DAG.getConstant((uint32_t)CFP->getValueAPF().
Owen Anderson825b72b2009-08-11 20:47:22 +00006832 bitcastToAPInt().getZExtValue(), MVT::i32);
Bill Wendlingc144a572009-01-30 23:36:47 +00006833 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00006834 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00006835 ST->isNonTemporal(), ST->getAlignment());
Chris Lattner62be1a72006-12-12 04:16:14 +00006836 }
6837 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00006838 case MVT::f64:
Chris Lattner2392ae72010-04-15 04:48:01 +00006839 if ((TLI.isTypeLegal(MVT::i64) && !LegalOperations &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006840 !ST->isVolatile()) ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006841 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i64)) {
Dale Johannesen7111b022008-10-09 18:53:47 +00006842 Tmp = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Owen Anderson825b72b2009-08-11 20:47:22 +00006843 getZExtValue(), MVT::i64);
Bill Wendlingc144a572009-01-30 23:36:47 +00006844 return DAG.getStore(Chain, N->getDebugLoc(), Tmp,
Chris Lattner6229d0a2010-09-21 18:41:36 +00006845 Ptr, ST->getPointerInfo(), ST->isVolatile(),
David Greene1e559442010-02-15 17:00:31 +00006846 ST->isNonTemporal(), ST->getAlignment());
Chris Lattnerb3452ea2011-04-09 02:32:02 +00006847 }
Owen Andersona34d9362011-04-14 17:30:49 +00006848
Chris Lattnerb3452ea2011-04-09 02:32:02 +00006849 if (!ST->isVolatile() &&
6850 TLI.isOperationLegalOrCustom(ISD::STORE, MVT::i32)) {
Duncan Sandsdc846502007-10-28 12:59:45 +00006851 // Many FP stores are not made apparent until after legalize, e.g. for
Chris Lattner62be1a72006-12-12 04:16:14 +00006852 // argument passing. Since this is so common, custom legalize the
6853 // 64-bit integer store into two 32-bit stores.
Dale Johannesen7111b022008-10-09 18:53:47 +00006854 uint64_t Val = CFP->getValueAPF().bitcastToAPInt().getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00006855 SDValue Lo = DAG.getConstant(Val & 0xFFFFFFFF, MVT::i32);
6856 SDValue Hi = DAG.getConstant(Val >> 32, MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00006857 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner62be1a72006-12-12 04:16:14 +00006858
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006859 unsigned Alignment = ST->getAlignment();
6860 bool isVolatile = ST->isVolatile();
David Greene1e559442010-02-15 17:00:31 +00006861 bool isNonTemporal = ST->isNonTemporal();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006862
Bill Wendlingc144a572009-01-30 23:36:47 +00006863 SDValue St0 = DAG.getStore(Chain, ST->getDebugLoc(), Lo,
Chris Lattner6229d0a2010-09-21 18:41:36 +00006864 Ptr, ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00006865 isVolatile, isNonTemporal,
6866 ST->getAlignment());
Bill Wendlingc144a572009-01-30 23:36:47 +00006867 Ptr = DAG.getNode(ISD::ADD, N->getDebugLoc(), Ptr.getValueType(), Ptr,
Chris Lattner62be1a72006-12-12 04:16:14 +00006868 DAG.getConstant(4, Ptr.getValueType()));
Duncan Sandsdc846502007-10-28 12:59:45 +00006869 Alignment = MinAlign(Alignment, 4U);
Bill Wendlingc144a572009-01-30 23:36:47 +00006870 SDValue St1 = DAG.getStore(Chain, ST->getDebugLoc(), Hi,
Chris Lattner6229d0a2010-09-21 18:41:36 +00006871 Ptr, ST->getPointerInfo().getWithOffset(4),
6872 isVolatile, isNonTemporal,
David Greene1e559442010-02-15 17:00:31 +00006873 Alignment);
Owen Anderson825b72b2009-08-11 20:47:22 +00006874 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Bill Wendlingc144a572009-01-30 23:36:47 +00006875 St0, St1);
Chris Lattner62be1a72006-12-12 04:16:14 +00006876 }
Bill Wendlingc144a572009-01-30 23:36:47 +00006877
Chris Lattner62be1a72006-12-12 04:16:14 +00006878 break;
Evan Cheng25ece662006-12-11 17:25:19 +00006879 }
Nate Begeman2cbba892006-12-11 02:23:46 +00006880 }
Nate Begeman2cbba892006-12-11 02:23:46 +00006881 }
6882
Evan Cheng255f20f2010-04-01 06:04:33 +00006883 // Try to infer better alignment information than the store already has.
6884 if (OptLevel != CodeGenOpt::None && ST->isUnindexed()) {
Evan Chenged1c0c72011-11-28 22:37:34 +00006885 if (unsigned Align = DAG.InferPtrAlignment(Ptr)) {
6886 if (Align > ST->getAlignment())
6887 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value,
6888 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
6889 ST->isVolatile(), ST->isNonTemporal(), Align);
Evan Cheng255f20f2010-04-01 06:04:33 +00006890 }
6891 }
6892
Evan Cheng31959b12011-02-02 01:06:55 +00006893 // Try transforming a pair floating point load / store ops to integer
6894 // load / store ops.
6895 SDValue NewST = TransformFPLoadStorePair(N);
6896 if (NewST.getNode())
6897 return NewST;
6898
Scott Michelfdc40a02009-02-17 22:15:04 +00006899 if (CombinerAA) {
Jim Laskey279f0532006-09-25 16:29:54 +00006900 // Walk up chain skipping non-aliasing memory nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00006901 SDValue BetterChain = FindBetterChain(N, Chain);
Scott Michelfdc40a02009-02-17 22:15:04 +00006902
Jim Laskey6ff23e52006-10-04 16:53:27 +00006903 // If there is a better chain.
Jim Laskey279f0532006-09-25 16:29:54 +00006904 if (Chain != BetterChain) {
Dan Gohman475871a2008-07-27 21:46:04 +00006905 SDValue ReplStore;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00006906
6907 // Replace the chain to avoid dependency.
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00006908 if (ST->isTruncatingStore()) {
Bill Wendlingc144a572009-01-30 23:36:47 +00006909 ReplStore = DAG.getTruncStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00006910 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00006911 ST->getMemoryVT(), ST->isVolatile(),
6912 ST->isNonTemporal(), ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00006913 } else {
Bill Wendlingc144a572009-01-30 23:36:47 +00006914 ReplStore = DAG.getStore(BetterChain, N->getDebugLoc(), Value, Ptr,
Chris Lattner6229d0a2010-09-21 18:41:36 +00006915 ST->getPointerInfo(),
David Greene1e559442010-02-15 17:00:31 +00006916 ST->isVolatile(), ST->isNonTemporal(),
6917 ST->getAlignment());
Jim Laskeyd4edf2c2006-10-14 12:14:27 +00006918 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006919
Jim Laskey279f0532006-09-25 16:29:54 +00006920 // Create token to keep both nodes around.
Bill Wendlingc144a572009-01-30 23:36:47 +00006921 SDValue Token = DAG.getNode(ISD::TokenFactor, N->getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +00006922 MVT::Other, Chain, ReplStore);
Bill Wendlingc144a572009-01-30 23:36:47 +00006923
Nate Begemanb6aef5c2009-09-15 00:18:30 +00006924 // Make sure the new and old chains are cleaned up.
6925 AddToWorkList(Token.getNode());
6926
Jim Laskey274062c2006-10-13 23:32:28 +00006927 // Don't add users to work list.
6928 return CombineTo(N, Token, false);
Jim Laskey279f0532006-09-25 16:29:54 +00006929 }
Jim Laskeyd1aed7a2006-09-21 16:28:59 +00006930 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006931
Evan Cheng33dbedc2006-11-05 09:31:14 +00006932 // Try transforming N to an indexed store.
Evan Chengbbd6f6e2006-11-07 09:03:05 +00006933 if (CombineToPreIndexedLoadStore(N) || CombineToPostIndexedLoadStore(N))
Dan Gohman475871a2008-07-27 21:46:04 +00006934 return SDValue(N, 0);
Evan Cheng33dbedc2006-11-05 09:31:14 +00006935
Chris Lattner3c872852007-12-29 06:26:16 +00006936 // FIXME: is there such a thing as a truncating indexed store?
Chris Lattnerddf89562008-01-17 19:59:44 +00006937 if (ST->isTruncatingStore() && ST->isUnindexed() &&
Nadav Rotembaff46f2011-06-15 11:19:12 +00006938 Value.getValueType().isInteger()) {
Chris Lattner2b4c2792007-10-13 06:35:54 +00006939 // See if we can simplify the input to this truncstore with knowledge that
6940 // only the low bits are being used. For example:
6941 // "truncstore (or (shl x, 8), y), i8" -> "truncstore y, i8"
Scott Michelfdc40a02009-02-17 22:15:04 +00006942 SDValue Shorter =
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006943 GetDemandedBits(Value,
Nadav Rotembaff46f2011-06-15 11:19:12 +00006944 APInt::getLowBitsSet(
6945 Value.getValueType().getScalarType().getSizeInBits(),
6946 ST->getMemoryVT().getScalarType().getSizeInBits()));
Gabor Greifba36cb52008-08-28 21:40:38 +00006947 AddToWorkList(Value.getNode());
6948 if (Shorter.getNode())
Bill Wendlingc144a572009-01-30 23:36:47 +00006949 return DAG.getTruncStore(Chain, N->getDebugLoc(), Shorter,
Chris Lattnerda2d8e12010-09-21 17:42:31 +00006950 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00006951 ST->isVolatile(), ST->isNonTemporal(),
6952 ST->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00006953
Chris Lattnere33544c2007-10-13 06:58:48 +00006954 // Otherwise, see if we can simplify the operation with
6955 // SimplifyDemandedBits, which only works if the value has a single use.
Dan Gohman7b8d4a92008-02-27 00:25:32 +00006956 if (SimplifyDemandedBits(Value,
Eric Christopher503a64d2010-12-09 04:48:06 +00006957 APInt::getLowBitsSet(
6958 Value.getValueType().getScalarType().getSizeInBits(),
6959 ST->getMemoryVT().getScalarType().getSizeInBits())))
Dan Gohman475871a2008-07-27 21:46:04 +00006960 return SDValue(N, 0);
Chris Lattner2b4c2792007-10-13 06:35:54 +00006961 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006962
Chris Lattner3c872852007-12-29 06:26:16 +00006963 // If this is a load followed by a store to the same location, then the store
6964 // is dead/noop.
6965 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Value)) {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006966 if (Ld->getBasePtr() == Ptr && ST->getMemoryVT() == Ld->getMemoryVT() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00006967 ST->isUnindexed() && !ST->isVolatile() &&
Chris Lattner07649d92008-01-08 23:08:06 +00006968 // There can't be any side effects between the load and store, such as
6969 // a call or store.
Dan Gohman475871a2008-07-27 21:46:04 +00006970 Chain.reachesChainWithoutSideEffects(SDValue(Ld, 1))) {
Chris Lattner3c872852007-12-29 06:26:16 +00006971 // The store is dead, remove it.
6972 return Chain;
6973 }
6974 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006975
Chris Lattnerddf89562008-01-17 19:59:44 +00006976 // If this is an FP_ROUND or TRUNC followed by a store, fold this into a
6977 // truncating store. We can do this even if this is already a truncstore.
6978 if ((Value.getOpcode() == ISD::FP_ROUND || Value.getOpcode() == ISD::TRUNCATE)
Gabor Greifba36cb52008-08-28 21:40:38 +00006979 && Value.getNode()->hasOneUse() && ST->isUnindexed() &&
Chris Lattnerddf89562008-01-17 19:59:44 +00006980 TLI.isTruncStoreLegal(Value.getOperand(0).getValueType(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00006981 ST->getMemoryVT())) {
Bill Wendlingc144a572009-01-30 23:36:47 +00006982 return DAG.getTruncStore(Chain, N->getDebugLoc(), Value.getOperand(0),
Chris Lattnerda2d8e12010-09-21 17:42:31 +00006983 Ptr, ST->getPointerInfo(), ST->getMemoryVT(),
David Greene1e559442010-02-15 17:00:31 +00006984 ST->isVolatile(), ST->isNonTemporal(),
6985 ST->getAlignment());
Chris Lattnerddf89562008-01-17 19:59:44 +00006986 }
Duncan Sandsd4b9c172008-06-13 19:07:40 +00006987
Evan Cheng8b944d32009-05-28 00:35:15 +00006988 return ReduceLoadOpStoreWidth(N);
Chris Lattner87514ca2005-10-10 22:31:19 +00006989}
6990
Dan Gohman475871a2008-07-27 21:46:04 +00006991SDValue DAGCombiner::visitINSERT_VECTOR_ELT(SDNode *N) {
6992 SDValue InVec = N->getOperand(0);
6993 SDValue InVal = N->getOperand(1);
6994 SDValue EltNo = N->getOperand(2);
Eli Friedman9db817f2011-09-09 21:04:06 +00006995 DebugLoc dl = N->getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00006996
Bob Wilson492fd452010-05-19 23:42:58 +00006997 // If the inserted element is an UNDEF, just use the input vector.
6998 if (InVal.getOpcode() == ISD::UNDEF)
6999 return InVec;
7000
Nadav Rotem609d54e2011-02-12 14:40:33 +00007001 EVT VT = InVec.getValueType();
7002
Owen Anderson95771af2011-02-25 21:41:48 +00007003 // If we can't generate a legal BUILD_VECTOR, exit
Nadav Rotem609d54e2011-02-12 14:40:33 +00007004 if (LegalOperations && !TLI.isOperationLegal(ISD::BUILD_VECTOR, VT))
7005 return SDValue();
7006
Eli Friedman9db817f2011-09-09 21:04:06 +00007007 // Check that we know which element is being inserted
7008 if (!isa<ConstantSDNode>(EltNo))
7009 return SDValue();
7010 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007011
Eli Friedman9db817f2011-09-09 21:04:06 +00007012 // Check that the operand is a BUILD_VECTOR (or UNDEF, which can essentially
7013 // be converted to a BUILD_VECTOR). Fill in the Ops vector with the
7014 // vector elements.
7015 SmallVector<SDValue, 8> Ops;
7016 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
7017 Ops.append(InVec.getNode()->op_begin(),
7018 InVec.getNode()->op_end());
7019 } else if (InVec.getOpcode() == ISD::UNDEF) {
7020 unsigned NElts = VT.getVectorNumElements();
7021 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
7022 } else {
7023 return SDValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00007024 }
Eli Friedman9db817f2011-09-09 21:04:06 +00007025
7026 // Insert the element
7027 if (Elt < Ops.size()) {
7028 // All the operands of BUILD_VECTOR must have the same type;
7029 // we enforce that here.
7030 EVT OpVT = Ops[0].getValueType();
7031 if (InVal.getValueType() != OpVT)
7032 InVal = OpVT.bitsGT(InVal.getValueType()) ?
7033 DAG.getNode(ISD::ANY_EXTEND, dl, OpVT, InVal) :
7034 DAG.getNode(ISD::TRUNCATE, dl, OpVT, InVal);
7035 Ops[Elt] = InVal;
7036 }
7037
7038 // Return the new vector
7039 return DAG.getNode(ISD::BUILD_VECTOR, dl,
7040 VT, &Ops[0], Ops.size());
Chris Lattnerca242442006-03-19 01:27:56 +00007041}
7042
Dan Gohman475871a2008-07-27 21:46:04 +00007043SDValue DAGCombiner::visitEXTRACT_VECTOR_ELT(SDNode *N) {
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007044 // (vextract (scalar_to_vector val, 0) -> val
7045 SDValue InVec = N->getOperand(0);
Nadav Rotemba05c912012-01-17 21:44:01 +00007046 EVT VT = InVec.getValueType();
7047 EVT NVT = N->getValueType(0);
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007048
Duncan Sandsc356f332011-05-09 08:03:33 +00007049 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
7050 // Check if the result type doesn't match the inserted element type. A
7051 // SCALAR_TO_VECTOR may truncate the inserted element and the
7052 // EXTRACT_VECTOR_ELT may widen the extracted vector.
7053 SDValue InOp = InVec.getOperand(0);
Duncan Sandsc356f332011-05-09 08:03:33 +00007054 if (InOp.getValueType() != NVT) {
7055 assert(InOp.getValueType().isInteger() && NVT.isInteger());
7056 return DAG.getSExtOrTrunc(InOp, InVec.getDebugLoc(), NVT);
7057 }
7058 return InOp;
7059 }
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007060
Nadav Rotemba05c912012-01-17 21:44:01 +00007061 SDValue EltNo = N->getOperand(1);
7062 bool ConstEltNo = isa<ConstantSDNode>(EltNo);
7063
7064 // Transform: (EXTRACT_VECTOR_ELT( VECTOR_SHUFFLE )) -> EXTRACT_VECTOR_ELT.
7065 // We only perform this optimization before the op legalization phase because
7066 // we may introduce new vector instructions which are not backed by TD patterns.
7067 // For example on AVX, extracting elements from a wide vector without using
7068 // extract_subvector.
7069 if (InVec.getOpcode() == ISD::VECTOR_SHUFFLE
7070 && ConstEltNo && !LegalOperations) {
7071 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
7072 int NumElem = VT.getVectorNumElements();
7073 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(InVec);
7074 // Find the new index to extract from.
7075 int OrigElt = SVOp->getMaskElt(Elt);
7076
7077 // Extracting an undef index is undef.
7078 if (OrigElt == -1)
7079 return DAG.getUNDEF(NVT);
7080
7081 // Select the right vector half to extract from.
7082 if (OrigElt < NumElem) {
7083 InVec = InVec->getOperand(0);
7084 } else {
7085 InVec = InVec->getOperand(1);
7086 OrigElt -= NumElem;
7087 }
7088
7089 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, N->getDebugLoc(), NVT,
7090 InVec, DAG.getConstant(OrigElt, MVT::i32));
7091 }
7092
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007093 // Perform only after legalization to ensure build_vector / vector_shuffle
7094 // optimizations have already been done.
Duncan Sands25cf2272008-11-24 14:53:14 +00007095 if (!LegalOperations) return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007096
Mon P Wang7ac9cdf2009-01-17 00:07:25 +00007097 // (vextract (v4f32 load $addr), c) -> (f32 load $addr+c*size)
7098 // (vextract (v4f32 s2v (f32 load $addr)), c) -> (f32 load $addr+c*size)
7099 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), 0) -> (f32 load $addr)
Evan Cheng513da432007-10-06 08:19:55 +00007100
Nadav Rotemba05c912012-01-17 21:44:01 +00007101 if (ConstEltNo) {
Eric Christophercaebdd42010-11-03 09:36:40 +00007102 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
Evan Cheng513da432007-10-06 08:19:55 +00007103 bool NewLoad = false;
Mon P Wanga60b5232008-12-11 00:26:16 +00007104 bool BCNumEltsChanged = false;
Owen Andersone50ed302009-08-10 22:56:29 +00007105 EVT ExtVT = VT.getVectorElementType();
7106 EVT LVT = ExtVT;
Bill Wendlingc144a572009-01-30 23:36:47 +00007107
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007108 if (InVec.getOpcode() == ISD::BITCAST) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007109 // Don't duplicate a load with other uses.
7110 if (!InVec.hasOneUse())
7111 return SDValue();
7112
Owen Andersone50ed302009-08-10 22:56:29 +00007113 EVT BCVT = InVec.getOperand(0).getValueType();
7114 if (!BCVT.isVector() || ExtVT.bitsGT(BCVT.getVectorElementType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007115 return SDValue();
Mon P Wanga60b5232008-12-11 00:26:16 +00007116 if (VT.getVectorNumElements() != BCVT.getVectorNumElements())
7117 BCNumEltsChanged = true;
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007118 InVec = InVec.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +00007119 ExtVT = BCVT.getVectorElementType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007120 NewLoad = true;
7121 }
Evan Cheng513da432007-10-06 08:19:55 +00007122
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007123 LoadSDNode *LN0 = NULL;
Nate Begeman5a5ca152009-04-29 05:20:52 +00007124 const ShuffleVectorSDNode *SVN = NULL;
Bill Wendlingc144a572009-01-30 23:36:47 +00007125 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007126 LN0 = cast<LoadSDNode>(InVec);
Bill Wendlingc144a572009-01-30 23:36:47 +00007127 } else if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Owen Andersone50ed302009-08-10 22:56:29 +00007128 InVec.getOperand(0).getValueType() == ExtVT &&
Bill Wendlingc144a572009-01-30 23:36:47 +00007129 ISD::isNormalLoad(InVec.getOperand(0).getNode())) {
Eli Friedmand6e25602011-12-26 22:49:32 +00007130 // Don't duplicate a load with other uses.
7131 if (!InVec.hasOneUse())
7132 return SDValue();
7133
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007134 LN0 = cast<LoadSDNode>(InVec.getOperand(0));
Nate Begeman5a5ca152009-04-29 05:20:52 +00007135 } else if ((SVN = dyn_cast<ShuffleVectorSDNode>(InVec))) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007136 // (vextract (vector_shuffle (load $addr), v2, <1, u, u, u>), 1)
7137 // =>
7138 // (load $addr+1*size)
Scott Michelfdc40a02009-02-17 22:15:04 +00007139
Eli Friedmand6e25602011-12-26 22:49:32 +00007140 // Don't duplicate a load with other uses.
7141 if (!InVec.hasOneUse())
7142 return SDValue();
7143
Mon P Wanga60b5232008-12-11 00:26:16 +00007144 // If the bit convert changed the number of elements, it is unsafe
7145 // to examine the mask.
7146 if (BCNumEltsChanged)
7147 return SDValue();
Nate Begeman5a5ca152009-04-29 05:20:52 +00007148
7149 // Select the input vector, guarding against out of range extract vector.
7150 unsigned NumElems = VT.getVectorNumElements();
Eric Christophercaebdd42010-11-03 09:36:40 +00007151 int Idx = (Elt > (int)NumElems) ? -1 : SVN->getMaskElt(Elt);
Nate Begeman5a5ca152009-04-29 05:20:52 +00007152 InVec = (Idx < (int)NumElems) ? InVec.getOperand(0) : InVec.getOperand(1);
7153
Eli Friedmand6e25602011-12-26 22:49:32 +00007154 if (InVec.getOpcode() == ISD::BITCAST) {
7155 // Don't duplicate a load with other uses.
7156 if (!InVec.hasOneUse())
7157 return SDValue();
7158
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007159 InVec = InVec.getOperand(0);
Eli Friedmand6e25602011-12-26 22:49:32 +00007160 }
Gabor Greifba36cb52008-08-28 21:40:38 +00007161 if (ISD::isNormalLoad(InVec.getNode())) {
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007162 LN0 = cast<LoadSDNode>(InVec);
Ted Kremenekd0e88f32010-04-08 18:49:30 +00007163 Elt = (Idx < (int)NumElems) ? Idx : Idx - (int)NumElems;
Evan Cheng513da432007-10-06 08:19:55 +00007164 }
7165 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007166
Eli Friedmand6e25602011-12-26 22:49:32 +00007167 // Make sure we found a non-volatile load and the extractelement is
7168 // the only use.
Nadav Rotem42febc62011-05-11 14:40:50 +00007169 if (!LN0 || !LN0->hasNUsesOfValue(1,0) || LN0->isVolatile())
Dan Gohman475871a2008-07-27 21:46:04 +00007170 return SDValue();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007171
Eric Christopherd81f17a2010-11-03 20:44:42 +00007172 // If Idx was -1 above, Elt is going to be -1, so just return undef.
7173 if (Elt == -1)
Eli Friedmaned4b4272011-07-25 22:25:42 +00007174 return DAG.getUNDEF(LVT);
Eric Christopherd81f17a2010-11-03 20:44:42 +00007175
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007176 unsigned Align = LN0->getAlignment();
7177 if (NewLoad) {
7178 // Check the resultant load doesn't need a higher alignment than the
7179 // original load.
Bill Wendlingc144a572009-01-30 23:36:47 +00007180 unsigned NewAlign =
Eric Christopher503a64d2010-12-09 04:48:06 +00007181 TLI.getTargetData()
7182 ->getABITypeAlignment(LVT.getTypeForEVT(*DAG.getContext()));
Bill Wendlingc144a572009-01-30 23:36:47 +00007183
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007184 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, LVT))
Dan Gohman475871a2008-07-27 21:46:04 +00007185 return SDValue();
Bill Wendlingc144a572009-01-30 23:36:47 +00007186
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007187 Align = NewAlign;
7188 }
7189
Dan Gohman475871a2008-07-27 21:46:04 +00007190 SDValue NewPtr = LN0->getBasePtr();
Chris Lattnerfa459012010-09-21 16:08:50 +00007191 unsigned PtrOff = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007192
Eric Christopherd81f17a2010-11-03 20:44:42 +00007193 if (Elt) {
Chris Lattnerfa459012010-09-21 16:08:50 +00007194 PtrOff = LVT.getSizeInBits() * Elt / 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007195 EVT PtrType = NewPtr.getValueType();
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007196 if (TLI.isBigEndian())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007197 PtrOff = VT.getSizeInBits() / 8 - PtrOff;
Bill Wendlingc144a572009-01-30 23:36:47 +00007198 NewPtr = DAG.getNode(ISD::ADD, N->getDebugLoc(), PtrType, NewPtr,
Evan Cheng77f0b7a2008-05-13 08:35:03 +00007199 DAG.getConstant(PtrOff, PtrType));
7200 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007201
Eli Friedman4db4add2011-11-16 23:50:22 +00007202 // The replacement we need to do here is a little tricky: we need to
7203 // replace an extractelement of a load with a load.
7204 // Use ReplaceAllUsesOfValuesWith to do the replacement.
Eli Friedmand6e25602011-12-26 22:49:32 +00007205 // Note that this replacement assumes that the extractvalue is the only
7206 // use of the load; that's okay because we don't want to perform this
7207 // transformation in other cases anyway.
Eli Friedman4db4add2011-11-16 23:50:22 +00007208 SDValue Load = DAG.getLoad(LVT, N->getDebugLoc(), LN0->getChain(), NewPtr,
7209 LN0->getPointerInfo().getWithOffset(PtrOff),
7210 LN0->isVolatile(), LN0->isNonTemporal(),
7211 LN0->isInvariant(), Align);
7212 WorkListRemover DeadNodes(*this);
7213 SDValue From[] = { SDValue(N, 0), SDValue(LN0,1) };
7214 SDValue To[] = { Load.getValue(0), Load.getValue(1) };
7215 DAG.ReplaceAllUsesOfValuesWith(From, To, 2, &DeadNodes);
7216 // Since we're explcitly calling ReplaceAllUses, add the new node to the
7217 // worklist explicitly as well.
7218 AddToWorkList(Load.getNode());
7219 // Make sure to revisit this node to clean it up; it will usually be dead.
7220 AddToWorkList(N);
7221 return SDValue(N, 0);
Evan Cheng513da432007-10-06 08:19:55 +00007222 }
Bill Wendlingc144a572009-01-30 23:36:47 +00007223
Dan Gohman475871a2008-07-27 21:46:04 +00007224 return SDValue();
Evan Cheng513da432007-10-06 08:19:55 +00007225}
Evan Cheng513da432007-10-06 08:19:55 +00007226
Dan Gohman475871a2008-07-27 21:46:04 +00007227SDValue DAGCombiner::visitBUILD_VECTOR(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007228 unsigned NumInScalars = N->getNumOperands();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007229 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007230 EVT VT = N->getValueType(0);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007231 // Check to see if this is a BUILD_VECTOR of a bunch of values
7232 // which come from any_extend or zero_extend nodes. If so, we can create
7233 // a new BUILD_VECTOR using bit-casts which may enable other BUILD_VECTOR
Nadav Rotemf47368b2011-10-31 20:08:25 +00007234 // optimizations. We do not handle sign-extend because we can't fill the sign
7235 // using shuffles.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007236 EVT SourceType = MVT::Other;
Craig Topperd3b58892012-01-17 09:09:48 +00007237 bool AllAnyExt = true;
7238 bool AllUndef = true;
7239 for (unsigned i = 0; i != NumInScalars; ++i) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007240 SDValue In = N->getOperand(i);
7241 // Ignore undef inputs.
7242 if (In.getOpcode() == ISD::UNDEF) continue;
Craig Topperd3b58892012-01-17 09:09:48 +00007243 AllUndef = false;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007244
7245 bool AnyExt = In.getOpcode() == ISD::ANY_EXTEND;
7246 bool ZeroExt = In.getOpcode() == ISD::ZERO_EXTEND;
7247
Nadav Rotemf47368b2011-10-31 20:08:25 +00007248 // Abort if the element is not an extension.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007249 if (!ZeroExt && !AnyExt) {
Nadav Rotemf47368b2011-10-31 20:08:25 +00007250 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007251 break;
7252 }
7253
7254 // The input is a ZeroExt or AnyExt. Check the original type.
7255 EVT InTy = In.getOperand(0).getValueType();
7256
7257 // Check that all of the widened source types are the same.
7258 if (SourceType == MVT::Other)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007259 // First time.
Nadav Rotemb00418a2011-10-29 21:23:04 +00007260 SourceType = InTy;
7261 else if (InTy != SourceType) {
7262 // Multiple income types. Abort.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007263 SourceType = MVT::Other;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007264 break;
7265 }
7266
7267 // Check if all of the extends are ANY_EXTENDs.
Craig Topperd3b58892012-01-17 09:09:48 +00007268 AllAnyExt &= AnyExt;
Nadav Rotemb00418a2011-10-29 21:23:04 +00007269 }
7270
Craig Topperd3b58892012-01-17 09:09:48 +00007271 if (AllUndef)
7272 return DAG.getUNDEF(VT);
Nadav Rotemf47368b2011-10-31 20:08:25 +00007273
7274 // In order to have valid types, all of the inputs must be extended from the
7275 // same source type and all of the inputs must be any or zero extend.
7276 // Scalar sizes must be a power of two.
7277 EVT OutScalarTy = N->getValueType(0).getScalarType();
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007278 bool ValidTypes = SourceType != MVT::Other &&
Nadav Rotemf47368b2011-10-31 20:08:25 +00007279 isPowerOf2_32(OutScalarTy.getSizeInBits()) &&
7280 isPowerOf2_32(SourceType.getSizeInBits());
7281
7282 // We perform this optimization post type-legalization because
7283 // the type-legalizer often scalarizes integer-promoted vectors.
7284 // Performing this optimization before may create bit-casts which
7285 // will be type-legalized to complex code sequences.
7286 // We perform this optimization only before the operation legalizer because we
7287 // may introduce illegal operations.
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007288 if ((Level == AfterLegalizeVectorOps || Level == AfterLegalizeTypes) &&
7289 ValidTypes) {
Nadav Rotemb00418a2011-10-29 21:23:04 +00007290 bool isLE = TLI.isLittleEndian();
Nadav Rotemf47368b2011-10-31 20:08:25 +00007291 unsigned ElemRatio = OutScalarTy.getSizeInBits()/SourceType.getSizeInBits();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007292 assert(ElemRatio > 1 && "Invalid element size ratio");
Craig Topperd3b58892012-01-17 09:09:48 +00007293 SDValue Filler = AllAnyExt ? DAG.getUNDEF(SourceType):
Nadav Rotemf47368b2011-10-31 20:08:25 +00007294 DAG.getConstant(0, SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007295
7296 unsigned NewBVElems = ElemRatio * N->getValueType(0).getVectorNumElements();
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007297 SmallVector<SDValue, 8> Ops(NewBVElems, Filler);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007298
7299 // Populate the new build_vector
7300 for (unsigned i=0; i < N->getNumOperands(); ++i) {
7301 SDValue Cast = N->getOperand(i);
Benjamin Kramer50bf86e2011-10-30 08:39:55 +00007302 assert((Cast.getOpcode() == ISD::ANY_EXTEND ||
7303 Cast.getOpcode() == ISD::ZERO_EXTEND ||
7304 Cast.getOpcode() == ISD::UNDEF) && "Invalid cast opcode");
Nadav Rotemb00418a2011-10-29 21:23:04 +00007305 SDValue In;
7306 if (Cast.getOpcode() == ISD::UNDEF)
Nadav Rotemf47368b2011-10-31 20:08:25 +00007307 In = DAG.getUNDEF(SourceType);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007308 else
7309 In = Cast->getOperand(0);
7310 unsigned Index = isLE ? (i * ElemRatio) :
7311 (i * ElemRatio + (ElemRatio - 1));
7312
7313 assert(Index < Ops.size() && "Invalid index");
7314 Ops[Index] = In;
7315 }
7316
7317 // The type of the new BUILD_VECTOR node.
Nadav Rotemf47368b2011-10-31 20:08:25 +00007318 EVT VecVT = EVT::getVectorVT(*DAG.getContext(), SourceType, NewBVElems);
Nadav Rotemb00418a2011-10-29 21:23:04 +00007319 assert(VecVT.getSizeInBits() == N->getValueType(0).getSizeInBits() &&
7320 "Invalid vector size");
Nadav Rotemf47368b2011-10-31 20:08:25 +00007321 // Check if the new vector type is legal.
7322 if (!isTypeLegal(VecVT)) return SDValue();
Nadav Rotemb00418a2011-10-29 21:23:04 +00007323
7324 // Make the new BUILD_VECTOR.
7325 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7326 VecVT, &Ops[0], Ops.size());
7327
7328 // Bitcast to the desired type.
7329 return DAG.getNode(ISD::BITCAST, dl, N->getValueType(0), BV);
7330 }
Chris Lattnerca242442006-03-19 01:27:56 +00007331
Dan Gohman7f321562007-06-25 16:23:39 +00007332 // Check to see if this is a BUILD_VECTOR of a bunch of EXTRACT_VECTOR_ELT
7333 // operations. If so, and if the EXTRACT_VECTOR_ELT vector inputs come from
7334 // at most two distinct vectors, turn this into a shuffle node.
Dan Gohman475871a2008-07-27 21:46:04 +00007335 SDValue VecIn1, VecIn2;
Chris Lattnerd7648c82006-03-28 20:28:38 +00007336 for (unsigned i = 0; i != NumInScalars; ++i) {
7337 // Ignore undef inputs.
7338 if (N->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00007339
Dan Gohman7f321562007-06-25 16:23:39 +00007340 // If this input is something other than a EXTRACT_VECTOR_ELT with a
Chris Lattnerd7648c82006-03-28 20:28:38 +00007341 // constant index, bail out.
Dan Gohman7f321562007-06-25 16:23:39 +00007342 if (N->getOperand(i).getOpcode() != ISD::EXTRACT_VECTOR_ELT ||
Chris Lattnerd7648c82006-03-28 20:28:38 +00007343 !isa<ConstantSDNode>(N->getOperand(i).getOperand(1))) {
Dan Gohman475871a2008-07-27 21:46:04 +00007344 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007345 break;
7346 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007347
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007348 // We allow up to two distinct input vectors.
Dan Gohman475871a2008-07-27 21:46:04 +00007349 SDValue ExtractedFromVec = N->getOperand(i).getOperand(0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007350 if (ExtractedFromVec == VecIn1 || ExtractedFromVec == VecIn2)
7351 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00007352
Gabor Greifba36cb52008-08-28 21:40:38 +00007353 if (VecIn1.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00007354 VecIn1 = ExtractedFromVec;
Gabor Greifba36cb52008-08-28 21:40:38 +00007355 } else if (VecIn2.getNode() == 0) {
Chris Lattnerd7648c82006-03-28 20:28:38 +00007356 VecIn2 = ExtractedFromVec;
7357 } else {
7358 // Too many inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007359 VecIn1 = VecIn2 = SDValue(0, 0);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007360 break;
7361 }
7362 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007363
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007364 // If everything is good, we can make a shuffle operation.
Gabor Greifba36cb52008-08-28 21:40:38 +00007365 if (VecIn1.getNode()) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007366 SmallVector<int, 8> Mask;
Chris Lattnerd7648c82006-03-28 20:28:38 +00007367 for (unsigned i = 0; i != NumInScalars; ++i) {
7368 if (N->getOperand(i).getOpcode() == ISD::UNDEF) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007369 Mask.push_back(-1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007370 continue;
7371 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007372
Rafael Espindola15684b22009-04-24 12:40:33 +00007373 // If extracting from the first vector, just use the index directly.
Nate Begeman9008ca62009-04-27 18:41:29 +00007374 SDValue Extract = N->getOperand(i);
Mon P Wang93b74152009-03-17 06:33:10 +00007375 SDValue ExtVal = Extract.getOperand(1);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007376 if (Extract.getOperand(0) == VecIn1) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00007377 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue();
7378 if (ExtIndex > VT.getVectorNumElements())
7379 return SDValue();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007380
Nate Begeman5a5ca152009-04-29 05:20:52 +00007381 Mask.push_back(ExtIndex);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007382 continue;
7383 }
7384
7385 // Otherwise, use InIdx + VecSize
Mon P Wang93b74152009-03-17 06:33:10 +00007386 unsigned Idx = cast<ConstantSDNode>(ExtVal)->getZExtValue();
Nate Begeman9008ca62009-04-27 18:41:29 +00007387 Mask.push_back(Idx+NumInScalars);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007388 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007389
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007390 // We can't generate a shuffle node with mismatched input and output types.
7391 // Attempt to transform a single input vector to the correct type.
7392 if ((VT != VecIn1.getValueType())) {
7393 // We don't support shuffeling between TWO values of different types.
7394 if (VecIn2.getNode() != 0)
7395 return SDValue();
7396
7397 // We only support widening of vectors which are half the size of the
7398 // output registers. For example XMM->YMM widening on X86 with AVX.
7399 if (VecIn1.getValueType().getSizeInBits()*2 != VT.getSizeInBits())
7400 return SDValue();
7401
7402 // Widen the input vector by adding undef values.
7403 VecIn1 = DAG.getNode(ISD::CONCAT_VECTORS, N->getDebugLoc(), VT,
7404 VecIn1, DAG.getUNDEF(VecIn1.getValueType()));
7405 }
7406
7407 // If VecIn2 is unused then change it to undef.
7408 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
7409
Nadav Rotem0877fdf2012-02-13 12:42:26 +00007410 // Check that we were able to transform all incoming values to the same type.
7411 if (VecIn2.getValueType() != VecIn1.getValueType() ||
7412 VecIn1.getValueType() != VT)
7413 return SDValue();
7414
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007415 // Only type-legal BUILD_VECTOR nodes are converted to shuffle nodes.
Nadav Rotem0877fdf2012-02-13 12:42:26 +00007416 if (!isTypeLegal(VT))
Duncan Sands25cf2272008-11-24 14:53:14 +00007417 return SDValue();
7418
Dan Gohman7f321562007-06-25 16:23:39 +00007419 // Return the new VECTOR_SHUFFLE node.
Nate Begeman9008ca62009-04-27 18:41:29 +00007420 SDValue Ops[2];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00007421 Ops[0] = VecIn1;
Nadav Rotem2ee746b2012-02-12 15:05:31 +00007422 Ops[1] = VecIn2;
Nate Begeman9008ca62009-04-27 18:41:29 +00007423 return DAG.getVectorShuffle(VT, N->getDebugLoc(), Ops[0], Ops[1], &Mask[0]);
Chris Lattnerd7648c82006-03-28 20:28:38 +00007424 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007425
Dan Gohman475871a2008-07-27 21:46:04 +00007426 return SDValue();
Chris Lattnerd7648c82006-03-28 20:28:38 +00007427}
7428
Dan Gohman475871a2008-07-27 21:46:04 +00007429SDValue DAGCombiner::visitCONCAT_VECTORS(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007430 // TODO: Check to see if this is a CONCAT_VECTORS of a bunch of
7431 // EXTRACT_SUBVECTOR operations. If so, and if the EXTRACT_SUBVECTOR vector
7432 // inputs come from at most two distinct vectors, turn this into a shuffle
7433 // node.
7434
7435 // If we only have one input vector, we don't need to do any concatenation.
Bill Wendlingc144a572009-01-30 23:36:47 +00007436 if (N->getNumOperands() == 1)
Dan Gohman7f321562007-06-25 16:23:39 +00007437 return N->getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00007438
Dan Gohman475871a2008-07-27 21:46:04 +00007439 return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00007440}
7441
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007442SDValue DAGCombiner::visitEXTRACT_SUBVECTOR(SDNode* N) {
7443 EVT NVT = N->getValueType(0);
7444 SDValue V = N->getOperand(0);
7445
7446 if (V->getOpcode() == ISD::INSERT_SUBVECTOR) {
7447 // Handle only simple case where vector being inserted and vector
7448 // being extracted are of same type, and are half size of larger vectors.
7449 EVT BigVT = V->getOperand(0).getValueType();
7450 EVT SmallVT = V->getOperand(1).getValueType();
7451 if (NVT != SmallVT || NVT.getSizeInBits()*2 != BigVT.getSizeInBits())
7452 return SDValue();
7453
Eli Friedman26323442011-12-07 00:11:56 +00007454 // Only handle cases where both indexes are constants with the same type.
7455 ConstantSDNode *InsIdx = dyn_cast<ConstantSDNode>(N->getOperand(1));
7456 ConstantSDNode *ExtIdx = dyn_cast<ConstantSDNode>(V->getOperand(2));
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007457
Eli Friedman26323442011-12-07 00:11:56 +00007458 if (InsIdx && ExtIdx &&
7459 InsIdx->getValueType(0).getSizeInBits() <= 64 &&
7460 ExtIdx->getValueType(0).getSizeInBits() <= 64) {
7461 // Combine:
7462 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
7463 // Into:
7464 // indices are equal => V1
7465 // otherwise => (extract_subvec V1, ExtIdx)
7466 if (InsIdx->getZExtValue() == ExtIdx->getZExtValue())
7467 return V->getOperand(1);
7468 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, N->getDebugLoc(), NVT,
7469 V->getOperand(0), N->getOperand(1));
7470 }
Bruno Cardoso Lopese97190f2011-09-20 23:19:33 +00007471 }
7472
7473 return SDValue();
7474}
7475
Dan Gohman475871a2008-07-27 21:46:04 +00007476SDValue DAGCombiner::visitVECTOR_SHUFFLE(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00007477 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00007478 unsigned NumElts = VT.getVectorNumElements();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00007479
Mon P Wangaeb06d22008-11-10 04:46:22 +00007480 SDValue N0 = N->getOperand(0);
Craig Topper481b79c2012-01-04 08:07:43 +00007481 SDValue N1 = N->getOperand(1);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007482
7483 assert(N0.getValueType().getVectorNumElements() == NumElts &&
7484 "Vector shuffle must be normalized in DAG");
7485
Craig Topper481b79c2012-01-04 08:07:43 +00007486 // Canonicalize shuffle undef, undef -> undef
7487 if (N0.getOpcode() == ISD::UNDEF && N1.getOpcode() == ISD::UNDEF)
7488 return DAG.getUNDEF(VT);
7489
7490 ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
7491
7492 // Canonicalize shuffle v, v -> v, undef
7493 if (N0 == N1) {
7494 SmallVector<int, 8> NewMask;
7495 for (unsigned i = 0; i != NumElts; ++i) {
7496 int Idx = SVN->getMaskElt(i);
7497 if (Idx >= (int)NumElts) Idx -= NumElts;
7498 NewMask.push_back(Idx);
7499 }
7500 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, DAG.getUNDEF(VT),
7501 &NewMask[0]);
7502 }
7503
7504 // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask.
7505 if (N0.getOpcode() == ISD::UNDEF) {
7506 SmallVector<int, 8> NewMask;
7507 for (unsigned i = 0; i != NumElts; ++i) {
7508 int Idx = SVN->getMaskElt(i);
7509 if (Idx < 0)
7510 NewMask.push_back(Idx);
7511 else if (Idx < (int)NumElts)
7512 NewMask.push_back(Idx + NumElts);
7513 else
7514 NewMask.push_back(Idx - NumElts);
7515 }
7516 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N1, DAG.getUNDEF(VT),
7517 &NewMask[0]);
7518 }
7519
7520 // Remove references to rhs if it is undef
7521 if (N1.getOpcode() == ISD::UNDEF) {
7522 bool Changed = false;
7523 SmallVector<int, 8> NewMask;
7524 for (unsigned i = 0; i != NumElts; ++i) {
7525 int Idx = SVN->getMaskElt(i);
7526 if (Idx >= (int)NumElts) {
7527 Idx = -1;
7528 Changed = true;
7529 }
7530 NewMask.push_back(Idx);
7531 }
7532 if (Changed)
7533 return DAG.getVectorShuffle(VT, N->getDebugLoc(), N0, N1, &NewMask[0]);
7534 }
Evan Chenge7bec0d2006-07-20 22:44:41 +00007535
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007536 // If it is a splat, check if the argument vector is another splat or a
7537 // build_vector with all scalar elements the same.
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007538 if (SVN->isSplat() && SVN->getSplatIndex() < (int)NumElts) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007539 SDNode *V = N0.getNode();
Evan Cheng917ec982006-07-21 08:25:53 +00007540
Dan Gohman7f321562007-06-25 16:23:39 +00007541 // If this is a bit convert that changes the element type of the vector but
Evan Cheng59569222006-10-16 22:49:37 +00007542 // not the number of vector elements, look through it. Be careful not to
7543 // look though conversions that change things like v4f32 to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007544 if (V->getOpcode() == ISD::BITCAST) {
Dan Gohman475871a2008-07-27 21:46:04 +00007545 SDValue ConvInput = V->getOperand(0);
Evan Cheng29257862008-07-22 20:42:56 +00007546 if (ConvInput.getValueType().isVector() &&
7547 ConvInput.getValueType().getVectorNumElements() == NumElts)
Gabor Greifba36cb52008-08-28 21:40:38 +00007548 V = ConvInput.getNode();
Evan Cheng59569222006-10-16 22:49:37 +00007549 }
7550
Dan Gohman7f321562007-06-25 16:23:39 +00007551 if (V->getOpcode() == ISD::BUILD_VECTOR) {
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007552 assert(V->getNumOperands() == NumElts &&
7553 "BUILD_VECTOR has wrong number of operands");
7554 SDValue Base;
7555 bool AllSame = true;
7556 for (unsigned i = 0; i != NumElts; ++i) {
7557 if (V->getOperand(i).getOpcode() != ISD::UNDEF) {
7558 Base = V->getOperand(i);
7559 break;
Evan Cheng917ec982006-07-21 08:25:53 +00007560 }
Evan Cheng917ec982006-07-21 08:25:53 +00007561 }
Bob Wilson0f1db1a2010-10-28 17:06:14 +00007562 // Splat of <u, u, u, u>, return <u, u, u, u>
7563 if (!Base.getNode())
7564 return N0;
7565 for (unsigned i = 0; i != NumElts; ++i) {
7566 if (V->getOperand(i) != Base) {
7567 AllSame = false;
7568 break;
7569 }
7570 }
7571 // Splat of <x, x, x, x>, return <x, x, x, x>
7572 if (AllSame)
7573 return N0;
Evan Cheng917ec982006-07-21 08:25:53 +00007574 }
7575 }
Dan Gohman475871a2008-07-27 21:46:04 +00007576 return SDValue();
Chris Lattnerf1d0c622006-03-31 22:16:43 +00007577}
7578
Jim Grosbach9a526492010-06-23 16:07:42 +00007579SDValue DAGCombiner::visitMEMBARRIER(SDNode* N) {
7580 if (!TLI.getShouldFoldAtomicFences())
7581 return SDValue();
7582
7583 SDValue atomic = N->getOperand(0);
7584 switch (atomic.getOpcode()) {
7585 case ISD::ATOMIC_CMP_SWAP:
7586 case ISD::ATOMIC_SWAP:
7587 case ISD::ATOMIC_LOAD_ADD:
7588 case ISD::ATOMIC_LOAD_SUB:
7589 case ISD::ATOMIC_LOAD_AND:
7590 case ISD::ATOMIC_LOAD_OR:
7591 case ISD::ATOMIC_LOAD_XOR:
7592 case ISD::ATOMIC_LOAD_NAND:
7593 case ISD::ATOMIC_LOAD_MIN:
7594 case ISD::ATOMIC_LOAD_MAX:
7595 case ISD::ATOMIC_LOAD_UMIN:
7596 case ISD::ATOMIC_LOAD_UMAX:
7597 break;
7598 default:
7599 return SDValue();
7600 }
7601
7602 SDValue fence = atomic.getOperand(0);
7603 if (fence.getOpcode() != ISD::MEMBARRIER)
7604 return SDValue();
7605
7606 switch (atomic.getOpcode()) {
7607 case ISD::ATOMIC_CMP_SWAP:
7608 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
7609 fence.getOperand(0),
7610 atomic.getOperand(1), atomic.getOperand(2),
7611 atomic.getOperand(3)), atomic.getResNo());
7612 case ISD::ATOMIC_SWAP:
7613 case ISD::ATOMIC_LOAD_ADD:
7614 case ISD::ATOMIC_LOAD_SUB:
7615 case ISD::ATOMIC_LOAD_AND:
7616 case ISD::ATOMIC_LOAD_OR:
7617 case ISD::ATOMIC_LOAD_XOR:
7618 case ISD::ATOMIC_LOAD_NAND:
7619 case ISD::ATOMIC_LOAD_MIN:
7620 case ISD::ATOMIC_LOAD_MAX:
7621 case ISD::ATOMIC_LOAD_UMIN:
7622 case ISD::ATOMIC_LOAD_UMAX:
7623 return SDValue(DAG.UpdateNodeOperands(atomic.getNode(),
7624 fence.getOperand(0),
7625 atomic.getOperand(1), atomic.getOperand(2)),
7626 atomic.getResNo());
7627 default:
7628 return SDValue();
7629 }
7630}
7631
Evan Cheng44f1f092006-04-20 08:56:16 +00007632/// XformToShuffleWithZero - Returns a vector_shuffle if it able to transform
Dan Gohman7f321562007-06-25 16:23:39 +00007633/// an AND to a vector_shuffle with the destination vector and a zero vector.
7634/// e.g. AND V, <0xffffffff, 0, 0xffffffff, 0>. ==>
Evan Cheng44f1f092006-04-20 08:56:16 +00007635/// vector_shuffle V, Zero, <0, 4, 2, 4>
Dan Gohman475871a2008-07-27 21:46:04 +00007636SDValue DAGCombiner::XformToShuffleWithZero(SDNode *N) {
Owen Andersone50ed302009-08-10 22:56:29 +00007637 EVT VT = N->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00007638 DebugLoc dl = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007639 SDValue LHS = N->getOperand(0);
7640 SDValue RHS = N->getOperand(1);
Dan Gohman7f321562007-06-25 16:23:39 +00007641 if (N->getOpcode() == ISD::AND) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007642 if (RHS.getOpcode() == ISD::BITCAST)
Evan Cheng44f1f092006-04-20 08:56:16 +00007643 RHS = RHS.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00007644 if (RHS.getOpcode() == ISD::BUILD_VECTOR) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007645 SmallVector<int, 8> Indices;
7646 unsigned NumElts = RHS.getNumOperands();
Evan Cheng44f1f092006-04-20 08:56:16 +00007647 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007648 SDValue Elt = RHS.getOperand(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00007649 if (!isa<ConstantSDNode>(Elt))
Dan Gohman475871a2008-07-27 21:46:04 +00007650 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007651 else if (cast<ConstantSDNode>(Elt)->isAllOnesValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00007652 Indices.push_back(i);
Evan Cheng44f1f092006-04-20 08:56:16 +00007653 else if (cast<ConstantSDNode>(Elt)->isNullValue())
Nate Begeman9008ca62009-04-27 18:41:29 +00007654 Indices.push_back(NumElts);
Evan Cheng44f1f092006-04-20 08:56:16 +00007655 else
Dan Gohman475871a2008-07-27 21:46:04 +00007656 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007657 }
7658
7659 // Let's see if the target supports this vector_shuffle.
Owen Andersone50ed302009-08-10 22:56:29 +00007660 EVT RVT = RHS.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00007661 if (!TLI.isVectorClearMaskLegal(Indices, RVT))
Dan Gohman475871a2008-07-27 21:46:04 +00007662 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007663
Dan Gohman7f321562007-06-25 16:23:39 +00007664 // Return the new VECTOR_SHUFFLE node.
Dan Gohman8a55ce42009-09-23 21:02:20 +00007665 EVT EltVT = RVT.getVectorElementType();
Nate Begeman9008ca62009-04-27 18:41:29 +00007666 SmallVector<SDValue,8> ZeroOps(RVT.getVectorNumElements(),
Dan Gohman8a55ce42009-09-23 21:02:20 +00007667 DAG.getConstant(0, EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00007668 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7669 RVT, &ZeroOps[0], ZeroOps.size());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007670 LHS = DAG.getNode(ISD::BITCAST, dl, RVT, LHS);
Nate Begeman9008ca62009-04-27 18:41:29 +00007671 SDValue Shuf = DAG.getVectorShuffle(RVT, dl, LHS, Zero, &Indices[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007672 return DAG.getNode(ISD::BITCAST, dl, VT, Shuf);
Evan Cheng44f1f092006-04-20 08:56:16 +00007673 }
7674 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00007675
Dan Gohman475871a2008-07-27 21:46:04 +00007676 return SDValue();
Evan Cheng44f1f092006-04-20 08:56:16 +00007677}
7678
Dan Gohman7f321562007-06-25 16:23:39 +00007679/// SimplifyVBinOp - Visit a binary vector operation, like ADD.
Dan Gohman475871a2008-07-27 21:46:04 +00007680SDValue DAGCombiner::SimplifyVBinOp(SDNode *N) {
Dan Gohman7f321562007-06-25 16:23:39 +00007681 // After legalize, the target may be depending on adds and other
7682 // binary ops to provide legal ways to construct constants or other
7683 // things. Simplifying them may result in a loss of legality.
Duncan Sands25cf2272008-11-24 14:53:14 +00007684 if (LegalOperations) return SDValue();
Dan Gohman7f321562007-06-25 16:23:39 +00007685
Bob Wilsond7273432010-12-17 23:06:49 +00007686 assert(N->getValueType(0).isVector() &&
7687 "SimplifyVBinOp only works on vectors!");
Dan Gohman7f321562007-06-25 16:23:39 +00007688
Dan Gohman475871a2008-07-27 21:46:04 +00007689 SDValue LHS = N->getOperand(0);
7690 SDValue RHS = N->getOperand(1);
7691 SDValue Shuffle = XformToShuffleWithZero(N);
Gabor Greifba36cb52008-08-28 21:40:38 +00007692 if (Shuffle.getNode()) return Shuffle;
Evan Cheng44f1f092006-04-20 08:56:16 +00007693
Dan Gohman7f321562007-06-25 16:23:39 +00007694 // If the LHS and RHS are BUILD_VECTOR nodes, see if we can constant fold
Chris Lattneredab1b92006-04-02 03:25:57 +00007695 // this operation.
Scott Michelfdc40a02009-02-17 22:15:04 +00007696 if (LHS.getOpcode() == ISD::BUILD_VECTOR &&
Dan Gohman7f321562007-06-25 16:23:39 +00007697 RHS.getOpcode() == ISD::BUILD_VECTOR) {
Dan Gohman475871a2008-07-27 21:46:04 +00007698 SmallVector<SDValue, 8> Ops;
Dan Gohman7f321562007-06-25 16:23:39 +00007699 for (unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007700 SDValue LHSOp = LHS.getOperand(i);
7701 SDValue RHSOp = RHS.getOperand(i);
Chris Lattneredab1b92006-04-02 03:25:57 +00007702 // If these two elements can't be folded, bail out.
7703 if ((LHSOp.getOpcode() != ISD::UNDEF &&
7704 LHSOp.getOpcode() != ISD::Constant &&
7705 LHSOp.getOpcode() != ISD::ConstantFP) ||
7706 (RHSOp.getOpcode() != ISD::UNDEF &&
7707 RHSOp.getOpcode() != ISD::Constant &&
7708 RHSOp.getOpcode() != ISD::ConstantFP))
7709 break;
Bill Wendling836ca7d2009-01-30 23:59:18 +00007710
Evan Cheng7b336a82006-05-31 06:08:35 +00007711 // Can't fold divide by zero.
Dan Gohman7f321562007-06-25 16:23:39 +00007712 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
7713 N->getOpcode() == ISD::FDIV) {
Evan Cheng7b336a82006-05-31 06:08:35 +00007714 if ((RHSOp.getOpcode() == ISD::Constant &&
Gabor Greifba36cb52008-08-28 21:40:38 +00007715 cast<ConstantSDNode>(RHSOp.getNode())->isNullValue()) ||
Evan Cheng7b336a82006-05-31 06:08:35 +00007716 (RHSOp.getOpcode() == ISD::ConstantFP &&
Gabor Greifba36cb52008-08-28 21:40:38 +00007717 cast<ConstantFPSDNode>(RHSOp.getNode())->getValueAPF().isZero()))
Evan Cheng7b336a82006-05-31 06:08:35 +00007718 break;
7719 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00007720
Bob Wilsond7273432010-12-17 23:06:49 +00007721 EVT VT = LHSOp.getValueType();
Bob Wilsondb2b18f2011-10-18 17:34:47 +00007722 EVT RVT = RHSOp.getValueType();
7723 if (RVT != VT) {
7724 // Integer BUILD_VECTOR operands may have types larger than the element
7725 // size (e.g., when the element type is not legal). Prior to type
7726 // legalization, the types may not match between the two BUILD_VECTORS.
7727 // Truncate one of the operands to make them match.
7728 if (RVT.getSizeInBits() > VT.getSizeInBits()) {
7729 RHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), VT, RHSOp);
7730 } else {
7731 LHSOp = DAG.getNode(ISD::TRUNCATE, N->getDebugLoc(), RVT, LHSOp);
7732 VT = RVT;
7733 }
7734 }
Bob Wilsond7273432010-12-17 23:06:49 +00007735 SDValue FoldOp = DAG.getNode(N->getOpcode(), LHS.getDebugLoc(), VT,
Evan Chenga0839882010-05-18 00:03:40 +00007736 LHSOp, RHSOp);
7737 if (FoldOp.getOpcode() != ISD::UNDEF &&
7738 FoldOp.getOpcode() != ISD::Constant &&
7739 FoldOp.getOpcode() != ISD::ConstantFP)
7740 break;
7741 Ops.push_back(FoldOp);
7742 AddToWorkList(FoldOp.getNode());
Chris Lattneredab1b92006-04-02 03:25:57 +00007743 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007744
Bob Wilsond7273432010-12-17 23:06:49 +00007745 if (Ops.size() == LHS.getNumOperands())
7746 return DAG.getNode(ISD::BUILD_VECTOR, N->getDebugLoc(),
7747 LHS.getValueType(), &Ops[0], Ops.size());
Chris Lattneredab1b92006-04-02 03:25:57 +00007748 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007749
Dan Gohman475871a2008-07-27 21:46:04 +00007750 return SDValue();
Chris Lattneredab1b92006-04-02 03:25:57 +00007751}
7752
Bill Wendling836ca7d2009-01-30 23:59:18 +00007753SDValue DAGCombiner::SimplifySelect(DebugLoc DL, SDValue N0,
7754 SDValue N1, SDValue N2){
Nate Begemanf845b452005-10-08 00:29:44 +00007755 assert(N0.getOpcode() ==ISD::SETCC && "First argument must be a SetCC node!");
Scott Michelfdc40a02009-02-17 22:15:04 +00007756
Bill Wendling836ca7d2009-01-30 23:59:18 +00007757 SDValue SCC = SimplifySelectCC(DL, N0.getOperand(0), N0.getOperand(1), N1, N2,
Nate Begemanf845b452005-10-08 00:29:44 +00007758 cast<CondCodeSDNode>(N0.getOperand(2))->get());
Bill Wendling836ca7d2009-01-30 23:59:18 +00007759
Nate Begemanf845b452005-10-08 00:29:44 +00007760 // If we got a simplified select_cc node back from SimplifySelectCC, then
7761 // break it down into a new SETCC node, and a new SELECT node, and then return
7762 // the SELECT node, since we were called with a SELECT node.
Gabor Greifba36cb52008-08-28 21:40:38 +00007763 if (SCC.getNode()) {
Nate Begemanf845b452005-10-08 00:29:44 +00007764 // Check to see if we got a select_cc back (to turn into setcc/select).
7765 // Otherwise, just return whatever node we got back, like fabs.
7766 if (SCC.getOpcode() == ISD::SELECT_CC) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00007767 SDValue SETCC = DAG.getNode(ISD::SETCC, N0.getDebugLoc(),
7768 N0.getValueType(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007769 SCC.getOperand(0), SCC.getOperand(1),
Bill Wendling836ca7d2009-01-30 23:59:18 +00007770 SCC.getOperand(4));
Gabor Greifba36cb52008-08-28 21:40:38 +00007771 AddToWorkList(SETCC.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00007772 return DAG.getNode(ISD::SELECT, SCC.getDebugLoc(), SCC.getValueType(),
7773 SCC.getOperand(2), SCC.getOperand(3), SETCC);
Nate Begemanf845b452005-10-08 00:29:44 +00007774 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00007775
Nate Begemanf845b452005-10-08 00:29:44 +00007776 return SCC;
7777 }
Dan Gohman475871a2008-07-27 21:46:04 +00007778 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00007779}
7780
Chris Lattner40c62d52005-10-18 06:04:22 +00007781/// SimplifySelectOps - Given a SELECT or a SELECT_CC node, where LHS and RHS
7782/// are the two values being selected between, see if we can simplify the
Chris Lattner729c6d12006-05-27 00:43:02 +00007783/// select. Callers of this should assume that TheSelect is deleted if this
7784/// returns true. As such, they should return the appropriate thing (e.g. the
7785/// node) back to the top-level of the DAG combiner loop to avoid it being
7786/// looked at.
Scott Michelfdc40a02009-02-17 22:15:04 +00007787bool DAGCombiner::SimplifySelectOps(SDNode *TheSelect, SDValue LHS,
Dan Gohman475871a2008-07-27 21:46:04 +00007788 SDValue RHS) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007789
Nadav Rotemf94fdb62011-02-11 19:57:47 +00007790 // Cannot simplify select with vector condition
7791 if (TheSelect->getOperand(0).getValueType().isVector()) return false;
7792
Chris Lattner40c62d52005-10-18 06:04:22 +00007793 // If this is a select from two identical things, try to pull the operation
7794 // through the select.
Chris Lattner18061612010-09-21 15:46:59 +00007795 if (LHS.getOpcode() != RHS.getOpcode() ||
7796 !LHS.hasOneUse() || !RHS.hasOneUse())
7797 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007798
Chris Lattner18061612010-09-21 15:46:59 +00007799 // If this is a load and the token chain is identical, replace the select
7800 // of two loads with a load through a select of the address to load from.
7801 // This triggers in things like "select bool X, 10.0, 123.0" after the FP
7802 // constants have been dropped into the constant pool.
7803 if (LHS.getOpcode() == ISD::LOAD) {
7804 LoadSDNode *LLD = cast<LoadSDNode>(LHS);
7805 LoadSDNode *RLD = cast<LoadSDNode>(RHS);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007806
Chris Lattner18061612010-09-21 15:46:59 +00007807 // Token chains must be identical.
7808 if (LHS.getOperand(0) != RHS.getOperand(0) ||
Duncan Sandsd4b9c172008-06-13 19:07:40 +00007809 // Do not let this transformation reduce the number of volatile loads.
Chris Lattner18061612010-09-21 15:46:59 +00007810 LLD->isVolatile() || RLD->isVolatile() ||
7811 // If this is an EXTLOAD, the VT's must match.
7812 LLD->getMemoryVT() != RLD->getMemoryVT() ||
Duncan Sandsdcfd3a72010-11-18 20:05:18 +00007813 // If this is an EXTLOAD, the kind of extension must match.
7814 (LLD->getExtensionType() != RLD->getExtensionType() &&
7815 // The only exception is if one of the extensions is anyext.
7816 LLD->getExtensionType() != ISD::EXTLOAD &&
7817 RLD->getExtensionType() != ISD::EXTLOAD) ||
Dan Gohman75832d72009-10-31 14:14:04 +00007818 // FIXME: this discards src value information. This is
7819 // over-conservative. It would be beneficial to be able to remember
Mon P Wangfe240b12010-01-11 20:12:49 +00007820 // both potential memory locations. Since we are discarding
7821 // src value info, don't do the transformation if the memory
7822 // locations are not in the default address space.
Chris Lattner18061612010-09-21 15:46:59 +00007823 LLD->getPointerInfo().getAddrSpace() != 0 ||
7824 RLD->getPointerInfo().getAddrSpace() != 0)
7825 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007826
Chris Lattnerf1658062010-09-21 15:58:55 +00007827 // Check that the select condition doesn't reach either load. If so,
7828 // folding this will induce a cycle into the DAG. If not, this is safe to
7829 // xform, so create a select of the addresses.
Chris Lattner18061612010-09-21 15:46:59 +00007830 SDValue Addr;
7831 if (TheSelect->getOpcode() == ISD::SELECT) {
Chris Lattnerf1658062010-09-21 15:58:55 +00007832 SDNode *CondNode = TheSelect->getOperand(0).getNode();
7833 if ((LLD->hasAnyUseOfValue(1) && LLD->isPredecessorOf(CondNode)) ||
7834 (RLD->hasAnyUseOfValue(1) && RLD->isPredecessorOf(CondNode)))
7835 return false;
7836 Addr = DAG.getNode(ISD::SELECT, TheSelect->getDebugLoc(),
7837 LLD->getBasePtr().getValueType(),
7838 TheSelect->getOperand(0), LLD->getBasePtr(),
7839 RLD->getBasePtr());
Chris Lattner18061612010-09-21 15:46:59 +00007840 } else { // Otherwise SELECT_CC
Chris Lattnerf1658062010-09-21 15:58:55 +00007841 SDNode *CondLHS = TheSelect->getOperand(0).getNode();
7842 SDNode *CondRHS = TheSelect->getOperand(1).getNode();
7843
7844 if ((LLD->hasAnyUseOfValue(1) &&
7845 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
7846 (LLD->hasAnyUseOfValue(1) &&
7847 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))))
7848 return false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007849
Chris Lattnerf1658062010-09-21 15:58:55 +00007850 Addr = DAG.getNode(ISD::SELECT_CC, TheSelect->getDebugLoc(),
7851 LLD->getBasePtr().getValueType(),
7852 TheSelect->getOperand(0),
7853 TheSelect->getOperand(1),
7854 LLD->getBasePtr(), RLD->getBasePtr(),
7855 TheSelect->getOperand(4));
Chris Lattner18061612010-09-21 15:46:59 +00007856 }
7857
Chris Lattnerf1658062010-09-21 15:58:55 +00007858 SDValue Load;
7859 if (LLD->getExtensionType() == ISD::NON_EXTLOAD) {
7860 Load = DAG.getLoad(TheSelect->getValueType(0),
7861 TheSelect->getDebugLoc(),
7862 // FIXME: Discards pointer info.
7863 LLD->getChain(), Addr, MachinePointerInfo(),
7864 LLD->isVolatile(), LLD->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00007865 LLD->isInvariant(), LLD->getAlignment());
Chris Lattnerf1658062010-09-21 15:58:55 +00007866 } else {
Duncan Sandsb9064bb2010-11-18 21:16:28 +00007867 Load = DAG.getExtLoad(LLD->getExtensionType() == ISD::EXTLOAD ?
7868 RLD->getExtensionType() : LLD->getExtensionType(),
Chris Lattnerf1658062010-09-21 15:58:55 +00007869 TheSelect->getDebugLoc(),
Stuart Hastingsa9011292011-02-16 16:23:55 +00007870 TheSelect->getValueType(0),
Chris Lattnerf1658062010-09-21 15:58:55 +00007871 // FIXME: Discards pointer info.
7872 LLD->getChain(), Addr, MachinePointerInfo(),
7873 LLD->getMemoryVT(), LLD->isVolatile(),
7874 LLD->isNonTemporal(), LLD->getAlignment());
Chris Lattner40c62d52005-10-18 06:04:22 +00007875 }
Chris Lattnerf1658062010-09-21 15:58:55 +00007876
7877 // Users of the select now use the result of the load.
7878 CombineTo(TheSelect, Load);
7879
7880 // Users of the old loads now use the new load's chain. We know the
7881 // old-load value is dead now.
7882 CombineTo(LHS.getNode(), Load.getValue(0), Load.getValue(1));
7883 CombineTo(RHS.getNode(), Load.getValue(0), Load.getValue(1));
7884 return true;
Chris Lattner40c62d52005-10-18 06:04:22 +00007885 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007886
Chris Lattner40c62d52005-10-18 06:04:22 +00007887 return false;
7888}
7889
Chris Lattner600fec32009-03-11 05:08:08 +00007890/// SimplifySelectCC - Simplify an expression of the form (N0 cond N1) ? N2 : N3
7891/// where 'cond' is the comparison specified by CC.
Scott Michelfdc40a02009-02-17 22:15:04 +00007892SDValue DAGCombiner::SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1,
Dan Gohman475871a2008-07-27 21:46:04 +00007893 SDValue N2, SDValue N3,
7894 ISD::CondCode CC, bool NotExtCompare) {
Chris Lattner600fec32009-03-11 05:08:08 +00007895 // (x ? y : y) -> y.
7896 if (N2 == N3) return N2;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007897
Owen Andersone50ed302009-08-10 22:56:29 +00007898 EVT VT = N2.getValueType();
Gabor Greifba36cb52008-08-28 21:40:38 +00007899 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode());
7900 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode());
7901 ConstantSDNode *N3C = dyn_cast<ConstantSDNode>(N3.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00007902
7903 // Determine if the condition we're dealing with is constant
Duncan Sands5480c042009-01-01 15:52:00 +00007904 SDValue SCC = SimplifySetCC(TLI.getSetCCResultType(N0.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00007905 N0, N1, CC, DL, false);
Gabor Greifba36cb52008-08-28 21:40:38 +00007906 if (SCC.getNode()) AddToWorkList(SCC.getNode());
7907 ConstantSDNode *SCCC = dyn_cast_or_null<ConstantSDNode>(SCC.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00007908
7909 // fold select_cc true, x, y -> x
Dan Gohman002e5d02008-03-13 22:13:53 +00007910 if (SCCC && !SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00007911 return N2;
7912 // fold select_cc false, x, y -> y
Dan Gohman002e5d02008-03-13 22:13:53 +00007913 if (SCCC && SCCC->isNullValue())
Nate Begemanf845b452005-10-08 00:29:44 +00007914 return N3;
Scott Michelfdc40a02009-02-17 22:15:04 +00007915
Nate Begemanf845b452005-10-08 00:29:44 +00007916 // Check to see if we can simplify the select into an fabs node
7917 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) {
7918 // Allow either -0.0 or 0.0
Dale Johannesen87503a62007-08-25 22:10:57 +00007919 if (CFP->getValueAPF().isZero()) {
Nate Begemanf845b452005-10-08 00:29:44 +00007920 // select (setg[te] X, +/-0.0), X, fneg(X) -> fabs
7921 if ((CC == ISD::SETGE || CC == ISD::SETGT) &&
7922 N0 == N2 && N3.getOpcode() == ISD::FNEG &&
7923 N2 == N3.getOperand(0))
Bill Wendling836ca7d2009-01-30 23:59:18 +00007924 return DAG.getNode(ISD::FABS, DL, VT, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00007925
Nate Begemanf845b452005-10-08 00:29:44 +00007926 // select (setl[te] X, +/-0.0), fneg(X), X -> fabs
7927 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
7928 N0 == N3 && N2.getOpcode() == ISD::FNEG &&
7929 N2.getOperand(0) == N3)
Bill Wendling836ca7d2009-01-30 23:59:18 +00007930 return DAG.getNode(ISD::FABS, DL, VT, N3);
Nate Begemanf845b452005-10-08 00:29:44 +00007931 }
7932 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007933
Chris Lattner600fec32009-03-11 05:08:08 +00007934 // Turn "(a cond b) ? 1.0f : 2.0f" into "load (tmp + ((a cond b) ? 0 : 4)"
7935 // where "tmp" is a constant pool entry containing an array with 1.0 and 2.0
7936 // in it. This is a win when the constant is not otherwise available because
7937 // it replaces two constant pool loads with one. We only do this if the FP
7938 // type is known to be legal, because if it isn't, then we are before legalize
7939 // types an we want the other legalization to happen first (e.g. to avoid
Mon P Wang0b7a7862009-03-14 00:25:19 +00007940 // messing with soft float) and if the ConstantFP is not legal, because if
7941 // it is legal, we may not need to store the FP constant in a constant pool.
Chris Lattner600fec32009-03-11 05:08:08 +00007942 if (ConstantFPSDNode *TV = dyn_cast<ConstantFPSDNode>(N2))
7943 if (ConstantFPSDNode *FV = dyn_cast<ConstantFPSDNode>(N3)) {
7944 if (TLI.isTypeLegal(N2.getValueType()) &&
Mon P Wang0b7a7862009-03-14 00:25:19 +00007945 (TLI.getOperationAction(ISD::ConstantFP, N2.getValueType()) !=
7946 TargetLowering::Legal) &&
Chris Lattner600fec32009-03-11 05:08:08 +00007947 // If both constants have multiple uses, then we won't need to do an
7948 // extra load, they are likely around in registers for other users.
7949 (TV->hasOneUse() || FV->hasOneUse())) {
7950 Constant *Elts[] = {
7951 const_cast<ConstantFP*>(FV->getConstantFPValue()),
7952 const_cast<ConstantFP*>(TV->getConstantFPValue())
7953 };
Chris Lattnerdb125cf2011-07-18 04:54:35 +00007954 Type *FPTy = Elts[0]->getType();
Chris Lattner600fec32009-03-11 05:08:08 +00007955 const TargetData &TD = *TLI.getTargetData();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007956
Chris Lattner600fec32009-03-11 05:08:08 +00007957 // Create a ConstantArray of the two constants.
Jay Foad26701082011-06-22 09:24:39 +00007958 Constant *CA = ConstantArray::get(ArrayType::get(FPTy, 2), Elts);
Chris Lattner600fec32009-03-11 05:08:08 +00007959 SDValue CPIdx = DAG.getConstantPool(CA, TLI.getPointerTy(),
7960 TD.getPrefTypeAlignment(FPTy));
Evan Cheng1606e8e2009-03-13 07:51:59 +00007961 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner600fec32009-03-11 05:08:08 +00007962
7963 // Get the offsets to the 0 and 1 element of the array so that we can
7964 // select between them.
7965 SDValue Zero = DAG.getIntPtrConstant(0);
Duncan Sands777d2302009-05-09 07:06:46 +00007966 unsigned EltSize = (unsigned)TD.getTypeAllocSize(Elts[0]->getType());
Chris Lattner600fec32009-03-11 05:08:08 +00007967 SDValue One = DAG.getIntPtrConstant(EltSize);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007968
Chris Lattner600fec32009-03-11 05:08:08 +00007969 SDValue Cond = DAG.getSetCC(DL,
7970 TLI.getSetCCResultType(N0.getValueType()),
7971 N0, N1, CC);
Dan Gohman7b316c92011-09-22 23:01:29 +00007972 AddToWorkList(Cond.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00007973 SDValue CstOffset = DAG.getNode(ISD::SELECT, DL, Zero.getValueType(),
7974 Cond, One, Zero);
Dan Gohman7b316c92011-09-22 23:01:29 +00007975 AddToWorkList(CstOffset.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00007976 CPIdx = DAG.getNode(ISD::ADD, DL, TLI.getPointerTy(), CPIdx,
7977 CstOffset);
Dan Gohman7b316c92011-09-22 23:01:29 +00007978 AddToWorkList(CPIdx.getNode());
Chris Lattner600fec32009-03-11 05:08:08 +00007979 return DAG.getLoad(TV->getValueType(0), DL, DAG.getEntryNode(), CPIdx,
Chris Lattner85ca1062010-09-21 07:32:19 +00007980 MachinePointerInfo::getConstantPool(), false,
Pete Cooperd752e0f2011-11-08 18:42:53 +00007981 false, false, Alignment);
Chris Lattner600fec32009-03-11 05:08:08 +00007982
7983 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007984 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007985
Nate Begemanf845b452005-10-08 00:29:44 +00007986 // Check to see if we can perform the "gzip trick", transforming
Bill Wendling836ca7d2009-01-30 23:59:18 +00007987 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
Chris Lattnere3152e52006-09-20 06:41:35 +00007988 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00007989 (N1C->isNullValue() || // (a < 0) ? b : 0
7990 (N1C->getAPIntValue() == 1 && N0 == N2))) { // (a < 1) ? a : 0
Owen Andersone50ed302009-08-10 22:56:29 +00007991 EVT XType = N0.getValueType();
7992 EVT AType = N2.getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00007993 if (XType.bitsGE(AType)) {
Nate Begemanf845b452005-10-08 00:29:44 +00007994 // and (sra X, size(X)-1, A) -> "and (srl X, C2), A" iff A is a
Nate Begeman07ed4172005-10-10 21:26:48 +00007995 // single-bit constant.
Dan Gohman002e5d02008-03-13 22:13:53 +00007996 if (N2C && ((N2C->getAPIntValue() & (N2C->getAPIntValue()-1)) == 0)) {
7997 unsigned ShCtV = N2C->getAPIntValue().logBase2();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007998 ShCtV = XType.getSizeInBits()-ShCtV-1;
Owen Anderson95771af2011-02-25 21:41:48 +00007999 SDValue ShCt = DAG.getConstant(ShCtV,
8000 getShiftAmountTy(N0.getValueType()));
Bill Wendling9729c5a2009-01-31 03:12:48 +00008001 SDValue Shift = DAG.getNode(ISD::SRL, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008002 XType, N0, ShCt);
Gabor Greifba36cb52008-08-28 21:40:38 +00008003 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008004
Duncan Sands8e4eb092008-06-08 20:54:56 +00008005 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008006 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008007 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008008 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008009
8010 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008011 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008012
Bill Wendling9729c5a2009-01-31 03:12:48 +00008013 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008014 XType, N0,
8015 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008016 getShiftAmountTy(N0.getValueType())));
Gabor Greifba36cb52008-08-28 21:40:38 +00008017 AddToWorkList(Shift.getNode());
Bill Wendling836ca7d2009-01-30 23:59:18 +00008018
Duncan Sands8e4eb092008-06-08 20:54:56 +00008019 if (XType.bitsGT(AType)) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008020 Shift = DAG.getNode(ISD::TRUNCATE, DL, AType, Shift);
Gabor Greifba36cb52008-08-28 21:40:38 +00008021 AddToWorkList(Shift.getNode());
Nate Begemanf845b452005-10-08 00:29:44 +00008022 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008023
8024 return DAG.getNode(ISD::AND, DL, AType, Shift, N2);
Nate Begemanf845b452005-10-08 00:29:44 +00008025 }
8026 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008027
Owen Andersoned1088a2010-09-22 22:58:22 +00008028 // fold (select_cc seteq (and x, y), 0, 0, A) -> (and (shr (shl x)) A)
8029 // where y is has a single bit set.
8030 // A plaintext description would be, we can turn the SELECT_CC into an AND
8031 // when the condition can be materialized as an all-ones register. Any
8032 // single bit-test can be materialized as an all-ones register with
8033 // shift-left and shift-right-arith.
8034 if (CC == ISD::SETEQ && N0->getOpcode() == ISD::AND &&
8035 N0->getValueType(0) == VT &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008036 N1C && N1C->isNullValue() &&
Owen Andersoned1088a2010-09-22 22:58:22 +00008037 N2C && N2C->isNullValue()) {
8038 SDValue AndLHS = N0->getOperand(0);
8039 ConstantSDNode *ConstAndRHS = dyn_cast<ConstantSDNode>(N0->getOperand(1));
8040 if (ConstAndRHS && ConstAndRHS->getAPIntValue().countPopulation() == 1) {
8041 // Shift the tested bit over the sign bit.
8042 APInt AndMask = ConstAndRHS->getAPIntValue();
8043 SDValue ShlAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008044 DAG.getConstant(AndMask.countLeadingZeros(),
8045 getShiftAmountTy(AndLHS.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008046 SDValue Shl = DAG.getNode(ISD::SHL, N0.getDebugLoc(), VT, AndLHS, ShlAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008047
Owen Andersoned1088a2010-09-22 22:58:22 +00008048 // Now arithmetic right shift it all the way over, so the result is either
8049 // all-ones, or zero.
8050 SDValue ShrAmt =
Owen Anderson95771af2011-02-25 21:41:48 +00008051 DAG.getConstant(AndMask.getBitWidth()-1,
8052 getShiftAmountTy(Shl.getValueType()));
Owen Andersoned1088a2010-09-22 22:58:22 +00008053 SDValue Shr = DAG.getNode(ISD::SRA, N0.getDebugLoc(), VT, Shl, ShrAmt);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008054
Owen Andersoned1088a2010-09-22 22:58:22 +00008055 return DAG.getNode(ISD::AND, DL, VT, Shr, N3);
8056 }
8057 }
8058
Nate Begeman07ed4172005-10-10 21:26:48 +00008059 // fold select C, 16, 0 -> shl C, 4
Dan Gohman002e5d02008-03-13 22:13:53 +00008060 if (N2C && N3C && N3C->isNullValue() && N2C->getAPIntValue().isPowerOf2() &&
Duncan Sands28b77e92011-09-06 19:07:46 +00008061 TLI.getBooleanContents(N0.getValueType().isVector()) ==
8062 TargetLowering::ZeroOrOneBooleanContent) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008063
Chris Lattner1eba01e2007-04-11 06:50:51 +00008064 // If the caller doesn't want us to simplify this into a zext of a compare,
8065 // don't do it.
Dan Gohman002e5d02008-03-13 22:13:53 +00008066 if (NotExtCompare && N2C->getAPIntValue() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00008067 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008068
Nate Begeman07ed4172005-10-10 21:26:48 +00008069 // Get a SetCC of the condition
8070 // FIXME: Should probably make sure that setcc is legal if we ever have a
8071 // target where it isn't.
Dan Gohman475871a2008-07-27 21:46:04 +00008072 SDValue Temp, SCC;
Nate Begeman07ed4172005-10-10 21:26:48 +00008073 // cast from setcc result type to select result type
Duncan Sands25cf2272008-11-24 14:53:14 +00008074 if (LegalTypes) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008075 SCC = DAG.getSetCC(DL, TLI.getSetCCResultType(N0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00008076 N0, N1, CC);
Duncan Sands8e4eb092008-06-08 20:54:56 +00008077 if (N2.getValueType().bitsLT(SCC.getValueType()))
Bill Wendling9729c5a2009-01-31 03:12:48 +00008078 Temp = DAG.getZeroExtendInReg(SCC, N2.getDebugLoc(), N2.getValueType());
Chris Lattner555d8d62006-12-07 22:36:47 +00008079 else
Bill Wendling9729c5a2009-01-31 03:12:48 +00008080 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008081 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008082 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00008083 SCC = DAG.getSetCC(N0.getDebugLoc(), MVT::i1, N0, N1, CC);
Bill Wendling9729c5a2009-01-31 03:12:48 +00008084 Temp = DAG.getNode(ISD::ZERO_EXTEND, N2.getDebugLoc(),
Bill Wendling836ca7d2009-01-30 23:59:18 +00008085 N2.getValueType(), SCC);
Nate Begemanb0d04a72006-02-18 02:40:58 +00008086 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008087
Gabor Greifba36cb52008-08-28 21:40:38 +00008088 AddToWorkList(SCC.getNode());
8089 AddToWorkList(Temp.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00008090
Dan Gohman002e5d02008-03-13 22:13:53 +00008091 if (N2C->getAPIntValue() == 1)
Chris Lattnerc56a81d2007-04-11 06:43:25 +00008092 return Temp;
Bill Wendling836ca7d2009-01-30 23:59:18 +00008093
Nate Begeman07ed4172005-10-10 21:26:48 +00008094 // shl setcc result by log2 n2c
Bill Wendling836ca7d2009-01-30 23:59:18 +00008095 return DAG.getNode(ISD::SHL, DL, N2.getValueType(), Temp,
Dan Gohman002e5d02008-03-13 22:13:53 +00008096 DAG.getConstant(N2C->getAPIntValue().logBase2(),
Owen Anderson95771af2011-02-25 21:41:48 +00008097 getShiftAmountTy(Temp.getValueType())));
Nate Begeman07ed4172005-10-10 21:26:48 +00008098 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008099
Nate Begemanf845b452005-10-08 00:29:44 +00008100 // Check to see if this is the equivalent of setcc
8101 // FIXME: Turn all of these into setcc if setcc if setcc is legal
8102 // otherwise, go ahead with the folds.
Dan Gohman002e5d02008-03-13 22:13:53 +00008103 if (0 && N3C && N3C->isNullValue() && N2C && (N2C->getAPIntValue() == 1ULL)) {
Owen Andersone50ed302009-08-10 22:56:29 +00008104 EVT XType = N0.getValueType();
Duncan Sands25cf2272008-11-24 14:53:14 +00008105 if (!LegalOperations ||
Duncan Sands5480c042009-01-01 15:52:00 +00008106 TLI.isOperationLegal(ISD::SETCC, TLI.getSetCCResultType(XType))) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008107 SDValue Res = DAG.getSetCC(DL, TLI.getSetCCResultType(XType), N0, N1, CC);
Nate Begemanf845b452005-10-08 00:29:44 +00008108 if (Res.getValueType() != VT)
Bill Wendling836ca7d2009-01-30 23:59:18 +00008109 Res = DAG.getNode(ISD::ZERO_EXTEND, DL, VT, Res);
Nate Begemanf845b452005-10-08 00:29:44 +00008110 return Res;
8111 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008112
Bill Wendling836ca7d2009-01-30 23:59:18 +00008113 // fold (seteq X, 0) -> (srl (ctlz X, log2(size(X))))
Scott Michelfdc40a02009-02-17 22:15:04 +00008114 if (N1C && N1C->isNullValue() && CC == ISD::SETEQ &&
Duncan Sands25cf2272008-11-24 14:53:14 +00008115 (!LegalOperations ||
Duncan Sands184a8762008-06-14 17:48:34 +00008116 TLI.isOperationLegal(ISD::CTLZ, XType))) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008117 SDValue Ctlz = DAG.getNode(ISD::CTLZ, N0.getDebugLoc(), XType, N0);
Scott Michelfdc40a02009-02-17 22:15:04 +00008118 return DAG.getNode(ISD::SRL, DL, XType, Ctlz,
Duncan Sands83ec4b62008-06-06 12:08:01 +00008119 DAG.getConstant(Log2_32(XType.getSizeInBits()),
Owen Anderson95771af2011-02-25 21:41:48 +00008120 getShiftAmountTy(Ctlz.getValueType())));
Nate Begemanf845b452005-10-08 00:29:44 +00008121 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008122 // fold (setgt X, 0) -> (srl (and (-X, ~X), size(X)-1))
Scott Michelfdc40a02009-02-17 22:15:04 +00008123 if (N1C && N1C->isNullValue() && CC == ISD::SETGT) {
Bill Wendling836ca7d2009-01-30 23:59:18 +00008124 SDValue NegN0 = DAG.getNode(ISD::SUB, N0.getDebugLoc(),
8125 XType, DAG.getConstant(0, XType), N0);
Bill Wendling7581bfa2009-01-30 23:03:19 +00008126 SDValue NotN0 = DAG.getNOT(N0.getDebugLoc(), N0, XType);
Bill Wendling836ca7d2009-01-30 23:59:18 +00008127 return DAG.getNode(ISD::SRL, DL, XType,
Bill Wendlingfc4b6772009-02-01 11:19:36 +00008128 DAG.getNode(ISD::AND, DL, XType, NegN0, NotN0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00008129 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008130 getShiftAmountTy(XType)));
Nate Begemanf845b452005-10-08 00:29:44 +00008131 }
Bill Wendling836ca7d2009-01-30 23:59:18 +00008132 // fold (setgt X, -1) -> (xor (srl (X, size(X)-1), 1))
Nate Begemanf845b452005-10-08 00:29:44 +00008133 if (N1C && N1C->isAllOnesValue() && CC == ISD::SETGT) {
Bill Wendling9729c5a2009-01-31 03:12:48 +00008134 SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0,
Bill Wendling836ca7d2009-01-30 23:59:18 +00008135 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008136 getShiftAmountTy(N0.getValueType())));
Bill Wendling836ca7d2009-01-30 23:59:18 +00008137 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));
Nate Begemanf845b452005-10-08 00:29:44 +00008138 }
8139 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008140
Benjamin Kramercde51102010-07-08 12:09:56 +00008141 // Check to see if this is an integer abs.
8142 // select_cc setg[te] X, 0, X, -X ->
8143 // select_cc setgt X, -1, X, -X ->
8144 // select_cc setl[te] X, 0, -X, X ->
8145 // select_cc setlt X, 1, -X, X ->
Nate Begemanf845b452005-10-08 00:29:44 +00008146 // Y = sra (X, size(X)-1); xor (add (X, Y), Y)
Benjamin Kramercde51102010-07-08 12:09:56 +00008147 if (N1C) {
8148 ConstantSDNode *SubC = NULL;
8149 if (((N1C->isNullValue() && (CC == ISD::SETGT || CC == ISD::SETGE)) ||
8150 (N1C->isAllOnesValue() && CC == ISD::SETGT)) &&
8151 N0 == N2 && N3.getOpcode() == ISD::SUB && N0 == N3.getOperand(1))
8152 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
8153 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
8154 (N1C->isOne() && CC == ISD::SETLT)) &&
8155 N0 == N3 && N2.getOpcode() == ISD::SUB && N0 == N2.getOperand(1))
8156 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
8157
Owen Andersone50ed302009-08-10 22:56:29 +00008158 EVT XType = N0.getValueType();
Benjamin Kramercde51102010-07-08 12:09:56 +00008159 if (SubC && SubC->isNullValue() && XType.isInteger()) {
8160 SDValue Shift = DAG.getNode(ISD::SRA, N0.getDebugLoc(), XType,
8161 N0,
8162 DAG.getConstant(XType.getSizeInBits()-1,
Owen Anderson95771af2011-02-25 21:41:48 +00008163 getShiftAmountTy(N0.getValueType())));
Benjamin Kramercde51102010-07-08 12:09:56 +00008164 SDValue Add = DAG.getNode(ISD::ADD, N0.getDebugLoc(),
8165 XType, N0, Shift);
8166 AddToWorkList(Shift.getNode());
8167 AddToWorkList(Add.getNode());
8168 return DAG.getNode(ISD::XOR, DL, XType, Add, Shift);
Nate Begemanf845b452005-10-08 00:29:44 +00008169 }
8170 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008171
Dan Gohman475871a2008-07-27 21:46:04 +00008172 return SDValue();
Nate Begeman44728a72005-09-19 22:34:01 +00008173}
8174
Evan Chengfa1eb272007-02-08 22:13:59 +00008175/// SimplifySetCC - This is a stub for TargetLowering::SimplifySetCC.
Owen Andersone50ed302009-08-10 22:56:29 +00008176SDValue DAGCombiner::SimplifySetCC(EVT VT, SDValue N0,
Dan Gohman475871a2008-07-27 21:46:04 +00008177 SDValue N1, ISD::CondCode Cond,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008178 DebugLoc DL, bool foldBooleans) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008179 TargetLowering::DAGCombinerInfo
Jakob Stoklund Olesen78d12642009-07-24 18:22:59 +00008180 DagCombineInfo(DAG, !LegalTypes, !LegalOperations, false, this);
Dale Johannesenff97d4f2009-02-03 00:47:48 +00008181 return TLI.SimplifySetCC(VT, N0, N1, Cond, foldBooleans, DagCombineInfo, DL);
Nate Begeman452d7beb2005-09-16 00:54:12 +00008182}
8183
Nate Begeman69575232005-10-20 02:15:44 +00008184/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
8185/// return a DAG expression to select that will generate the same value by
8186/// multiplying by a magic number. See:
8187/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008188SDValue DAGCombiner::BuildSDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008189 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008190 SDValue S = TLI.BuildSDIV(N, DAG, LegalOperations, &Built);
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008191
Andrew Lenharth232c9102006-06-12 16:07:18 +00008192 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008193 ii != ee; ++ii)
8194 AddToWorkList(*ii);
8195 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008196}
8197
8198/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
8199/// return a DAG expression to select that will generate the same value by
8200/// multiplying by a magic number. See:
8201/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman475871a2008-07-27 21:46:04 +00008202SDValue DAGCombiner::BuildUDIV(SDNode *N) {
Andrew Lenharth232c9102006-06-12 16:07:18 +00008203 std::vector<SDNode*> Built;
Richard Osborne19a4daf2011-11-07 17:09:05 +00008204 SDValue S = TLI.BuildUDIV(N, DAG, LegalOperations, &Built);
Nate Begeman69575232005-10-20 02:15:44 +00008205
Andrew Lenharth232c9102006-06-12 16:07:18 +00008206 for (std::vector<SDNode*>::iterator ii = Built.begin(), ee = Built.end();
Andrew Lenharthdae9cbe2006-05-16 17:42:15 +00008207 ii != ee; ++ii)
8208 AddToWorkList(*ii);
8209 return S;
Nate Begeman69575232005-10-20 02:15:44 +00008210}
8211
Nate Begemancc66cdd2009-09-25 06:05:26 +00008212/// FindBaseOffset - Return true if base is a frame index, which is known not
Eric Christopher503a64d2010-12-09 04:48:06 +00008213// to alias with anything but itself. Provides base object and offset as
8214// results.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008215static bool FindBaseOffset(SDValue Ptr, SDValue &Base, int64_t &Offset,
Dan Gohman46510a72010-04-15 01:51:59 +00008216 const GlobalValue *&GV, void *&CV) {
Jim Laskey71382342006-10-07 23:37:56 +00008217 // Assume it is a primitive operation.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008218 Base = Ptr; Offset = 0; GV = 0; CV = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008219
Jim Laskey71382342006-10-07 23:37:56 +00008220 // If it's an adding a simple constant then integrate the offset.
8221 if (Base.getOpcode() == ISD::ADD) {
8222 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Base.getOperand(1))) {
8223 Base = Base.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008224 Offset += C->getZExtValue();
Jim Laskey71382342006-10-07 23:37:56 +00008225 }
8226 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008227
Nate Begemancc66cdd2009-09-25 06:05:26 +00008228 // Return the underlying GlobalValue, and update the Offset. Return false
8229 // for GlobalAddressSDNode since the same GlobalAddress may be represented
8230 // by multiple nodes with different offsets.
8231 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Base)) {
8232 GV = G->getGlobal();
8233 Offset += G->getOffset();
8234 return false;
8235 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008236
Nate Begemancc66cdd2009-09-25 06:05:26 +00008237 // Return the underlying Constant value, and update the Offset. Return false
8238 // for ConstantSDNodes since the same constant pool entry may be represented
8239 // by multiple nodes with different offsets.
8240 if (ConstantPoolSDNode *C = dyn_cast<ConstantPoolSDNode>(Base)) {
8241 CV = C->isMachineConstantPoolEntry() ? (void *)C->getMachineCPVal()
8242 : (void *)C->getConstVal();
8243 Offset += C->getOffset();
8244 return false;
8245 }
Jim Laskey71382342006-10-07 23:37:56 +00008246 // If it's any of the following then it can't alias with anything but itself.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008247 return isa<FrameIndexSDNode>(Base);
Jim Laskey71382342006-10-07 23:37:56 +00008248}
8249
8250/// isAlias - Return true if there is any possibility that the two addresses
8251/// overlap.
Dan Gohman475871a2008-07-27 21:46:04 +00008252bool DAGCombiner::isAlias(SDValue Ptr1, int64_t Size1,
Jim Laskey096c22e2006-10-18 12:29:57 +00008253 const Value *SrcValue1, int SrcValueOffset1,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008254 unsigned SrcValueAlign1,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008255 const MDNode *TBAAInfo1,
Dan Gohman475871a2008-07-27 21:46:04 +00008256 SDValue Ptr2, int64_t Size2,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008257 const Value *SrcValue2, int SrcValueOffset2,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008258 unsigned SrcValueAlign2,
8259 const MDNode *TBAAInfo2) const {
Jim Laskey71382342006-10-07 23:37:56 +00008260 // If they are the same then they must be aliases.
8261 if (Ptr1 == Ptr2) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +00008262
Jim Laskey71382342006-10-07 23:37:56 +00008263 // Gather base node and offset information.
Dan Gohman475871a2008-07-27 21:46:04 +00008264 SDValue Base1, Base2;
Jim Laskey71382342006-10-07 23:37:56 +00008265 int64_t Offset1, Offset2;
Dan Gohman46510a72010-04-15 01:51:59 +00008266 const GlobalValue *GV1, *GV2;
Nate Begemancc66cdd2009-09-25 06:05:26 +00008267 void *CV1, *CV2;
8268 bool isFrameIndex1 = FindBaseOffset(Ptr1, Base1, Offset1, GV1, CV1);
8269 bool isFrameIndex2 = FindBaseOffset(Ptr2, Base2, Offset2, GV2, CV2);
Scott Michelfdc40a02009-02-17 22:15:04 +00008270
Nate Begemancc66cdd2009-09-25 06:05:26 +00008271 // If they have a same base address then check to see if they overlap.
8272 if (Base1 == Base2 || (GV1 && (GV1 == GV2)) || (CV1 && (CV1 == CV2)))
Bill Wendling836ca7d2009-01-30 23:59:18 +00008273 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008274
Owen Anderson4a9f1502010-09-20 20:39:59 +00008275 // It is possible for different frame indices to alias each other, mostly
8276 // when tail call optimization reuses return address slots for arguments.
8277 // To catch this case, look up the actual index of frame indices to compute
8278 // the real alias relationship.
8279 if (isFrameIndex1 && isFrameIndex2) {
8280 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8281 Offset1 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base1)->getIndex());
8282 Offset2 += MFI->getObjectOffset(cast<FrameIndexSDNode>(Base2)->getIndex());
8283 return !((Offset1 + Size1) <= Offset2 || (Offset2 + Size2) <= Offset1);
8284 }
8285
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008286 // Otherwise, if we know what the bases are, and they aren't identical, then
Owen Anderson4a9f1502010-09-20 20:39:59 +00008287 // we know they cannot alias.
Nate Begemancc66cdd2009-09-25 06:05:26 +00008288 if ((isFrameIndex1 || CV1 || GV1) && (isFrameIndex2 || CV2 || GV2))
8289 return false;
Jim Laskey096c22e2006-10-18 12:29:57 +00008290
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008291 // If we know required SrcValue1 and SrcValue2 have relatively large alignment
8292 // compared to the size and offset of the access, we may be able to prove they
8293 // do not alias. This check is conservative for now to catch cases created by
8294 // splitting vector types.
8295 if ((SrcValueAlign1 == SrcValueAlign2) &&
8296 (SrcValueOffset1 != SrcValueOffset2) &&
8297 (Size1 == Size2) && (SrcValueAlign1 > Size1)) {
8298 int64_t OffAlign1 = SrcValueOffset1 % SrcValueAlign1;
8299 int64_t OffAlign2 = SrcValueOffset2 % SrcValueAlign1;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008300
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008301 // There is no overlap between these relatively aligned accesses of similar
8302 // size, return no alias.
8303 if ((OffAlign1 + Size1) <= OffAlign2 || (OffAlign2 + Size2) <= OffAlign1)
8304 return false;
8305 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008306
Jim Laskey07a27092006-10-18 19:08:31 +00008307 if (CombinerGlobalAA) {
8308 // Use alias analysis information.
Dan Gohmane9c8fa02007-08-27 16:32:11 +00008309 int64_t MinOffset = std::min(SrcValueOffset1, SrcValueOffset2);
8310 int64_t Overlap1 = Size1 + SrcValueOffset1 - MinOffset;
8311 int64_t Overlap2 = Size2 + SrcValueOffset2 - MinOffset;
Scott Michelfdc40a02009-02-17 22:15:04 +00008312 AliasAnalysis::AliasResult AAResult =
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008313 AA.alias(AliasAnalysis::Location(SrcValue1, Overlap1, TBAAInfo1),
8314 AliasAnalysis::Location(SrcValue2, Overlap2, TBAAInfo2));
Jim Laskey07a27092006-10-18 19:08:31 +00008315 if (AAResult == AliasAnalysis::NoAlias)
8316 return false;
8317 }
Jim Laskey096c22e2006-10-18 12:29:57 +00008318
8319 // Otherwise we have to assume they alias.
8320 return true;
Jim Laskey71382342006-10-07 23:37:56 +00008321}
8322
8323/// FindAliasInfo - Extracts the relevant alias information from the memory
8324/// node. Returns true if the operand was a load.
Jim Laskey7ca56af2006-10-11 13:47:09 +00008325bool DAGCombiner::FindAliasInfo(SDNode *N,
Benjamin Kramerae4746b2012-01-15 11:50:43 +00008326 SDValue &Ptr, int64_t &Size,
8327 const Value *&SrcValue,
8328 int &SrcValueOffset,
8329 unsigned &SrcValueAlign,
8330 const MDNode *&TBAAInfo) const {
8331 LSBaseSDNode *LS = cast<LSBaseSDNode>(N);
8332
8333 Ptr = LS->getBasePtr();
8334 Size = LS->getMemoryVT().getSizeInBits() >> 3;
8335 SrcValue = LS->getSrcValue();
8336 SrcValueOffset = LS->getSrcValueOffset();
8337 SrcValueAlign = LS->getOriginalAlignment();
8338 TBAAInfo = LS->getTBAAInfo();
8339 return isa<LoadSDNode>(LS);
Jim Laskey71382342006-10-07 23:37:56 +00008340}
8341
Jim Laskey6ff23e52006-10-04 16:53:27 +00008342/// GatherAllAliases - Walk up chain skipping non-aliasing memory nodes,
8343/// looking for aliasing nodes and adding them to the Aliases vector.
Dan Gohman475871a2008-07-27 21:46:04 +00008344void DAGCombiner::GatherAllAliases(SDNode *N, SDValue OriginalChain,
8345 SmallVector<SDValue, 8> &Aliases) {
8346 SmallVector<SDValue, 8> Chains; // List of chains to visit.
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008347 SmallPtrSet<SDNode *, 16> Visited; // Visited node set.
Scott Michelfdc40a02009-02-17 22:15:04 +00008348
Jim Laskey279f0532006-09-25 16:29:54 +00008349 // Get alias information for node.
Dan Gohman475871a2008-07-27 21:46:04 +00008350 SDValue Ptr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008351 int64_t Size;
8352 const Value *SrcValue;
8353 int SrcValueOffset;
8354 unsigned SrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008355 const MDNode *SrcTBAAInfo;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008356 bool IsLoad = FindAliasInfo(N, Ptr, Size, SrcValue, SrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008357 SrcValueAlign, SrcTBAAInfo);
Jim Laskey279f0532006-09-25 16:29:54 +00008358
Jim Laskey6ff23e52006-10-04 16:53:27 +00008359 // Starting off.
Jim Laskeybc588b82006-10-05 15:07:25 +00008360 Chains.push_back(OriginalChain);
Nate Begeman677c89d2009-10-12 05:53:58 +00008361 unsigned Depth = 0;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008362
Jim Laskeybc588b82006-10-05 15:07:25 +00008363 // Look at each chain and determine if it is an alias. If so, add it to the
8364 // aliases list. If not, then continue up the chain looking for the next
Scott Michelfdc40a02009-02-17 22:15:04 +00008365 // candidate.
Jim Laskeybc588b82006-10-05 15:07:25 +00008366 while (!Chains.empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008367 SDValue Chain = Chains.back();
Jim Laskeybc588b82006-10-05 15:07:25 +00008368 Chains.pop_back();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008369
8370 // For TokenFactor nodes, look at each operand and only continue up the
8371 // chain until we find two aliases. If we've seen two aliases, assume we'll
Nate Begeman677c89d2009-10-12 05:53:58 +00008372 // find more and revert to original chain since the xform is unlikely to be
8373 // profitable.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008374 //
8375 // FIXME: The depth check could be made to return the last non-aliasing
Nate Begeman677c89d2009-10-12 05:53:58 +00008376 // chain we found before we hit a tokenfactor rather than the original
8377 // chain.
8378 if (Depth > 6 || Aliases.size() == 2) {
8379 Aliases.clear();
8380 Aliases.push_back(OriginalChain);
8381 break;
8382 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008383
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008384 // Don't bother if we've been before.
8385 if (!Visited.insert(Chain.getNode()))
8386 continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00008387
Jim Laskeybc588b82006-10-05 15:07:25 +00008388 switch (Chain.getOpcode()) {
8389 case ISD::EntryToken:
8390 // Entry token is ideal chain operand, but handled in FindBetterChain.
8391 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008392
Jim Laskeybc588b82006-10-05 15:07:25 +00008393 case ISD::LOAD:
8394 case ISD::STORE: {
8395 // Get alias information for Chain.
Dan Gohman475871a2008-07-27 21:46:04 +00008396 SDValue OpPtr;
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008397 int64_t OpSize;
8398 const Value *OpSrcValue;
8399 int OpSrcValueOffset;
8400 unsigned OpSrcValueAlign;
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008401 const MDNode *OpSrcTBAAInfo;
Gabor Greifba36cb52008-08-28 21:40:38 +00008402 bool IsOpLoad = FindAliasInfo(Chain.getNode(), OpPtr, OpSize,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008403 OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008404 OpSrcValueAlign,
8405 OpSrcTBAAInfo);
Scott Michelfdc40a02009-02-17 22:15:04 +00008406
Jim Laskeybc588b82006-10-05 15:07:25 +00008407 // If chain is alias then stop here.
8408 if (!(IsLoad && IsOpLoad) &&
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008409 isAlias(Ptr, Size, SrcValue, SrcValueOffset, SrcValueAlign,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008410 SrcTBAAInfo,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008411 OpPtr, OpSize, OpSrcValue, OpSrcValueOffset,
Dan Gohmanf96e4bd2010-10-20 00:31:05 +00008412 OpSrcValueAlign, OpSrcTBAAInfo)) {
Jim Laskeybc588b82006-10-05 15:07:25 +00008413 Aliases.push_back(Chain);
8414 } else {
8415 // Look further up the chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00008416 Chains.push_back(Chain.getOperand(0));
Nate Begeman677c89d2009-10-12 05:53:58 +00008417 ++Depth;
Jim Laskey279f0532006-09-25 16:29:54 +00008418 }
Jim Laskeybc588b82006-10-05 15:07:25 +00008419 break;
8420 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008421
Jim Laskeybc588b82006-10-05 15:07:25 +00008422 case ISD::TokenFactor:
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008423 // We have to check each of the operands of the token factor for "small"
8424 // token factors, so we queue them up. Adding the operands to the queue
8425 // (stack) in reverse order maintains the original order and increases the
8426 // likelihood that getNode will find a matching token factor (CSE.)
8427 if (Chain.getNumOperands() > 16) {
8428 Aliases.push_back(Chain);
8429 break;
8430 }
Jim Laskeybc588b82006-10-05 15:07:25 +00008431 for (unsigned n = Chain.getNumOperands(); n;)
8432 Chains.push_back(Chain.getOperand(--n));
Nate Begeman677c89d2009-10-12 05:53:58 +00008433 ++Depth;
Jim Laskeybc588b82006-10-05 15:07:25 +00008434 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00008435
Jim Laskeybc588b82006-10-05 15:07:25 +00008436 default:
8437 // For all other instructions we will just have to take what we can get.
8438 Aliases.push_back(Chain);
8439 break;
Jim Laskey279f0532006-09-25 16:29:54 +00008440 }
8441 }
Jim Laskey6ff23e52006-10-04 16:53:27 +00008442}
8443
8444/// FindBetterChain - Walk up chain skipping non-aliasing memory nodes, looking
8445/// for a better chain (aliasing node.)
Dan Gohman475871a2008-07-27 21:46:04 +00008446SDValue DAGCombiner::FindBetterChain(SDNode *N, SDValue OldChain) {
8447 SmallVector<SDValue, 8> Aliases; // Ops for replacing token factor.
Scott Michelfdc40a02009-02-17 22:15:04 +00008448
Jim Laskey6ff23e52006-10-04 16:53:27 +00008449 // Accumulate all the aliases to this node.
8450 GatherAllAliases(N, OldChain, Aliases);
Scott Michelfdc40a02009-02-17 22:15:04 +00008451
Dan Gohman71dc7c92011-05-17 22:20:36 +00008452 // If no operands then chain to entry token.
8453 if (Aliases.size() == 0)
Jim Laskey6ff23e52006-10-04 16:53:27 +00008454 return DAG.getEntryNode();
Dan Gohman71dc7c92011-05-17 22:20:36 +00008455
8456 // If a single operand then chain to it. We don't need to revisit it.
8457 if (Aliases.size() == 1)
Jim Laskey6ff23e52006-10-04 16:53:27 +00008458 return Aliases[0];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008459
Jim Laskey6ff23e52006-10-04 16:53:27 +00008460 // Construct a custom tailored token factor.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008461 return DAG.getNode(ISD::TokenFactor, N->getDebugLoc(), MVT::Other,
Nate Begemanb6aef5c2009-09-15 00:18:30 +00008462 &Aliases[0], Aliases.size());
Jim Laskey279f0532006-09-25 16:29:54 +00008463}
8464
Nate Begeman1d4d4142005-09-01 00:19:25 +00008465// SelectionDAG::Combine - This is the entry point for the file.
8466//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008467void SelectionDAG::Combine(CombineLevel Level, AliasAnalysis &AA,
Bill Wendling98a366d2009-04-29 23:29:43 +00008468 CodeGenOpt::Level OptLevel) {
Nate Begeman1d4d4142005-09-01 00:19:25 +00008469 /// run - This is the main entry point to this class.
8470 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008471 DAGCombiner(*this, AA, OptLevel).Run(Level);
Nate Begeman1d4d4142005-09-01 00:19:25 +00008472}